/* ========================================================
   FAHD STORE - PERFECT MOBILE CRO STYLESHEET (650 EGP)
   Theme: Dark Charcoal / Jet Black + Glowing Amber / Warm Gold
   Philosophy: Premium • Clean Margins • Zero Horizontal Overflow • High Conversion
   ======================================================== */

:root {
    --bg-main: #0B0B0D;
    --bg-darker: #060608;
    --bg-card: rgba(21, 21, 28, 0.94);
    --bg-card-hover: rgba(28, 28, 38, 0.98);
    --border-glass: rgba(255, 255, 255, 0.09);
    --border-accent: rgba(255, 196, 0, 0.35);
    
    /* Brand Accent: Glowing Amber & Pure Gold */
    --gold-primary: #FFC400;
    --gold-hover: #FF9F00;
    --gold-light: #FFE082;
    --gold-glow: rgba(255, 196, 0, 0.35);
    --gold-gradient: linear-gradient(135deg, #FFC400 0%, #FF9F00 100%);
    
    /* Trust Green */
    --green-trust: #10B981;
    --green-glow: rgba(16, 185, 129, 0.3);
    
    /* Text Colors */
    --text-pure: #FFFFFF;
    --text-primary: #F8FAFC;
    --text-secondary: #B7B7BD;
    --text-muted: #94A3B8;
    
    /* Fonts */
    --font-heading: 'Cairo', sans-serif;
    --font-body: 'Tajawal', sans-serif;
    
    /* Transitions */
    --ease-out-back: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.18s ease;
    --transition-smooth: 0.35s var(--ease-out-back);
}

/* Reset & Mobile Viewport Protection */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body.cro-landing-page {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-bottom: 74px; /* Space for mobile sticky bar */
}

@media (min-width: 992px) {
    body.cro-landing-page {
        padding-bottom: 0;
    }
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========================================================
   GLOBAL AMBIENT BACKGROUND SHAPES (Contained & Non-blocking)
   ======================================================== */
.bg-decorative-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    pointer-events: none;
}

.orb-hero {
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #FFC400 0%, transparent 70%);
}

.orb-middle {
    top: 45%;
    left: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #FF9F00 0%, transparent 70%);
    opacity: 0.08;
}

.orb-bottom {
    bottom: -60px;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FFC400 0%, transparent 70%);
    opacity: 0.1;
}

.subtle-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.5;
}

/* ========================================================
   BALANCED CONTAINERS & SECTIONS
   ======================================================== */
.section-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .section-container {
        padding: 0 0.95rem; /* Perfect balanced side margins on phone */
    }
}

.sales-section {
    padding: 2.6rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.sales-section.bg-darker {
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
    .sales-section {
        padding: 2.1rem 0;
    }
}

/* Glassmorphism Panel Primitive */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    transition: var(--transition-fast);
    box-sizing: border-box;
}

.glass-panel:hover {
    border-color: rgba(255, 196, 0, 0.3);
}

/* Typography & Helpers */
.text-amber {
    color: var(--gold-primary) !important;
}

.text-white {
    color: var(--text-pure) !important;
}

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

.badge-pill {
    display: inline-block;
    background: rgba(255, 196, 0, 0.12);
    border: 1px solid rgba(255, 196, 0, 0.35);
    color: var(--gold-primary);
    padding: 0.25rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.45rem;
}

.golden-title-line {
    width: 44px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin: 0.35rem auto 0.6rem auto;
    box-shadow: 0 0 8px rgba(255, 196, 0, 0.4);
}

