:root {
    --offer-accent: #ff7b54;
    --offer-accent-2: #23c9ff;
    --offer-panel: rgba(9, 17, 34, 0.9);
    --offer-panel-strong: rgba(5, 12, 28, 0.96);
    --offer-border: rgba(255, 255, 255, 0.08);
}

.offers-spotlight,
.offers-page {
    position: relative;
    z-index: 1;
}

.offers-spotlight {
    padding: 1rem 1.25rem 0;
}

.offers-spotlight.hidden {
    display: none;
}

.offers-spotlight-inner,
.offers-page-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.offers-spotlight-head,
.offers-page-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.offers-spotlight-copy,
.offers-page-copy {
    display: grid;
    gap: 0.35rem;
}

.offers-spotlight-copy p,
.offers-page-copy p {
    margin: 0;
    color: var(--text-secondary);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.offer-card {
    position: relative;
    display: grid;
    gap: 1rem;
    min-height: 100%;
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid var(--offer-border);
    background:
        radial-gradient(circle at top left, rgba(35, 201, 255, 0.18), transparent 42%),
        radial-gradient(circle at bottom right, rgba(255, 123, 84, 0.16), transparent 46%),
        linear-gradient(180deg, rgba(12, 21, 42, 0.96), rgba(6, 12, 24, 0.98));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    overflow: hidden;
}

.offer-card::after {
    content: "";
    position: absolute;
    inset: auto -10% -45% auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    filter: blur(12px);
    pointer-events: none;
}

.offer-card.is-selected {
    border-color: rgba(35, 201, 255, 0.38);
    box-shadow: 0 22px 42px rgba(35, 201, 255, 0.08), 0 20px 40px rgba(0, 0, 0, 0.24);
}

.offer-card-media {
    position: relative;
    height: 188px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 123, 84, 0.22), rgba(35, 201, 255, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.offer-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-card-media-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.86);
}

.offer-card-badge {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(4, 10, 22, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.offer-card-content {
    display: grid;
    gap: 0.75rem;
}

.offer-card-topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.offer-card-title-wrap {
    display: grid;
    gap: 0.35rem;
}

.offer-card-title {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.5;
}

.offer-card-subtitle {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
}

.offer-price-block {
    display: inline-grid;
    justify-items: end;
    gap: 0.18rem;
    white-space: nowrap;
}

.offer-price-current {
    color: #fff;
    font-size: 1.18rem;
    font-weight: 800;
}

.offer-price-original {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    font-size: 0.88rem;
}

.offer-description {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    font-size: 0.93rem;
}

.offer-service-list {
    display: grid;
    gap: 0.5rem;
}

.offer-service-pill {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.offer-service-pill strong {
    font-weight: 700;
}

.offer-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.offer-card-meta {
    display: inline-flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.offer-meta-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
}

.offer-card-action,
.offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 46px;
    padding: 0 1.1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--offer-accent), #ff5579);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 16px 28px rgba(255, 99, 132, 0.24);
}

.offer-card-action:hover,
.offer-button:hover {
    transform: translateY(-1px);
}

.offer-button-secondary {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.offers-page {
    padding: 1.5rem 0 2.5rem;
}

.offers-page-hero {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at top right, rgba(255, 123, 84, 0.18), transparent 36%),
        radial-gradient(circle at bottom left, rgba(35, 201, 255, 0.16), transparent 42%),
        linear-gradient(145deg, rgba(8, 17, 35, 0.98), rgba(4, 9, 20, 0.98));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
    margin-bottom: 1.5rem;
}

.offers-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
    gap: 1.2rem;
}

.offers-page-grid.is-empty {
    grid-template-columns: 1fr;
}

.offers-list-shell,
.offer-detail-shell,
.offer-purchase-shell {
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(180deg, rgba(9, 17, 34, 0.94), rgba(6, 11, 23, 0.96));
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
}

.offers-list-shell {
    padding: 1rem;
}

.offer-detail-shell {
    padding: 1.2rem;
    display: grid;
    gap: 1rem;
}

.offer-detail-media {
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 123, 84, 0.2), rgba(35, 201, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.offer-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-detail-media-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 4rem;
}

.offer-detail-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.offer-detail-copy {
    display: grid;
    gap: 0.45rem;
}

.offer-detail-title {
    margin: 0;
    font-size: 1.45rem;
}

.offer-detail-subtitle {
    margin: 0;
    color: var(--text-secondary);
}

.offer-detail-price {
    display: inline-grid;
    justify-items: end;
    gap: 0.2rem;
}

.offer-detail-price strong {
    font-size: 1.5rem;
}

.offer-included-grid {
    display: grid;
    gap: 0.8rem;
}

.offer-included-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.8rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-included-media {
    height: 88px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.offer-included-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-included-copy {
    display: grid;
    gap: 0.35rem;
    align-content: center;
}

.offer-included-copy h4 {
    margin: 0;
    font-size: 1rem;
}

.offer-included-copy p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.offer-purchase-shell {
    padding: 1.15rem;
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 96px;
}

.offer-purchase-head {
    display: grid;
    gap: 0.35rem;
}

.offer-purchase-head h3 {
    margin: 0;
}

.offer-purchase-head p {
    margin: 0;
    color: var(--text-secondary);
}

.offer-auth-banner {
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 123, 84, 0.08);
    border: 1px solid rgba(255, 123, 84, 0.18);
}

