/* ============================================================
   Welcome Offer Banner — Shared styles for offer-timer.js
   Style: "Rosé Whisper" (variante B, 2026-04-18)

   White Editorial Magazine feminine palette — matches the rest
   of the portal (athena-hero pattern), replacing the old dark
   green dashboard banner that clashed with White Editorial.

   Used by:
     - dashboard.html
     - All LM guides (bauchfett, libido, restaurant, blutzucker,
       morgen-formel, bauchfett-protokoll, lust-protokoll, protokoll)

   HTML structure expected (from offer-timer.js):
     .offer-banner > .offer-content >
       .offer-eyebrow            "DEIN WILLKOMMENSGESCHENK"
       .offer-title > em         "90 Tage jemand, der versteht."
       .offer-description (x2)   story copy
       .offer-divider            rosa line
       .offer-price-block >
         .offer-price-main       "€79" big serif
         .offer-price-detail >
           .offer-price-old      "statt €119" line-through
           .offer-price-save     "-€40" rosa chip
       .offer-timer >
         .offer-timer-label      "DIESES ANGEBOT ENDET IN"
         <span>                  countdown "HH:MM:SS"
       .offer-cta                gold gradient button
       .offer-note               "90 Tage · danach €29/Monat · kündbar"

   Colors: direct design-token references to bypass portal.css's
   inverted --ivory. Fallback hex values for safety.
   ============================================================ */

.offer-banner {
    background: linear-gradient(165deg, #FBF8F6 0%, #FAFAF5 60%, #F9F5F4 100%);
    border: 1px solid rgba(232, 180, 188, 0.45);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(173, 68, 92, 0.08);
}
.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-rosa-fuerte, #AD445C), transparent);
    border-radius: 0 0 3px 3px;
}

.offer-content {
    text-align: center;
}

.offer-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--color-rosa-fuerte, #AD445C);
    margin-bottom: 14px;
}

.offer-title {
    font-family: 'Newsreader', serif;
    font-size: 1.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--color-deepGreen, #0E3A28);
    line-height: 1.25;
    margin: 0 0 14px;
}
.offer-title em {
    font-style: italic;
    color: var(--color-rosa-fuerte, #AD445C);
}

.offer-description {
    font-family: 'Newsreader', serif;
    font-size: 0.9375rem;
    color: rgba(14, 58, 40, 0.7);
    line-height: 1.7;
    margin: 0 auto 18px;
    max-width: 480px;
}

.offer-divider {
    width: 40px;
    height: 1px;
    background: rgba(173, 68, 92, 0.35);
    margin: 1.5rem auto;
}

.offer-price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 14px;
    margin-bottom: 1rem;
}
.offer-price-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-deepGreen, #0E3A28);
    line-height: 1;
}
.offer-price-detail {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.offer-price-old {
    text-decoration: line-through;
    color: rgba(14, 58, 40, 0.45);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
}
.offer-price-save {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 2px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(173, 68, 92, 0.1);
    color: var(--color-rosa-fuerte, #AD445C);
}

.offer-timer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--color-deepGreen, #0E3A28);
    letter-spacing: 3px;
    margin-bottom: 1.75rem;
    text-align: center;
}
.offer-timer-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-rosa-fuerte, #AD445C);
    margin-bottom: 8px;
}

.offer-cta {
    display: inline-block;
    background: linear-gradient(135deg, #D4AF37, #E8C44A);
    color: var(--color-ivory, #FAFAF5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    padding: 13px 36px;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.25);
}
.offer-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
}

.offer-note {
    font-family: 'Newsreader', serif;
    font-size: 12.5px;
    color: rgba(14, 58, 40, 0.55);
    margin-top: 14px;
    font-style: italic;
    text-align: center;
}

@media (max-width: 600px) {
    .offer-banner { padding: 1.75rem 1.25rem; }
    .offer-title { font-size: 1.375rem; }
    .offer-description { font-size: 0.875rem; }
    .offer-price-main { font-size: 2.25rem; }
    .offer-timer { font-size: 1.5rem; }
    .offer-cta { font-size: 11.5px; padding: 11px 28px; }
}