.section-header {
    margin-bottom: 1.35rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--text-pure);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.section-header p {
    font-size: 0.96rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

.section-lead-p {
    font-size: 0.98rem !important;
    color: var(--text-secondary);
    line-height: 1.6 !important;
    max-width: 780px !important;
}

@media (max-width: 767px) {
    .section-header h2 {
        font-size: 1.45rem;
    }
    .section-header p {
        font-size: 0.88rem;
    }
}

/* ========================================================
   TOP ANNOUNCEMENT BAR
   ======================================================== */
.top-announcement-bar {
    background: linear-gradient(90deg, #181202 0%, #2A1C03 50%, #181202 100%);
    border-bottom: 1px solid rgba(255, 196, 0, 0.35);
    padding: 0.45rem 0.9rem;
    text-align: center;
    font-size: 0.82rem;
    color: #fff;
    position: relative;
    z-index: 100;
    width: 100%;
}

.announcement-content {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    justify-content: center;
    max-width: 100%;
}

.announcement-pulse {
    width: 7px;
    height: 7px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-primary);
    animation: pulseGlow 1.5s infinite;
    flex-shrink: 0;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

/* ========================================================
   1. COMPACT HEADER & LOGO
   ======================================================== */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
    background: rgba(11, 11, 13, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-glass);
}

.scroll-progress {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    width: 0%;
    transition: width 0.1s linear;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.55rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .header-container {
        padding: 0.55rem 0.95rem;
    }
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    user-select: none;
}

.logo-emblem-box {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(28, 28, 42, 0.95), rgba(10, 10, 18, 0.98));
    border: 1.5px solid rgba(255, 196, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(255, 196, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease;
    flex-shrink: 0;
}

.logo-emblem-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    display: block;
}

.brand-logo-link:hover .logo-emblem-box {
    transform: scale(1.05);
    border-color: var(--gold-primary);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: center;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.3px;
    display: flex;
    gap: 0.25rem;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-top: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: var(--green-trust);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.header-icon-btn:hover {
    background: var(--green-trust);
    color: #000;
}

.header-order-btn {
    padding: 0.5rem 1.1rem !important;
    font-size: 0.9rem !important;
    border-radius: 9px !important;
    min-height: 38px !important;
}

/* ========================================================
   HIGH-CONVERTING CTA BUTTONS & SHINE EFFECT
   ======================================================== */
.btn-primary-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    color: #050508;
    font-family: var(--font-heading);
    font-weight: 900;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    text-align: center;
    padding: 0.9rem 1.5rem;
    font-size: 1.06rem;
    box-shadow: 0 4px 18px rgba(255, 196, 0, 0.35);
    min-height: 52px;
    width: 100%;
    box-sizing: border-box;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 196, 0, 0.45);
}

.btn-primary-cta:active {
    transform: translateY(1px) scale(0.98);
}

.btn-amber-glow {
    box-shadow: 0 0 18px rgba(255, 196, 0, 0.35);
}

.btn-large {
    padding: 0.95rem 1.6rem;
    font-size: 1.15rem;
    min-height: 54px;
}

/* Periodic Shine Effect Sweep */
.btn-shine-effect .btn-shine-bar {
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-25deg);
    animation: ctaShine 4.5s infinite ease-in-out;
    pointer-events: none;
}

@keyframes ctaShine {
    0%, 75% { left: -120%; }
    100% { left: 200%; }
}

/* ========================================================
   2. HERO SALES SECTION & PRODUCT STAGE
   ======================================================== */
.hero-sales-section {
    padding: 1.2rem 0 1.8rem 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-ring {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: min(90vw, 460px);
    height: min(90vw, 460px);
    border-radius: 50%;
    border: 1px solid rgba(255, 196, 0, 0.08);
    pointer-events: none;
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 767px) {
    .hero-container {
        padding: 0 0.95rem;
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
}

.hero-copy-column {
    width: 100%;
    box-sizing: border-box;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 196, 0, 0.12);
    border: 1px solid rgba(255, 196, 0, 0.4);
    color: var(--gold-primary);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    margin-bottom: 0.45rem;
}

.badge-icon-sparkle {
    display: inline-block;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1.18;
    color: var(--text-pure);
    margin-bottom: 0.35rem;
    letter-spacing: -0.5px;
}

.hero-word {
    display: inline-block;
}

/* Price Block */
.hero-price-block {
    background: radial-gradient(circle at center, rgba(255, 196, 0, 0.12) 0%, rgba(18, 18, 28, 0.96) 80%);
    border: 1.5px solid rgba(255, 196, 0, 0.45);
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
    margin-bottom: 0.85rem;
    display: block;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 18px rgba(255, 196, 0, 0.15);
    animation: subtlePriceGlow 4s infinite ease-in-out;
}

@keyframes subtlePriceGlow {
    0%, 100% {
        box-shadow: 0 0 16px rgba(255, 196, 0, 0.15);
        border-color: rgba(255, 196, 0, 0.45);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 196, 0, 0.35);
        border-color: var(--gold-primary);
    }
}

