/* ═══════════════════════════════════════════════════════════
   Mollusca Bonus / Loyalty page
   ═══════════════════════════════════════════════════════════ */

.bonus-root {
    --bonus-bg: #111;
    --bonus-surface: rgba(255,255,255,0.05);
    --bonus-surface-hover: rgba(255,255,255,0.08);
    --bonus-text: #f0f0f0;
    --bonus-text-2: rgba(240,240,240,0.8);
    --bonus-text-3: rgba(240,240,240,0.6);
    --bonus-accent: #c8a97e;
    --bonus-accent-soft: rgba(200,169,126,0.10);
    --bonus-border: rgba(255,255,255,0.08);
    --bonus-radius: 16px;
    --bonus-radius-sm: 10px;
    --bonus-ease: cubic-bezier(.4,0,.2,1);

    position: relative;
    color: var(--bonus-text);
    font-family: 'Open Sans', sans-serif;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

.bonus-root *, .bonus-root *::before, .bonus-root *::after { box-sizing: border-box; }

.bonus-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}


/* ═══════════════════════════════════════════════
   Entrance animation
   ═══════════════════════════════════════════════ */

.bonus-anim {
    opacity: 0;
    transform: translateY(24px);
}

.bonus-anim.bonus-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .55s var(--bonus-ease), transform .55s var(--bonus-ease);
}


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.bonus-hero {
    position: relative;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.bonus-hero__bg-pattern {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 60%, var(--bonus-accent-soft) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(255,255,255,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.bonus-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Phone mockup */
.bonus-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-phone__frame {
    position: relative;
    width: 280px;
    height: 570px;
    background: #1a1a1a;
    border-radius: 40px;
    border: 3px solid rgba(255,255,255,0.12);
    padding: 12px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 20px 60px rgba(0,0,0,0.5),
        0 0 80px rgba(200,169,126,0.08);
}

.bonus-phone__screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
}

.bonus-phone__screen .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero content */
.bonus-hero__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bonus-hero__title {
    font-family: 'Cormorant', serif !important;
    font-size: 64px !important;
    font-weight: 300 !important;
    line-height: 1.0 !important;
    letter-spacing: -0.02em !important;
    color: var(--bonus-text) !important;
    margin: 0 !important;
    padding: 0 !important;
}

.bonus-hero__subtitle {
    font-size: 18px;
    color: var(--bonus-accent);
    margin: 0 0 8px;
    font-weight: 400;
}

.bonus-hero__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--bonus-text-2);
    max-width: 440px;
    margin: 0 0 16px;
}

.bonus-hero__actions {
    margin-top: 16px;
}

.bonus-btn {
    display: inline-block;
    padding: 14px 40px;
    background: var(--bonus-accent);
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 100px;
    transition: background .25s var(--bonus-ease), transform .25s var(--bonus-ease);
}

.bonus-btn:hover {
    background: #d4b88a;
    transform: translateY(-1px);
}


/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */

.bonus-section {
    padding: 80px 0;
}

.bonus-section--dark {
    background: var(--bonus-surface);
}

.bonus-section__title {
    font-family: 'Cormorant', serif !important;
    font-size: 36px !important;
    font-weight: 400 !important;
    color: var(--bonus-text) !important;
    margin: 0 0 48px !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.01em !important;
    text-transform: none !important;
}


/* ═══════════════════════════════════════════════
   HOW IT WORKS — Steps
   ═══════════════════════════════════════════════ */

.bonus-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.bonus-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 28px 24px;
    background: var(--bonus-surface);
    border: 1px solid var(--bonus-border);
    border-radius: var(--bonus-radius-sm);
    transition: border-color .25s var(--bonus-ease), background .25s var(--bonus-ease);
}

.bonus-step:hover {
    border-color: rgba(255,255,255,0.15);
    background: var(--bonus-surface-hover);
}

.bonus-step__number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bonus-accent-soft);
    border: 1px solid rgba(200,169,126,0.25);
    font-family: 'Cormorant', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--bonus-accent);
}

.bonus-step__title {
    font-family: 'Cormorant', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--bonus-text);
    margin: 0 0 6px;
    line-height: 1.3;
}

.bonus-step__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--bonus-text-2);
    margin: 0;
}


/* ═══════════════════════════════════════════════
   BENEFITS
   ═══════════════════════════════════════════════ */

.bonus-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bonus-benefit {
    padding: 28px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--bonus-border);
    border-radius: var(--bonus-radius-sm);
    transition: border-color .25s var(--bonus-ease), transform .25s var(--bonus-ease);
}

.bonus-benefit:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.bonus-benefit__icon {
    font-size: 28px;
    margin-bottom: 14px;
}

.bonus-benefit__title {
    font-family: 'Cormorant', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--bonus-text);
    margin: 0 0 8px;
    line-height: 1.3;
}

.bonus-benefit__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--bonus-text-2);
    margin: 0;
}


/* ═══════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════ */

.bonus-cta {
    padding: 60px 0 100px;
}

.bonus-cta__inner {
    text-align: center;
    padding: 48px 40px;
    border: 1px dashed rgba(200,169,126,0.3);
    border-radius: var(--bonus-radius);
    background: var(--bonus-accent-soft);
}

.bonus-cta__title {
    font-family: 'Cormorant', serif !important;
    font-size: 30px !important;
    font-weight: 400 !important;
    color: var(--bonus-text) !important;
    margin: 0 0 10px !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.bonus-cta__desc {
    font-size: 15px;
    color: var(--bonus-text-2);
    margin: 0 0 28px;
}

.bonus-cta__inner .bonus-btn {
    margin-top: 8px;
}


/* ═══════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {
    .bonus-container { padding: 0 20px; }

    .bonus-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bonus-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .bonus-hero__grid {
        text-align: center;
    }

    .bonus-hero__content {
        align-items: center;
        order: -1;
    }

    .bonus-hero__desc {
        max-width: 100%;
    }

    .bonus-hero__title {
        font-size: 48px !important;
    }

    .bonus-phone__frame {
        width: 240px;
        height: 490px;
        border: 2px solid rgba(255,255,255,0.08);
        padding: 6px;
        border-radius: 32px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }

    .bonus-phone__screen {
        border-radius: 26px;
    }

    .bonus-hero__actions {
        text-align: center;
    }

    .bonus-section__title {
        font-size: 28px !important;
    }
}

@media (max-width: 680px) {
    .bonus-container { padding: 0 16px; }

    .bonus-hero {
        padding: 100px 0 40px;
    }

    .bonus-hero__title {
        font-size: 40px !important;
    }

    .bonus-hero__subtitle {
        font-size: 16px;
    }

    .bonus-hero__desc {
        font-size: 14px;
    }

    .bonus-phone__frame {
        width: 220px;
        height: 450px;
        border-radius: 32px;
        border: 3px solid rgba(255,255,255,0.10);
        padding: 8px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.4);
    }

    .bonus-phone__screen {
        border-radius: 24px;
    }

    .bonus-btn {
        padding: 12px 32px;
        font-size: 13px;
    }

    .bonus-section {
        padding: 56px 0;
    }

    .bonus-section__title {
        font-size: 26px !important;
        margin-bottom: 32px !important;
    }

    .bonus-step {
        gap: 16px;
        padding: 22px 18px;
    }

    .bonus-step__number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .bonus-benefits {
        grid-template-columns: 1fr;
    }

    .bonus-benefit {
        padding: 22px 18px;
    }

    .bonus-cta {
        padding: 40px 0 80px;
    }

    .bonus-cta__inner {
        padding: 32px 20px;
    }

    .bonus-cta__title {
        font-size: 24px !important;
    }

}
