/* =============== Inline Offer (not fixed) =============== */
/* Uses your existing palette if you already define:
   --accent, --surface, --ring, --radius, --shadow
   Falls back gracefully if not present. */

.offer-inline {
    width: 100%;
    display: block;
    /* snug under the VSL */
    padding-inline: 12px;
}

.offer-inline__card {
    max-width: clamp(320px, 92vw, 560px);
    margin-inline: auto;
    margin-bottom: 60px;

    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;

    /* Visuals: red-on-dark glass card */
    background:
        linear-gradient(180deg, rgba(255, 77, 77, 0.15), rgba(41, 0, 0, 0.9)),
        #1b0000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius, 16px);
    padding: 14px 16px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.36),
        inset 0 0 0 1px rgba(255, 0, 0, 0.12);
    backdrop-filter: blur(6px);
}

/* Small headline chip */
.offer-inline__chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .2px;
    color: #f3f3f3;
    background:
        linear-gradient(180deg, rgba(255, 77, 77, 0.25), rgba(41, 0, 0, 0.6)),
        #2a0000;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 4px 16px rgba(255, 0, 0, .18);
}

/* Subtle tilt/float (respects reduced motion) */
.emoji-tilt {
    display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
    .emoji-tilt {
        transform: rotate(-8deg);
        transition: transform .3s ease;
    }

    .offer-inline__chip:hover .emoji-tilt {
        transform: rotate(8deg);
    }
}

/* Phrase */
.offer-inline__phrase {
    margin: 0;
    color: #eaeaea;
    font-weight: 700;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.35;
    text-wrap: balance;
    text-align: center;
}

.offer-inline__timehint {
    font-weight: 900;
    letter-spacing: 0.3px;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.35);
}

.nowrap {
    white-space: nowrap;
}

/* Timer row */
.offer-inline__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
    flex-wrap: nowrap;
}

/* Number boxes */
.timebox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 62px;
    height: 50px;
    border-radius: 12px;

    font-weight: 900;
    font-size: 22px;
    line-height: 1;
    color: #fff;

    background:
        radial-gradient(120% 120% at 20% 20%, rgba(255, 80, 80, .9), transparent 55%),
        linear-gradient(180deg, var(--accent, #ff1f1f), #a80000);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.25);
}

.timebox small {
    font-size: 14px;
    color: #ddd;
    font-weight: 800;
    opacity: 0.9;
    margin-left: 2px;
}

/* Optional CTA (kept dark) */
.offer-inline__cta {
    justify-self: center;
    text-decoration: none;
    background: #111;
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, box-shadow .15s ease;
}

.offer-inline__cta:hover {
    box-shadow: 0 10px 22px rgba(0, 0, 0, .35);
}

.offer-inline__cta:active {
    transform: translateY(1px);
}

/* Responsive polish */
@media (min-width: 560px) {
    .offer-inline__card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 18px;
    }

    .offer-inline__timer {
        justify-content: center;
    }
}

/* Spacing harmony if you place another section right after */
.offer-inline+* {
    margin-top: 8px;
}