.price-header-label {
    font-size: 0.92rem;
    color: var(--gold-light);
    font-weight: 800;
    margin-bottom: 0.1rem;
}

.price-main-display {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.price-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1;
    text-shadow: 0 0 16px rgba(255, 196, 0, 0.4);
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-pure);
}

.price-footer-tags {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.price-tag-divider {
    color: var(--gold-primary);
}

/* Trust Banner Hook */
.hero-promise-banner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-right: 3px solid var(--green-trust);
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    margin-bottom: 0.9rem;
    width: 100%;
    box-sizing: border-box;
}

.promise-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
}

.promise-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--green-trust);
}

.hero-cta-group {
    margin-bottom: 0.75rem;
    width: 100%;
}

.hero-micro-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.micro-item {
    color: var(--text-primary);
}

.micro-sep {
    color: var(--gold-primary);
}

/* ========================================================
   PRODUCT STAGE (OfferHeroVideo Stage)
   ======================================================== */
.hero-video-column {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 991px) {
    .hero-video-column {
        order: -1; /* Video on top on phone */
    }
    .hero-headline {
        font-size: 1.9rem;
    }
}

.product-stage-card {
    padding: 0.75rem;
    position: relative;
    border-color: rgba(255, 196, 0, 0.35) !important;
    background: radial-gradient(circle at center, rgba(255, 196, 0, 0.08) 0%, rgba(15, 15, 24, 0.97) 80%) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85) !important;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.stage-top-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-gradient);
    color: #000;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.74rem;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

/* Floating Micro Chips strictly contained within the stage */
.floating-chip {
    position: absolute;
    background: rgba(14, 14, 22, 0.92);
    border: 1px solid rgba(255, 196, 0, 0.5);
    color: var(--text-pure);
    padding: 0.22rem 0.65rem;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 800;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
    pointer-events: none;
}

.chip-offer-duo {
    top: 10px;
    left: 10px;
}

.chip-price-tag {
    bottom: 52px;
    right: 10px;
    background: rgba(255, 196, 0, 0.18);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.chip-trust-tag {
    bottom: 52px;
    left: 10px;
    border-color: var(--green-trust);
    color: var(--green-trust);
}

.hero-video-player-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 9 / 16;
    max-height: 400px;
    max-width: 270px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

@media (max-width: 767px) {
    .hero-video-player-wrapper {
        max-height: 320px;
        max-width: 225px;
    }
}

.hero-cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
}

.video-ctrl-btn {
    position: absolute;
    background: rgba(8, 8, 14, 0.9);
    border: 1px solid rgba(255, 196, 0, 0.55);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-fast);
}

.video-ctrl-btn:hover {
    background: rgba(255, 196, 0, 0.25);
    border-color: var(--gold-primary);
}

.video-sound-btn {
    bottom: 10px;
    left: 10px;
}

.video-sound-btn.unmuted {
    border-color: var(--green-trust);
    background: rgba(16, 185, 129, 0.25);
}

.video-replay-btn {
    top: 10px;
    left: 10px;
    background: rgba(255, 196, 0, 0.25);
    border-color: var(--gold-primary);
}

.stage-pedestal-glow {
    width: 160px;
    height: 16px;
    background: radial-gradient(ellipse, rgba(255, 196, 0, 0.3) 0%, transparent 70%);
    margin: 0.35rem auto 0 auto;
    border-radius: 50%;
}

.hero-video-caption {
    margin-top: 0.45rem;
    text-align: center;
}

.hero-video-caption strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--gold-primary);
    margin-bottom: 0.1rem;
}