.offer-purchase-items {
    display: grid;
    gap: 0.95rem;
}

.offer-purchase-item {
    display: grid;
    gap: 0.85rem;
    padding: 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.offer-purchase-item-head {
    display: flex;
    justify-content: space-between;
    gap: 0.85rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

.offer-purchase-item-title {
    display: grid;
    gap: 0.3rem;
}

.offer-purchase-item-title h4 {
    margin: 0;
    font-size: 1rem;
}

.offer-purchase-item-title p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.7;
}

.offer-purchase-chip-row {
    display: inline-flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.offer-purchase-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
}

.offer-form-field {
    display: grid;
    gap: 0.45rem;
}

.offer-form-field label {
    font-weight: 700;
    font-size: 0.92rem;
}

.offer-form-field input,
.offer-form-field textarea,
.offer-form-field select {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font: inherit;
}

.offer-form-field textarea {
    min-height: 112px;
    resize: vertical;
}

.offer-form-field small {
    color: var(--text-secondary);
    line-height: 1.7;
}

.offer-inline-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.offer-submit-note {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
}

.offer-empty-state {
    display: grid;
    place-items: center;
    min-height: 260px;
    text-align: center;
    color: var(--text-secondary);
    padding: 2rem;
}

.offer-bubble-shell {
    position: fixed;
    left: 1rem;
    bottom: 1rem;
    z-index: 10050;
    display: grid;
    gap: 0.7rem;
}

.offer-bubble-trigger {
    position: relative;
    width: 64px;
    height: 64px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--offer-accent), #ff5579);
    color: #fff;
    font-size: 1.55rem;
    cursor: pointer;
    box-shadow: 0 20px 40px rgba(255, 99, 132, 0.32);
    animation: offerBubblePulse 2.2s ease-in-out infinite;
}

.offer-bubble-count {
    position: absolute;
    top: -4px;
    left: -4px;
    min-width: 26px;
    height: 26px;
    padding: 0 0.4rem;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.offer-bubble-panel {
    width: min(340px, calc(100vw - 2rem));
    padding: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(10, 19, 36, 0.96), rgba(5, 11, 22, 0.98));
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
    transform-origin: bottom left;
}

.offer-bubble-panel[hidden] {
    display: none;
}

.offer-bubble-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.offer-bubble-panel-head h4,
.offer-bubble-panel-head p {
    margin: 0;
}

.offer-bubble-panel-head p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    margin-top: 0.25rem;
}

.offer-bubble-close {
    border: 0;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

.offer-bubble-list {
    display: grid;
    gap: 0.7rem;
}

.offer-bubble-row {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: inherit;
}

.offer-bubble-row strong {
    color: #fff;
}

.offer-bubble-row span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

@keyframes offerBubblePulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 20px 40px rgba(255, 99, 132, 0.32);
    }
    50% {
        transform: translateY(-2px) scale(1.03);
        box-shadow: 0 24px 48px rgba(255, 99, 132, 0.4);
    }
}

@media (max-width: 980px) {
    .offers-page-grid {
        grid-template-columns: 1fr;
    }

    .offer-purchase-shell {
        position: static;
        top: auto;
    }
}

@media (max-width: 640px) {
    .offers-spotlight-inner,
    .offers-page-shell {
        width: min(100% - 1rem, 100%);
    }

    .offer-card {
        border-radius: 20px;
        padding: 0.85rem;
    }

    .offer-card-media {
        height: 156px;
    }

    .offer-detail-head,
    .offer-card-topline,
    .offer-purchase-item-head {
        flex-direction: column;
    }

    .offer-included-card {
        grid-template-columns: 1fr;
    }

    .offer-inline-grid {
        grid-template-columns: 1fr;
    }

    .offer-bubble-shell {
        left: 0.75rem;
        bottom: 0.75rem;
    }
}

.hero.hero-summit.hero-has-offers {
    isolation: isolate;
}

body.home-offers-hero-mode .hero.hero-summit {
    display: none;
}

.offers-spotlight.offers-spotlight-topbar {
    position: relative;
    z-index: 2;
    padding: 1rem 1rem 0;
    pointer-events: auto;
}

.offers-spotlight.offers-spotlight-topbar .offers-spotlight-inner {
    width: min(1240px, calc(100% - 1rem));
}

.offers-spotlight-carousel {
    position: relative;
    min-height: 248px;
}

.offers-topbar-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 1rem;
    min-height: 248px;
    padding: 1.15rem 1.25rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(140deg, rgba(10, 18, 34, 0.94), rgba(5, 10, 22, 0.96));
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.986);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.offers-topbar-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 10, 22, 0.2) 0%, rgba(4, 10, 22, 0.52) 28%, rgba(4, 10, 22, 0.86) 60%, rgba(4, 10, 22, 0.96) 100%),
        linear-gradient(180deg, rgba(7, 14, 28, 0.02), rgba(7, 14, 28, 0.58));
}

