.gsr-ferienpaket-coupon {
            display: grid;
            gap: 10px;
            margin: 10px 0 14px;
            padding: 16px 18px;
            border: 1px solid rgba(55, 132, 112, 0.24);
            border-radius: 16px;
            background: #f6fffb;
            color: #2f403b;
            box-shadow: 0 14px 30px rgba(52, 110, 93, 0.1);
        }

        .gsr-ferienpaket-coupon__kicker,
        .gsr-ferienpaket-coupon__title,
        .gsr-ferienpaket-coupon__text,
        .gsr-ferienpaket-coupon__status {
            margin: 0;
        }

        .gsr-ferienpaket-coupon__kicker {
            color: #2f856c;
            font-size: 0.78rem;
            font-weight: 900;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .gsr-ferienpaket-coupon__title {
            color: #243b35;
            font-family: inherit;
            font-size: 1.18rem;
            font-weight: 900;
            line-height: 1.24;
            letter-spacing: 0;
        }

        .gsr-ferienpaket-coupon__text {
            color: #52645f;
            font-size: 0.96rem;
            line-height: 1.5;
        }

        .gsr-ferienpaket-coupon__code-row {
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            gap: 8px;
            align-items: stretch;
        }

        .gsr-ferienpaket-coupon__code {
            display: flex;
            align-items: center;
            min-width: 0;
            min-height: 50px;
            padding: 0 13px;
            border: 1px dashed #2f856c;
            border-radius: 12px;
            background: #fff;
            color: #1f6f59;
            font-size: 1rem;
            font-weight: 950;
            letter-spacing: 0.03em;
            overflow-wrap: anywhere;
            user-select: all;
        }

        .gsr-ferienpaket-coupon__copy,
        .gsr-ferienpaket-coupon__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 50px;
            border: 0;
            border-radius: 12px;
            font-weight: 900;
            text-decoration: none;
            cursor: pointer;
        }

        .gsr-ferienpaket-coupon__copy {
            padding: 0 14px;
            background: #2f856c;
            color: #fff;
        }

        .gsr-ferienpaket-coupon__button {
            width: 100%;
            background: #243b35;
            color: #fff;
        }

        .gsr-ferienpaket-coupon__button:hover,
        .gsr-ferienpaket-coupon__button:focus-visible {
            color: #fff;
            text-decoration: none;
            filter: brightness(1.04);
        }

        .gsr-ferienpaket-coupon__status {
            color: #217957;
            font-size: 0.88rem;
            font-weight: 800;
        }

        .gsr-ferienpaket-coupon__status:empty {
            display: none;
        }

        .gsr-ferienpaket-card-line {
            grid-column: 1 / -1;
            order: 21;
            margin: 0 10px 12px;
            padding: 8px 10px;
            border: 1px solid rgba(47, 133, 108, 0.22);
            border-radius: 12px;
            background: #f6fffb;
            color: #2f403b;
            font-size: 0.86rem;
            font-weight: 850;
            line-height: 1.25;
            text-align: center;
        }

        .gsr-ferienpaket-card-line strong {
            color: #1f6f59;
        }

        .gsr-ferienpaket-toast {
            position: fixed;
            left: 50%;
            bottom: calc(22px + env(safe-area-inset-bottom));
            z-index: 10000;
            max-width: min(360px, calc(100vw - 32px));
            padding: 12px 16px;
            border-radius: 999px;
            background: #243b35;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 850;
            line-height: 1.25;
            text-align: center;
            box-shadow: 0 18px 34px rgba(36, 59, 53, 0.24);
            opacity: 0;
            pointer-events: none;
            transform: translate(-50%, 14px);
            transition: opacity 160ms ease, transform 160ms ease;
        }

        .gsr-ferienpaket-toast.is-visible {
            opacity: 1;
            transform: translate(-50%, 0);
        }

        @media (max-width: 640px) {
            .gsr-ferienpaket-coupon {
                padding: 15px;
                text-align: center;
            }

            .gsr-ferienpaket-coupon__code-row {
                grid-template-columns: 1fr;
            }

            .gsr-ferienpaket-coupon__code {
                justify-content: center;
            }
        }