.hero-video-caption p {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

/* Scroll Cue Indicator */
.hero-scroll-cue {
    text-align: center;
    margin-top: 0.9rem;
    width: 100%;
}

.scroll-cue-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.scroll-cue-link:hover {
    color: var(--gold-primary);
}

.cue-arrow {
    display: inline-block;
    color: var(--gold-primary);
    font-weight: 900;
    animation: scrollArrowBounce 1.8s infinite ease-in-out;
}

@keyframes scrollArrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
}

/* ========================================================
   3. ULTRA-SIMPLE QUICK ORDER FORM
   ======================================================== */
.early-form-section {
    padding: 2.1rem 0 2.6rem 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, #07070B 100%);
    border-top: 1px solid rgba(255, 196, 0, 0.15);
    border-bottom: 1px solid rgba(255, 196, 0, 0.15);
    width: 100%;
}

.order-main-card {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
    padding: 1.6rem 1.4rem;
    border-color: rgba(255, 196, 0, 0.45) !important;
    background: rgba(14, 14, 22, 0.97) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9) !important;
    border-radius: 18px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .order-main-card {
        padding: 1.3rem 0.95rem; /* Balanced mobile form padding */
    }
}

.form-focused-pulse {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 30px rgba(255, 196, 0, 0.4) !important;
    animation: pulseBorder 1.2s ease;
}

@keyframes pulseBorder {
    0% { transform: scale(1); }
    50% { transform: scale(1.015); }
    100% { transform: scale(1); }
}

.order-header-box {
    margin-bottom: 1.1rem;
}

.form-progress-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 196, 0, 0.1);
    border: 1px solid rgba(255, 196, 0, 0.3);
    padding: 0.25rem 0.8rem;
    border-radius: 16px;
    margin-bottom: 0.45rem;
}

.prog-txt {
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.prog-dots {
    display: flex;
    gap: 4px;
}

.prog-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.prog-dots .dot.active {
    background: var(--gold-primary);
    box-shadow: 0 0 5px var(--gold-primary);
}

.order-header-box h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--text-pure);
    margin-bottom: 0.2rem;
}

.order-price-highlight {
    margin-bottom: 0.2rem;
}

.order-price-val {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-primary);
}

.order-fast-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.order-trust-banner {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--green-trust);
}

/* Error Banner */
.form-error-banner {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: #fca5a5;
    font-size: 0.86rem;
    font-weight: 700;
}

/* Form Styles */
.direct-checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: right;
    width: 100%;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-primary);
}

.label-icon {
    font-size: 0.95rem;
}

.req {
    color: #ef4444;
}

.input-relative-box {
    position: relative;
    width: 100%;
}

.field-valid-check {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green-trust);
    font-weight: 900;
    font-size: 1.05rem;
    display: none;
    pointer-events: none;
}

.form-group.is-valid .field-valid-check {
    display: block;
}

.field-hint {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.field-hint-light {
    font-size: 0.74rem;
    color: var(--gold-light);
    opacity: 0.9;
    margin-top: 2px;
}

.form-group input,
.form-group select {
    width: 100%;
    min-height: 52px;
    background: rgba(8, 8, 12, 0.94);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 14px rgba(255, 196, 0, 0.35);
    background: rgba(14, 14, 20, 0.99);
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-left: 2.2rem;
}

.select-wrapper select:disabled {
    background: rgba(20, 20, 26, 0.5);
    color: var(--text-muted);
    border-color: rgba(255, 255, 255, 0.06);
    cursor: not-allowed;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--gold-primary);
    pointer-events: none;
}

.select-ready-pulse {
    border-color: var(--gold-primary) !important;
    box-shadow: 0 0 14px rgba(255, 196, 0, 0.45) !important;
}

.alt-phone-toggle-wrap {
    text-align: right;
    margin-top: -0.3rem;
}