.offers-topbar-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at top right, rgba(35, 201, 255, 0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255, 123, 84, 0.14), transparent 36%);
    pointer-events: none;
}

.offers-topbar-slide.is-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.offers-topbar-media {
    position: absolute;
    inset: 0;
    height: auto;
    border: 0;
    border-radius: inherit;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 123, 84, 0.18), rgba(35, 201, 255, 0.16));
}

.offers-topbar-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.06) contrast(1.03);
}

.offers-topbar-media-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.85);
}

.offers-topbar-badge {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: rgba(4, 10, 22, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.offers-topbar-copy,
.offers-topbar-side {
    position: relative;
    z-index: 2;
}

.offers-topbar-copy {
    display: grid;
    gap: 0.5rem;
    min-width: 0;
    max-width: min(760px, 100%);
}

.offers-topbar-copy > * {
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.offers-topbar-kicker {
    color: rgba(35, 201, 255, 0.95);
    font-size: 0.82rem;
    font-weight: 800;
}

.offers-topbar-title {
    margin: 0;
    font-size: 1.52rem;
    line-height: 1.45;
    color: #fff;
}

.offers-topbar-subtitle,
.offers-topbar-description {
    margin: 0;
    color: rgba(235, 244, 255, 0.84);
}

.offers-topbar-subtitle {
    font-weight: 600;
}

.offers-topbar-description {
    line-height: 1.75;
}

.offers-topbar-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.offers-topbar-service-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.78rem;
    border-radius: 999px;
    background: rgba(6, 16, 30, 0.44);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.82rem;
    backdrop-filter: blur(10px);
}

.offers-topbar-side {
    display: grid;
    justify-items: end;
    gap: 0.75rem;
    min-width: 172px;
}

.offers-topbar-price {
    display: grid;
    justify-items: end;
    gap: 0.2rem;
}

.offers-topbar-price strong {
    font-size: 1.32rem;
    color: #fff;
}

.offers-topbar-price span {
    color: rgba(255, 255, 255, 0.62);
    text-decoration: line-through;
    font-size: 0.88rem;
}

.offers-topbar-action {
    min-width: 128px;
}

.offers-spotlight-nav {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 0.7rem;
    padding-inline: 0.2rem;
}

.offers-spotlight-dots {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.offers-spotlight-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.24);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.offers-spotlight-dot.is-active {
    background: #23c9ff;
    transform: scale(1.18);
}

.offers-spotlight-counter {
    color: rgba(235, 244, 255, 0.88);
    font-size: 0.88rem;
    font-weight: 700;
}

.offer-bubble-shell {
    left: auto;
    right: 1rem;
    bottom: 1rem;
}

.offer-bubble-count {
    left: auto;
    right: -4px;
}

.offer-bubble-panel {
    transform-origin: bottom right;
}

@media (max-width: 980px) {
    .offers-spotlight-carousel {
        min-height: 214px;
    }

    .offers-topbar-slide {
        min-height: 214px;
    }

    .offers-topbar-copy {
        max-width: 100%;
    }

    .offers-topbar-side {
        min-width: 148px;
    }
}

@media (max-width: 768px) {
    .offers-spotlight.offers-spotlight-topbar {
        padding: 0.8rem 0.75rem 0;
    }

    .offers-spotlight.offers-spotlight-topbar .offers-spotlight-inner {
        width: calc(100% - 0.35rem);
    }

    .offers-spotlight-carousel {
        min-height: 188px;
    }

    .offers-topbar-slide {
        grid-template-columns: 1fr;
        min-height: 188px;
        gap: 0.8rem;
        padding: 1rem 0.95rem;
    }

    .offers-topbar-slide::before {
        background:
            linear-gradient(180deg, rgba(4, 10, 22, 0.18) 0%, rgba(4, 10, 22, 0.72) 52%, rgba(4, 10, 22, 0.92) 100%),
            linear-gradient(90deg, rgba(4, 10, 22, 0.18), rgba(4, 10, 22, 0.56));
    }

    .offers-topbar-badge {
        top: 0.7rem;
        right: 0.7rem;
        min-height: 32px;
        padding-inline: 0.8rem;
        font-size: 0.74rem;
    }

    .offers-topbar-title {
        font-size: 1.14rem;
        max-width: 78%;
    }

    .offers-topbar-subtitle {
        font-size: 0.84rem;
    }

    .offers-topbar-description,
    .offers-topbar-services {
        display: none;
    }

    .offers-topbar-side {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
        min-width: 0;
    }

    .offers-topbar-price {
        justify-items: start;
    }

    .offers-topbar-action {
        min-width: 112px;
    }

    .offers-spotlight-nav {
        gap: 0.65rem;
    }

    .offer-bubble-shell {
        right: 0.9rem;
        left: auto;
        bottom: 0.9rem;
    }
}