.alt-phone-toggle-btn {
    background: transparent;
    border: none;
    color: var(--gold-primary);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.2rem 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-order-summary-strip {
    padding: 0.75rem 0.95rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.4rem;
    border-color: rgba(255, 196, 0, 0.3) !important;
    background: rgba(10, 10, 16, 0.92) !important;
    margin-top: 0.2rem;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
}

.summary-items-inline {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--text-pure);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.summary-plus {
    color: var(--gold-primary);
}

.summary-total-tag {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--text-pure);
}

.summary-total-tag strong {
    font-size: 1.15rem;
    color: var(--gold-primary);
    margin-right: 0.2rem;
}

.btn-submit-form {
    width: 100%;
    padding: 0.95rem;
    font-size: 1.2rem;
    border-radius: 12px;
    margin-top: 0.3rem;
}

.form-bottom-microcopy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 0.25rem;
}

/* Success Card */
.order-success-state {
    padding: 2rem 1.2rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.45);
    border-radius: 16px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.success-icon-wrap {
    width: 54px;
    height: 54px;
    margin: 0 auto 0.5rem auto;
}

.checkmark-svg {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: var(--green-trust);
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke: var(--green-trust);
    fill: none;
    animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes strokeCircle {
    100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
    100% { stroke-dashoffset: 0; }
}

.order-success-state h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--green-trust);
    margin-bottom: 0.2rem;
}

.success-main-msg {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 0.8rem;
}

.success-summary-box {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 196, 0, 0.35);
    padding: 0.55rem 1.1rem;
    border-radius: 25px;
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    font-weight: 700;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.success-price-badge {
    color: var(--gold-primary);
    font-weight: 900;
}

.success-phone-msg {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.85rem;
}

.success-celebrate {
    display: inline-block;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #fff;
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.88rem;
}

/* ========================================================
   4. BUNDLE SECTION
   ======================================================== */
.bundle-section {
    position: relative;
    overflow: hidden;
}

.bundle-glow-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(90vw, 550px);
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(255, 196, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.bundle-duo-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.1rem;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 1.35rem auto;
    width: 100%;
}

.bundle-duo-card {
    padding: 1.1rem;
    position: relative;
    text-align: center;
    border-color: rgba(255, 196, 0, 0.25) !important;
    width: 100%;
    box-sizing: border-box;
}

.duo-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gold-primary);
    color: #000;
    padding: 0.2rem 0.65rem;
    border-radius: 14px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 2;
}

.duo-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    margin-bottom: 0.8rem;
    width: 100%;
}

.micro-float-item img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

.product-item-halo {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 35px;
    background: radial-gradient(ellipse, rgba(255, 196, 0, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

.duo-info h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 0.3rem;
}

.duo-info p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.duo-plus-sign {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-glow-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 196, 0, 0.15);
    border: 1.5px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(255, 196, 0, 0.3);
}

.bundle-cta-box {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
    padding: 1.2rem 1.1rem;
    border-color: rgba(255, 196, 0, 0.4) !important;
    background: radial-gradient(circle at center, rgba(255, 196, 0, 0.1) 0%, rgba(18, 18, 28, 0.96) 80%) !important;
    box-sizing: border-box;
}

.bundle-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 0.25rem;
}

.bundle-price-txt {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-primary);
}

.bundle-price-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
}

.bundle-trust-line {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--green-trust);
    margin-bottom: 0.85rem;
}

.bundle-btn {
    max-width: 360px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .bundle-duo-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .duo-plus-sign {
        margin: -0.3rem 0;
    }
    .plus-glow-circle {
        width: 42px;
        height: 42px;
        font-size: 1.7rem;
    }
    .duo-img-box img {
        height: 160px;
    }
    .bundle-btn {
        max-width: 100%;
    }
}

/* ========================================================
   5. WATCH & EARBUDS SECTIONS
   ======================================================== */
.watch-tech-section,
.earbuds-curved-section {
    position: relative;
    overflow: hidden;
}

.tech-grid-accent {
    position: absolute;
    top: 20%;
    right: 2%;
    width: 160px;
    height: 160px;
    border: 1px dashed rgba(255, 196, 0, 0.12);
    border-radius: 20px;
    pointer-events: none;
    transform: rotate(15deg);
}

.soft-circle-ring {
    position: absolute;
    top: 30%;
    left: 2%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.product-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 1.8rem;
    align-items: center;
    width: 100%;
}

.product-split-grid.reverse-split {
    grid-template-columns: 1.3fr 1fr;
}

.product-split-grid.reverse-split .product-split-img-box {
    order: 2;
}

.product-split-grid.reverse-split .product-split-info {
    order: 1;
}

.product-split-img-box {
    padding: 0.65rem;
    position: relative;
    border-radius: 16px;
    background: #000;
    overflow: hidden;
    border-color: rgba(255, 196, 0, 0.3) !important;
    width: 100%;
    box-sizing: border-box;
}

.pedestal-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(80vw, 240px);
    height: min(80vw, 240px);
    background: radial-gradient(circle, rgba(255, 196, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.curved-spotlight {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 70%);
}

.split-product-img {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 330px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    z-index: 1;
}

.split-img-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 196, 0, 0.4);
    color: var(--gold-primary);
    padding: 0.22rem 0.7rem;
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 800;
    z-index: 2;
}

.product-split-info {
    width: 100%;
    box-sizing: border-box;
}

.feature-chips-container {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    width: 100%;
}

.tech-chip {
    padding: 0.7rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(18, 18, 26, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    box-sizing: border-box;
    width: 100%;
}

.chip-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.chip-body {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.chip-body strong {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--text-pure);
    line-height: 1.2;
}

.chip-body span {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.earbuds-contents-box {
    padding: 1.15rem;
    margin-bottom: 1.2rem;
    width: 100%;
    box-sizing: border-box;
}

.earbuds-contents-box h3 {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.7rem;
}

.earbuds-tags-grid {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    width: 100%;
}

.content-tag-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.86rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.tag-check {
    color: var(--gold-primary);
    font-weight: 900;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.earbuds-tag-all {
    margin-top: 0.8rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--gold-primary);
}

.split-cta-wrap {
    width: 100%;
}

.split-cta-wrap .btn-primary-cta {
    font-size: 0.95rem;
    padding: 0.8rem 1.3rem;
}

@media (max-width: 991px) {
    .product-split-grid,
    .product-split-grid.reverse-split {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .product-split-grid.reverse-split .product-split-img-box {
        order: 1;
    }
    .product-split-grid.reverse-split .product-split-info {
        order: 2;
    }
    .split-product-img {
        max-height: 250px;
    }
    .split-cta-wrap .btn-primary-cta {
        width: 100%;
    }
}

/* ========================================================
   7. REAL PRODUCT GALLERY
   ======================================================== */
.gallery-modern-section {
    position: relative;
    overflow: hidden;
}

.real-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    width: 100%;
}

.gallery-item-box {
    padding: 0.65rem;
    position: relative;
    background: #000;
    display: flex;
    flex-direction: column;
    border-color: rgba(255, 196, 0, 0.25) !important;
    width: 100%;
    box-sizing: border-box;
}

.gallery-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 196, 0, 0.4);
    color: var(--gold-primary);
    padding: 0.2rem 0.65rem;
    border-radius: 14px;
    font-size: 0.72rem;
    font-weight: 800;
    z-index: 2;
}

.gallery-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.gallery-item-box img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.gallery-item-caption {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.4;
}

@media (max-width: 850px) {
    .real-gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
    .gallery-item-box img {
        height: 190px;
    }
}

/* ========================================================
   8. TRUST SECTION (3 Large Impact Cards)
   ======================================================== */
.trust-cards-section {
    position: relative;
    overflow: hidden;
}

.trust-trio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    margin-bottom: 1.4rem;
    width: 100%;
}

.trust-trio-card {
    padding: 1.4rem 1.1rem;
    text-align: center;
    border-color: rgba(255, 196, 0, 0.3) !important;
    width: 100%;
    box-sizing: border-box;
}

.trio-icon-box {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.trust-trio-card h3 {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 0.35rem;
}

.trust-trio-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.trust-cta-wrap {
    width: 100%;
}

.trust-cta-wrap .btn-primary-cta {
    max-width: 360px;
    margin: 0 auto;
}

@media (max-width: 850px) {
    .trust-trio-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .trust-trio-card {
        padding: 1.15rem 0.95rem;
    }
    .trust-cta-wrap .btn-primary-cta {
        max-width: 100%;
        width: 100%;
    }
}

/* ========================================================
   9. FINAL CLOSING HOOK
   ======================================================== */
.final-closing-section {
    position: relative;
    overflow: hidden;
}

.closing-card {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 1.8rem 1.4rem;
    border-color: rgba(255, 196, 0, 0.4) !important;
    background: radial-gradient(circle at center, rgba(255, 196, 0, 0.1) 0%, rgba(18, 18, 28, 0.97) 80%) !important;
    box-sizing: border-box;
}

.closing-card h2 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--text-pure);
    margin-bottom: 0.35rem;
}

.closing-lead {
    font-size: 0.96rem;
    color: var(--text-secondary);
    margin-bottom: 1.1rem;
}

.closing-price-box {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1.1rem;
    padding: 0.6rem 1.5rem;
    border-radius: 12px;
    background: rgba(255, 196, 0, 0.08);
    border: 1px solid rgba(255, 196, 0, 0.35);
    max-width: 100%;
    box-sizing: border-box;
}

.closing-price-tag {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.closing-trust-tag {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--green-trust);
}

.closing-btn {
    max-width: 360px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .closing-card {
        padding: 1.4rem 1rem;
    }
    .closing-btn {
        max-width: 100%;
    }
}

/* ========================================================
   10. COMPACT FOOTER
   ======================================================== */
.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 1.8rem 0 1.4rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .footer-container {
        padding: 0 0.95rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
}

.footer-logo-link {
    justify-content: center;
}

.footer-emblem-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.footer-brand p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.footer-trust-notes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    padding: 0.55rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    max-width: 560px;
}

.footer-copyright {
    font-size: 0.76rem;
    color: var(--text-muted);
}

/* ========================================================
   11. STICKY MOBILE BOTTOM BAR
   ======================================================== */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    background: rgba(9, 9, 13, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1.5px solid rgba(255, 196, 0, 0.4);
    padding: 0.55rem 0.95rem;
    z-index: 999;
    align-items: center;
    gap: 0.65rem;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.sticky-mobile-bar.hidden {
    transform: translateY(120%);
}

.sticky-price-tag {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.sticky-price-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    line-height: 1;
}

.sticky-price-val {
    font-family: var(--font-heading);
    font-size: 1.22rem;
    font-weight: 900;
    color: var(--gold-primary);
    line-height: 1.1;
}

.mobile-sticky-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 800;
    box-sizing: border-box;
}

.mobile-btn-whatsapp {
    width: 42px;
    height: 42px;
    background: var(--green-trust);
    color: #000;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mobile-btn-order {
    flex: 1;
    height: 42px;
    background: var(--gold-gradient);
    color: #050508;
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

@media (max-width: 991px) {
    .sticky-mobile-bar {
        display: flex;
    }
}

/* ========================================================
   12. SCROLL REVEAL (Safe Zero Overflow)
   ======================================================== */
.scroll-reveal-card {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s var(--ease-out-back), transform 0.45s var(--ease-out-back);
}

.scroll-reveal-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .scroll-reveal-card[data-reveal="right"] {
        transform: translateX(20px);
    }
    .scroll-reveal-card[data-reveal="right"].revealed {
        transform: translateX(0);
    }
    .scroll-reveal-card[data-reveal="left"] {
        transform: translateX(-20px);
    }
    .scroll-reveal-card[data-reveal="left"].revealed {
        transform: translateX(0);
    }
    .scroll-reveal-card[data-reveal="scale"] {
        transform: scale(0.94);
    }
    .scroll-reveal-card[data-reveal="scale"].revealed {
        transform: scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .scroll-reveal-card {
        opacity: 1 !important;
        transform: none !important;
    }
}
