/* ===================================================
   حامل المسك | Hamil Al Musk - Master Hero Section
   Layered Staging: bak1 (Landscape) + bak2 (Perfumes on Stone)
   =================================================== */

/* Design Tokens & Theme Variables */
:root {
    --font-ar-primary: 'Alexandria', 'Almarai', 'Tajawal', -apple-system, sans-serif;
    --font-serif-luxury: 'Cinzel', 'Playfair Display', 'Bodoni Moda', serif;
    
    /* Luxury Atmospheric Palette */
    --color-gold-glow: #F2C779;
    --color-gold-accent: #E5B45B;
    --color-gold-dark: #A67C33;
    
    --color-text-white: #FFFFFF;
    --color-text-dim: rgba(255, 255, 255, 0.78);
    --color-text-muted: rgba(255, 255, 255, 0.55);
    
    /* Glassmorphism Tokens */
    --glass-bg: rgba(22, 12, 34, 0.42);
    --glass-bg-card: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.14);
    --glass-border-gold: rgba(242, 199, 121, 0.35);
    --glass-blur: blur(16px);
    
    /* Global Universal Container Tokens (Expanded Ultra-Wide Luxury Layout) */
    --site-container-max: 1720px;
    --site-container-padding: clamp(14px, 3.5vw, 56px);

    /* Light Theme Page Tokens */
    --color-bg-page: #FFFFFF;
    --color-bg-subtle: #F9F7F5;
    --color-text-dark: #120A17;
    --color-text-body: #4A3E52;
    
    /* Animations */
    --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: auto; /* Handled smoothly by Lenis */
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: var(--font-ar-primary);
    direction: rtl;
    text-align: right;
    background-color: #FFFFFF;
    color: #120A17;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================================
   Universal Typography System (توحيد الخطوط الملكية)
   جميع العناوين، النصوص، والأزرار تتبع نسق الهيرو والتفصيل بدقة
   =================================================== */
button, input, select, textarea, optgroup {
    font-family: var(--font-ar-primary) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ar-primary);
    font-weight: 800;
    letter-spacing: -0.015em;
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
}

p, span, a, li, label, strong, b, em {
    font-family: inherit;
    -webkit-font-smoothing: antialiased;
}

/* ===================================================
   Hide Scrollbar Completely Across All Browsers
   (Maintains full scrolling functionality with Lenis / Wheel)
   =================================================== */
html, body {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera, Edge */
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

* {
    scrollbar-width: none !important;
}

/* Lenis Smooth Scroll Engine Standards */
html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* ===================================================
   Master Universal Container Design Token
   Enforces unified grid alignment across Header & all Sections
   =================================================== */
.site-container {
    width: 100%;
    max-width: var(--site-container-max);
    margin-inline: auto;
    padding-inline: var(--site-container-padding);
}

/* ===================================================
   Hero Section Container
   =================================================== */
.hero-section {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: 100svh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

/* ---------------------------------------------------
   1. Background Layer 1: Landscape Sunset (bak1)
   --------------------------------------------------- */
.hero-bg-base {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    animation: bgSceneryFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0s both;
    will-change: transform, filter, opacity;
}

.hero-bg-base picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.02);
    transition: transform 6s ease-out;
}

.hero-bg-overlay {
    display: none; /* Removed background shadow overlay */
}

/* Accessibility Screen Reader Only Utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---------------------------------------------------
   2. Background Depth Typography (Dual Continuous Marquee Tickers)
   Layered between bak1 and bak2 for cinematic 3D depth
   - Large bold typography without shadows
   - Row 1: Smoothly glides to the Left
   - Row 2: Smoothly glides to the Right
   --------------------------------------------------- */
.hero-marquee-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    gap: clamp(2px, 0.6vw, 10px);
    overflow: visible; /* Prevents any vertical clipping */
    direction: ltr; /* Ensures deterministic translation coordinates in all browsers */
    animation: marqueeBlurEntrance 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
    will-change: transform, filter, opacity;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    padding: clamp(10px, 1.8vh, 24px) 0; /* Generous vertical padding so letters are never clipped */
}

.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    align-items: center;
}

.marquee-track-left {
    animation: marquee-scroll-left 65s linear infinite;
}

.marquee-track-right {
    animation: marquee-scroll-right 70s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: clamp(1.2rem, 2.5vw, 3.2rem);
    padding-right: clamp(1.2rem, 2.5vw, 3.2rem); /* Matches gap perfectly for seamless loop */
    padding-top: 6px;
    padding-bottom: 6px;
}

.marquee-text {
    font-size: clamp(3.4rem, 7.8vw, 7.5rem);
    font-weight: 900;
    line-height: 1.32; /* Generous line-height so Arabic ascenders and descenders breathe freely */
    white-space: nowrap;
    text-transform: uppercase;
    text-shadow: none; /* No shadow */
    padding: 6px 0;
}

.marquee-text.en {
    font-family: var(--font-serif-luxury);
    letter-spacing: clamp(0.1em, 1.2vw, 0.2em);
    color: rgba(255, 255, 255, 0.65);
    text-shadow: none; /* No shadow */
}

.marquee-text.ar {
    font-family: var(--font-ar-primary);
    font-weight: 900;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.65);
    text-shadow: none; /* No shadow */
}

/* Row 2: Also fully bold and prominent */
.marquee-row-2 .marquee-text {
    font-weight: 900;
    color: rgba(255, 255, 255, 0.55);
    -webkit-text-stroke: 0;
    text-shadow: none; /* No shadow */
}

.marquee-sep {
    font-size: clamp(1.6rem, 3.2vw, 3.2rem);
    color: rgba(242, 199, 121, 0.65);
    display: inline-flex;
    align-items: center;
    user-select: none;
    text-shadow: none; /* No shadow */
}

/* Seamless infinite ticker keyframes */
@keyframes marquee-scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes marquee-scroll-right {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

/* ===================================================
   Cinematic Staggered Blur Entrance Animations
   - Background 2 (Bottles & Rock): Rises from bottom with blur
   - Background 1, Header, Marquee, and CTA reveal sequentially with blur
   =================================================== */

@keyframes bottlesRiseBlur {
    0% {
        opacity: 0;
        transform: translateY(110px);
        filter: blur(24px);
    }
    50% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes headerBlurEntrance {
    0% {
        opacity: 0;
        transform: translateY(-24px);
        filter: blur(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes marqueeBlurEntrance {
    0% {
        opacity: 0;
        filter: blur(24px);
        transform: translateY(-50%) scale(0.96);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(-50%) scale(1);
    }
}

@keyframes ctaBlurEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(32px);
        filter: blur(16px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        filter: blur(0px);
    }
}

@keyframes bgSceneryFade {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1);
    }
}

/* ---------------------------------------------------
   3. Background Layer 2: Perfumes & Flowers on Rock (bak2)
   Takes FULL section width (100%) with natural proportional height
   Completely static without mouse movement
   --------------------------------------------------- */
.hero-bottles-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 3;
    pointer-events: none;
    line-height: 0;
    animation: bottlesRiseBlur 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
    will-change: transform, filter, opacity;
}

.hero-bottles-layer picture {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    line-height: 0;
}

.hero-bottles-img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
    /* Image 2 is completely static as requested */
    transform: none !important;
}




/* ===================================================
   Transparent Minimal Header / Navbar
   - Background: 100% Transparent
   - Right: Brand Logo
   - Left: Ultra-Small Minimal Navigation Links
   =================================================== */
.transparent-header {
    position: relative;
    z-index: 25;
    width: 100%;
    padding: clamp(16px, 2.5vh, 28px) 0;
    background: transparent;
    border: none;
    box-shadow: none;
    direction: rtl;
    animation: headerBlurEntrance 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    will-change: transform, filter, opacity;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Right: Brand Logo */
.header-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    transition: var(--transition-fast);
}

.logo-link:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

.brand-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.45));
}

/* Left: Minimal Navigation Links (صغيرة جداً) */
.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 22px);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.8vw, 24px);
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    font-size: clamp(0.72rem, 0.85vw, 0.82rem); /* مصغرة جداً كما طُلب */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    padding: 6px 4px;
    letter-spacing: 0.02em;
    transition: color 0.25s ease;
}

/* Line below the word on hover */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5px;
    background: #FFFFFF;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 2px;
}

.nav-item:hover,
.nav-item.active {
    color: #FFFFFF;
    text-shadow: none; /* Removed hover shadow */
}

.nav-item:hover::after,
.nav-item.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* Header CTA Button (Next to Menu - Exact Hero Button Design) */
.header-cta-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: #120A17;
    font-family: var(--font-ar-primary);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    padding: 6px 18px 6px 6px;
    border-radius: 999px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3), 0 0 16px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.35s ease;
    white-space: nowrap;
}

/* 1. Gold Circle Background for the Arrow (Expands to fill button on hover) */
.header-cta-btn::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5D38A 0%, #D49A3D 100%);
    z-index: 0;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
    pointer-events: none;
}

/* 2. On Hover: The gold circle expands and fills the entire button */
.header-cta-btn:hover::before {
    transform: translateY(-50%) scale(15);
}

.header-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: rgba(245, 211, 138, 0.95);
    box-shadow: 0 8px 26px rgba(212, 154, 61, 0.42), 0 0 22px rgba(245, 211, 138, 0.35);
    color: #0E0614;
}

.header-cta-btn .btn-icon {
    width: 28px;
    height: 28px;
}

.header-cta-btn .btn-icon svg {
    width: 13px;
    height: 13px;
}

.header-cta-btn:hover .btn-icon {
    transform: translateX(-3px);
}

.mobile-menu-trigger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #FFFFFF;
    padding: 6px;
}

/* ===================================================
   Mobile Navigation Drawer
   =================================================== */
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #140B1D;
    border-left: 1px solid var(--glass-border);
    padding: 28px 24px;
    z-index: 160;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
    transform: translateX(0);
}

.drawer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.drawer-heading {
    font-family: var(--font-ar-primary);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-gold-glow);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #FFF;
    cursor: pointer;
}

.drawer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
}

.drawer-nav-link {
    position: relative;
    display: inline-block;
    color: var(--color-text-dim);
    text-decoration: none;
    font-family: var(--font-ar-primary);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 6px 0;
    transition: color 0.2s;
}

.drawer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5px;
    background: #FFFFFF;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.25s ease;
}

.drawer-nav-link:hover {
    color: #FFFFFF;
}

.drawer-nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
}

.drawer-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.drawer-order-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 22px;
    font-family: var(--font-ar-primary) !important;
    font-size: 1.05rem;
    font-weight: 800;
    color: #120A17;
    background: #FFFFFF;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-fast);
}

.drawer-order-btn:hover {
    background: linear-gradient(135deg, #F5D38A 0%, #D49A3D 100%);
    color: #0E0614;
}

/* ===================================================
   Hero Center Bottom CTA (Compact, Pure White & Minimal)
   =================================================== */
.hero-center-cta {
    position: absolute;
    left: 50%;
    bottom: clamp(16px, 3.5vh, 28px);
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    pointer-events: auto;
    animation: ctaBlurEntrance 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
    will-change: transform, filter, opacity;
}

.hero-cta-tagline {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.72rem, 0.88vw, 0.84rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.08em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    white-space: nowrap;
    user-select: none;
}

.glass-cta-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    color: #120A17;
    font-family: var(--font-ar-primary);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 800;
    text-decoration: none;
    padding: 8px 26px 8px 8px;
    border-radius: 999px;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.35s ease;
}

/* 1. Gold Circle Background for the Arrow (Expands to fill button on hover) */
.glass-cta-btn::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5D38A 0%, #D49A3D 100%);
    z-index: 0;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
    pointer-events: none;
}

/* 2. On Hover: The gold circle expands and fills the entire button */
.glass-cta-btn:hover::before {
    transform: translateY(-50%) scale(18);
}

.glass-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(245, 211, 138, 0.95);
    box-shadow: 0 10px 32px rgba(212, 154, 61, 0.48), 0 0 26px rgba(245, 211, 138, 0.4);
    color: #0E0614;
}

.btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    outline: none;
    color: #120A17;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.btn-icon svg {
    display: block;
    margin: auto;
    flex-shrink: 0;
    width: 15px;
    height: 15px;
}

.glass-cta-btn:hover .btn-icon {
    transform: translateX(-3px);
}

/* Centered Section Bottom CTA Wrapper across all page sections */
.section-order-action {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: clamp(28px, 4vw, 42px);
    width: 100%;
}


/* ===================================================
   Intersecting Tickers Section (Dual Dynamic Marquee)
   =================================================== */
.intersecting-tickers-section {
    position: relative;
    z-index: 40; /* Above hero section */
    width: 100%;
    background-color: #FFFFFF;
    background-image: radial-gradient(circle at 50% 20%, rgba(242, 199, 121, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
    padding-top: 0; /* Zero padding to keep ribbons attached flush below hero */
    padding-bottom: 0; /* Zero bottom gap so details section connects seamlessly */
    margin-top: -12px; /* Hugs the bottom of the hero section directly */
    direction: ltr !important; /* Critical: forces uniform LTR coordinate system */
    overflow-x: clip; /* Prevents horizontal scrollbars while allowing full vertical visibility */
    overflow-y: visible;
}

.tickers-stage {
    position: relative;
    width: 100%;
    height: clamp(56px, 6.5vw, 70px);
    direction: ltr !important;
}

.ticker-ribbon {
    position: absolute;
    left: 50%;
    top: clamp(28px, 3.4vw, 42px); /* Raised snug against the hero section */
    width: 140vw;
    min-width: 1500px;
    height: clamp(34px, 3.2vw, 42px); /* Slim, refined luxury proportion */
    display: flex;
    align-items: center;
    overflow: hidden;
    user-select: none;
    cursor: default;
    direction: ltr !important;
    text-align: left !important;
    transform-origin: 75% 50%; /* Places the crossing intersection point at the far right (~85vw) */
    will-change: transform;
}

/* Ribbon 1: Negative tilt (-1.8deg), Velvet Dark Obsidian with Gold Accents */
.ribbon-tilt-negative {
    transform: translate(-50%, -50%) rotate(-1.8deg);
    z-index: 5; /* Black ribbon placed on TOP so it is never covered */
}

.ribbon-dark {
    background: #110817;
    border-top: 1px solid rgba(242, 199, 121, 0.4);
    border-bottom: 1px solid rgba(242, 199, 121, 0.4);
    box-shadow: 0 8px 24px rgba(17, 8, 23, 0.22), 0 2px 6px rgba(0, 0, 0, 0.12);
}

.ribbon-dark .ticker-text {
    color: #FFFFFF;
}

.ribbon-dark .ticker-star {
    color: var(--color-gold-glow);
    text-shadow: 0 0 10px rgba(242, 199, 121, 0.6);
}

/* Ribbon 2: Positive tilt (+1.8deg), Radiant Liquid Gold with Obsidian Typography */
.ribbon-tilt-positive {
    transform: translate(-50%, -50%) rotate(1.8deg);
    z-index: 3;
}

.ribbon-gold {
    background: linear-gradient(135deg, #FDF3DF 0%, #E8C176 35%, #C89033 70%, #F5DEAE 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 10px 28px rgba(190, 138, 48, 0.28), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.ribbon-gold .ticker-text {
    color: #120A17;
}

.ribbon-gold .ticker-star {
    color: #6C4610;
}

/* ---------------------------------------------------
   Infinite Continuous Loop Tracks (High Performance Engine)
   --------------------------------------------------- */
.ticker-track {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    width: max-content;
    direction: ltr !important; /* Critical for deterministic translation coordinates */
    will-change: transform;
    pointer-events: auto;
}

.ticker-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    direction: ltr !important;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: clamp(9px, 1.1vw, 15px);
    padding: 0 clamp(10px, 1.3vw, 18px);
    line-height: 1.25;
}

.ticker-text {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.74rem, 0.86vw, 0.88rem); /* Refined, smaller luxury typography */
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    direction: rtl; /* Each Arabic word renders in natural RTL order */
    unicode-bidi: embed;
}

.ticker-star {
    font-size: clamp(0.62rem, 0.72vw, 0.74rem);
    display: inline-block;
    transform: translateY(-1px);
}

/* ===================================================
   Fragrance Details Section (تفاصيل العطر)
   - Header & Narrative right-aligned
   - 2x2 luxury gallery grid underneath
   =================================================== */
.fragrance-details-section {
    position: relative;
    z-index: 10;
    background-color: #FFFFFF;
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(200, 150, 62, 0.05) 0%, transparent 45%),
        radial-gradient(circle at 15% 85%, rgba(18, 10, 23, 0.02) 0%, transparent 45%);
    padding: clamp(10px, 1.8vw, 22px) 0 clamp(75px, 9vw, 125px); /* Flush against tickers - zero empty gap */
    direction: rtl;
    text-align: right;
    overflow: hidden;
}

.details-container {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 3.6vw, 44px);
}

/* Right-Aligned Narrative Content */
.details-header-content {
    max-width: 1200px;
    margin-inline-start: 0;
    margin-inline-end: auto;
    text-align: right;
}

.details-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    background: linear-gradient(135deg, rgba(200, 150, 62, 0.12) 0%, rgba(200, 150, 62, 0.03) 100%);
    border: 1px solid rgba(200, 150, 62, 0.38);
    border-radius: 999px;
    color: #8E5F12;
    font-family: var(--font-ar-primary);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(200, 150, 62, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.details-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: badgeShimmer 4.5s infinite ease-in-out;
}

@keyframes badgeShimmer {
    0%, 60% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(200%);
    }
}

.details-badge .badge-star {
    color: #C8963E;
    font-size: 0.78rem;
    filter: none;
}

.details-main-title {
    font-family: var(--font-ar-primary);
    font-size: clamp(1.35rem, 1.9vw, 1.80rem);
    font-weight: 800;
    color: #120A17;
    line-height: 1.65; /* الارتفاع الطبيعي لمنع أي قص للحروف العربية من الأعلى والأسفل */
    letter-spacing: normal;
    margin-bottom: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    overflow: visible;
    text-shadow: none !important;
    filter: none !important;
}

.details-main-title .gold-gradient-text,
.features-main-title .gold-gradient-text,
.reviews-main-title .gold-gradient-text {
    background: linear-gradient(135deg, #B57922 0%, #D89C3A 45%, #945C10 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0.18em 0.05em;
    margin-top: -0.18em;
    margin-bottom: -0.18em;
    vertical-align: baseline;
    overflow: visible;
    filter: none !important;
    text-shadow: none !important;
}

.details-description {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.84rem, 0.92vw, 0.94rem);
    font-weight: 400;
    color: #554A5C;
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 540px; /* Reduced width so text forms an elegant, compact block */
}

/* ===================================================
   Staggered Blur Reveal Animation on Scroll
   =================================================== */
.blur-reveal-item {
    opacity: 0;
    filter: blur(14px);
    transform: translateY(22px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

.fragrance-details-section.is-revealed .blur-reveal-item {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

/* Sequential Stagger Delays (تتالي ظهور العناصر بالبلور) */
.fragrance-details-section.is-revealed .details-badge {
    transition-delay: 0.05s;
}

.fragrance-details-section.is-revealed .details-main-title {
    transition-delay: 0.18s;
}

.fragrance-details-section.is-revealed .details-description {
    transition-delay: 0.30s;
}

.fragrance-details-section.is-revealed .gallery-card:nth-child(1) {
    transition-delay: 0.44s;
}

.fragrance-details-section.is-revealed .gallery-card:nth-child(2) {
    transition-delay: 0.58s;
}

.fragrance-details-section.is-revealed .gallery-card:nth-child(3) {
    transition-delay: 0.72s;
}

.fragrance-details-section.is-revealed .gallery-card:nth-child(4) {
    transition-delay: 0.86s;
}

/* 4 Images Side-by-Side in One Row (جنب بعض في صف واحد) */
.details-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 32px);
    width: 100%;
}

.gallery-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
}

.gallery-img-wrapper {
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 18px; /* Dedicated breathing space so the shadow is clearly visible and detached from text */
}

.gallery-img {
    width: 100%;
    height: auto;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    /* Soft, elegant and balanced studio drop-shadow */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.16)) 
            drop-shadow(0 4px 6px rgba(18, 10, 24, 0.10));
    will-change: filter;
}

.gallery-card-caption {
    padding: 10px 6px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 4px;
    background: transparent;
    border: none;
}

.caption-tag {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.80rem, 0.90vw, 0.92rem);
    font-weight: 700;
    color: #120A17;
    text-align: center;
}

.caption-sub {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.68rem, 0.76vw, 0.78rem);
    color: #766B7C;
    line-height: 1.45;
    text-align: center;
}

/* ===================================================
   Offers CTA Section (قسم العروض الحصرية)
   - Full-width responsive banner ready for custom background image
   - Atmospheric luxury dark staging with golden accents
   - High-contrast responsive typography & glowing CTA button
   =================================================== */
.offers-cta-section {
    position: relative;
    width: 100%;
    min-height: clamp(500px, 58vh, 650px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(65px, 8vw, 110px) 0;
    margin: 0;
    overflow: hidden;
    direction: rtl;
    text-align: right;
    background-color: #0E0713;
    background-image: url('assets/cta.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Atmospheric Darkness & Contrast Overlays: Clear on Left (Bottles), Subtle Dark Gradient on Right (Text) */
.offers-cta-overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(to left, rgba(14, 7, 21, 0.78) 0%, rgba(14, 7, 21, 0.58) 38%, rgba(14, 7, 21, 0.12) 65%, transparent 100%),
        linear-gradient(180deg, rgba(14, 7, 21, 0.40) 0%, transparent 25%, transparent 75%, rgba(14, 7, 21, 0.50) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle Golden Radial Halo positioned to accentuate right-side content */
.offers-cta-glow {
    position: absolute;
    top: 50%;
    right: 3%;
    left: auto;
    transform: translateY(-50%);
    width: clamp(320px, 50vw, 680px);
    height: clamp(260px, 45vh, 480px);
    background: radial-gradient(ellipse at center, rgba(242, 199, 121, 0.14) 0%, rgba(200, 150, 62, 0.04) 50%, transparent 75%);
    filter: blur(55px);
    pointer-events: none;
    z-index: 2;
}

/* Content Container & Box - Aligned to Start from Right */
.offers-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.offers-content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    max-width: 500px;
    width: 100%;
    margin-inline-start: 0;
    margin-inline-end: auto;
}

/* Luxury Offer Badge */
.offers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: linear-gradient(135deg, rgba(20, 10, 28, 0.75) 0%, rgba(200, 150, 62, 0.15) 100%);
    border: 1px solid rgba(242, 199, 121, 0.40);
    border-radius: 999px;
    color: #F2C779;
    font-family: var(--font-ar-primary);
    font-size: clamp(0.74rem, 0.84vw, 0.86rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.offers-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShimmer 4.5s infinite ease-in-out;
}

.offers-badge .badge-star {
    color: #F2C779;
    font-size: 0.78rem;
    filter: none;
}

/* Offer Main Title */
.offers-main-title {
    font-family: var(--font-ar-primary);
    font-size: clamp(1.35rem, 1.9vw, 1.80rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.65;
    letter-spacing: normal;
    margin-bottom: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    overflow: visible;
    text-align: right;
    text-shadow: none !important;
    filter: none !important;
}

.gold-gradient-text {
    background: linear-gradient(135deg, #FFF0D0 0%, #F5CE86 35%, #E5B45B 65%, #C99438 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0.18em 0.05em;
    margin-top: -0.18em;
    margin-bottom: -0.18em;
    vertical-align: baseline;
    overflow: visible;
    filter: none !important;
    text-shadow: none !important;
}

/* Narrative Description */
.offers-description {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.84rem, 0.92vw, 0.94rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.8;
    max-width: 440px;
    margin: 0 0 clamp(16px, 2vw, 22px) 0;
    text-align: right;
    text-shadow: none !important;
}

/* Small Features Notes (النص الصغير البديل للمربعات) */
.offers-small-notes {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    max-width: 440px;
    margin-bottom: clamp(20px, 2.4vw, 28px);
    text-align: right;
}

.offers-small-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-ar-primary);
    font-size: clamp(0.68rem, 0.74vw, 0.75rem);
    font-weight: 500;
    color: #F5D38A;
    background: rgba(16, 8, 24, 0.65);
    border: 1px solid rgba(242, 199, 121, 0.28);
    padding: 3px 10px;
    border-radius: 999px;
    line-height: 1.4;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.40);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.offers-small-item:hover {
    background: rgba(242, 199, 121, 0.18);
    border-color: rgba(242, 199, 121, 0.50);
    transform: translateY(-2px);
}

.offers-small-item .small-star {
    color: #F2C779;
    font-size: 0.58rem;
}

/* Action Area: CTA Button & Guarantee Note */
.offers-action-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: flex-start;
}

.offers-cta-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    color: #120A17;
    font-family: var(--font-ar-primary);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 800;
    text-decoration: none;
    padding: 8px 26px 8px 8px;
    border-radius: 999px;
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    transition: transform 0.25s ease, box-shadow 0.35s ease, border-color 0.35s ease, color 0.35s ease;
    white-space: nowrap;
}

/* 1. Gold Circle Background for the Arrow (Expands to fill button on hover) */
.offers-cta-btn::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%) scale(1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5D38A 0%, #D49A3D 100%);
    z-index: 0;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
    pointer-events: none;
}

/* 2. On Hover: The gold circle expands and fills the entire button */
.offers-cta-btn:hover::before {
    transform: translateY(-50%) scale(18);
}

.offers-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(245, 211, 138, 0.95);
    box-shadow: 0 10px 32px rgba(212, 154, 61, 0.48), 0 0 26px rgba(245, 211, 138, 0.4);
    color: #0E0614;
}

.offers-cta-btn:active {
    transform: translateY(0) scale(0.98);
}

.offers-cta-btn .btn-text {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.offers-cta-btn .btn-icon {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    outline: none;
    color: #120A17;
    background: transparent;
    transition: transform var(--transition-fast);
}

.offers-cta-btn:hover .btn-icon {
    transform: translateX(-3px);
}


/* Sequential Stagger Delays for Offers Section (تتالي ظهور عناصر العرض بالبلور) */
.offers-cta-section.is-revealed .blur-reveal-item {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.offers-cta-section.is-revealed .offers-badge {
    transition-delay: 0.06s;
}

.offers-cta-section.is-revealed .offers-main-title {
    transition-delay: 0.18s;
}

.offers-cta-section.is-revealed .offers-description,
.offers-cta-section.is-revealed .offers-lead-desc {
    transition-delay: 0.30s;
}

.offers-cta-section.is-revealed .offers-small-notes {
    transition-delay: 0.42s;
}

.offers-cta-section.is-revealed .offers-action-wrapper {
    transition-delay: 0.54s;
}

/* ===================================================
   Perfume Features Section (مميزات العطر)
   =================================================== */
.perfume-features-section {
    position: relative;
    z-index: 2;
    background: #FFFFFF;
    padding: clamp(70px, 8vw, 110px) 0;
    direction: rtl;
    text-align: right;
    overflow: hidden;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: clamp(40px, 5vw, 65px);
}

.features-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 18px;
    background: linear-gradient(135deg, rgba(200, 150, 62, 0.12) 0%, rgba(200, 150, 62, 0.03) 100%);
    border: 1px solid rgba(200, 150, 62, 0.38);
    border-radius: 999px;
    color: #8E5F12;
    font-family: var(--font-ar-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(200, 150, 62, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.features-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation: badgeShimmer 4.5s infinite ease-in-out;
}

.features-badge .badge-star {
    color: #C8963E;
    font-size: 0.78rem;
}

.features-main-title {
    font-family: var(--font-ar-primary);
    font-size: clamp(1.35rem, 1.9vw, 1.80rem);
    font-weight: 800;
    color: #120A17;
    line-height: 1.65;
    letter-spacing: normal;
    margin-bottom: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    overflow: visible;
    text-shadow: none !important;
    filter: none !important;
}

.features-subtitle {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.84rem, 0.92vw, 0.94rem);
    font-weight: 400;
    color: #554A5C;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto;
}

/* Master Quality Pillars Grid */
.features-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 26px);
    width: 100%;
}

.pillar-card {
    background: #FFFFFF;
    border: 1px solid rgba(200, 150, 62, 0.20);
    border-radius: 18px;
    padding: clamp(22px, 2.2vw, 30px) clamp(16px, 1.8vw, 22px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    box-shadow: 0 4px 18px rgba(18, 10, 24, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F2C779, #C8963E);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(200, 150, 62, 0.14), 0 4px 12px rgba(18, 10, 24, 0.05);
    border-color: rgba(200, 150, 62, 0.45);
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(200, 150, 62, 0.16) 0%, rgba(200, 150, 62, 0.05) 100%);
    border: 1px solid rgba(200, 150, 62, 0.32);
    color: #9B6C1A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.pillar-card:hover .pillar-icon-box {
    transform: scale(1.08) rotate(3deg);
    background: linear-gradient(135deg, #F2C779 0%, #C8963E 100%);
    color: #120A17;
}

.pillar-title {
    font-family: var(--font-ar-primary);
    font-size: clamp(1rem, 1.12vw, 1.15rem);
    font-weight: 700;
    color: #120A17;
    margin-bottom: 8px;
    line-height: 1.4;
}

.pillar-desc {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.78rem, 0.86vw, 0.88rem);
    color: #63576A;
    line-height: 1.65;
}

/* 4 Perfumes Distinct Feature Cards */
.perfumes-features-showcase {
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 3vw, 36px);
    width: 100%;
}

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

.showcase-title {
    font-family: var(--font-ar-primary);
    font-size: clamp(1.25rem, 1.8vw, 1.60rem);
    font-weight: 800;
    color: #120A17;
    margin-bottom: 6px;
}

.showcase-sub {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.80rem, 0.9vw, 0.90rem);
    font-weight: 400;
    color: #796D80;
}

.perfume-detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 24px);
    width: 100%;
}

.perfume-feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(200, 150, 62, 0.18);
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(18, 10, 24, 0.04);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.35s ease;
}

.perfume-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 150, 62, 0.48);
    box-shadow: 0 16px 36px rgba(200, 150, 62, 0.15), 0 4px 12px rgba(18, 10, 24, 0.06);
}

.card-longevity-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(18, 10, 24, 0.65);
    color: var(--color-gold-glow, #F2C779);
    border: 1px solid rgba(242, 199, 121, 0.45);
    padding: 4px 12px;
    border-radius: 999px;
    font-family: var(--font-ar-primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.card-img-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.feature-bottle-img {
    max-height: 165px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(0, 0, 0, 0.16));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.perfume-feature-card:hover .feature-bottle-img {
    transform: scale(1.06) translateY(-4px);
    filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.22));
}

.card-body {
    padding: 16px 16px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.perfume-tag {
    display: inline-block;
    font-family: var(--font-ar-primary);
    font-size: 0.68rem;
    font-weight: 700;
    color: #9B6C1A;
    background: rgba(200, 150, 62, 0.09);
    padding: 3px 10px;
    border-radius: 6px;
    margin-bottom: 8px;
}

.perfume-card-title {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.95rem, 1.05vw, 1.08rem);
    font-weight: 800;
    color: #120A17;
    margin-bottom: 8px;
    line-height: 1.35;
}

.perfume-card-pitch {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.76rem, 0.82vw, 0.84rem);
    font-weight: 400;
    color: #554A5C;
    line-height: 1.65;
    margin-bottom: 14px;
    flex-grow: 1;
}

.notes-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.note-pill {
    font-family: var(--font-ar-primary);
    font-size: 0.68rem;
    color: #2D2035;
    background: #F4EFEB;
    border: 1px solid rgba(200, 150, 62, 0.18);
    padding: 3px 9px;
    border-radius: 999px;
    font-weight: 500;
}

.perfume-feature-meta {
    border-top: 1px dashed rgba(200, 150, 62, 0.22);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.70rem;
    font-family: var(--font-ar-primary);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ar-primary);
}

.meta-label {
    font-family: var(--font-ar-primary);
    color: #8C7F93;
    font-weight: 600;
}

.meta-val {
    font-family: var(--font-ar-primary);
    color: #120A17;
    font-weight: 700;
}

/* ===================================================
   Intersecting Tickers 2 (تقاطع أقصى الشمال)
   =================================================== */
.tickers-section-left {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -18px;
    margin-bottom: -18px;
    position: relative;
    z-index: 50; /* Placed cleanly on top of both adjacent sections */
    overflow-x: clip;
    overflow-y: visible;
    direction: ltr !important;
    pointer-events: none;
}

.tickers-stage-left {
    position: relative;
    width: 100%;
    height: clamp(68px, 6.2vw, 92px);
    overflow: visible;
    direction: ltr !important;
}

.tickers-section-left .ticker-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140vw;
    min-width: 1450px;
    height: 46px;
    /* Far left intersection point pivot */
    transform-origin: 15% 50%;
    overflow: hidden;
    pointer-events: auto;
}

.tickers-section-left .ribbon-tilt-negative-left {
    transform: translate(-50%, -50%) rotate(-1.8deg);
    z-index: 52; /* Sits on top */
    box-shadow: 0 10px 30px rgba(17, 8, 23, 0.40), 0 3px 10px rgba(0, 0, 0, 0.25);
}

.tickers-section-left .ribbon-tilt-positive-left {
    transform: translate(-50%, -50%) rotate(1.8deg);
    z-index: 51;
    box-shadow: 0 12px 34px rgba(190, 138, 48, 0.35), 0 4px 12px rgba(0, 0, 0, 0.20);
}

/* ===================================================
   Customer Reviews Section (آراء العملاء)
   =================================================== */
.customer-reviews-section {
    position: relative;
    z-index: 2;
    background-color: #FFFFFF;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(200, 150, 62, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(18, 10, 23, 0.02) 0%, transparent 40%);
    padding: clamp(75px, 9vw, 120px) 0;
    direction: rtl;
    text-align: right;
    overflow: hidden;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    gap: clamp(38px, 4.8vw, 55px);
}

.reviews-header {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 18px;
    background: linear-gradient(135deg, rgba(200, 150, 62, 0.12) 0%, rgba(200, 150, 62, 0.03) 100%);
    border: 1px solid rgba(200, 150, 62, 0.38);
    border-radius: 999px;
    color: #8E5F12;
    font-family: var(--font-ar-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(200, 150, 62, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.reviews-badge .badge-star {
    color: #C8963E;
    font-size: 0.78rem;
}

.reviews-main-title {
    font-family: var(--font-ar-primary);
    font-size: clamp(1.35rem, 1.9vw, 1.80rem);
    font-weight: 800;
    color: #120A17;
    line-height: 1.65;
    letter-spacing: normal;
    margin-bottom: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    overflow: visible;
    text-shadow: none !important;
    filter: none !important;
}

.reviews-subtitle {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.84rem, 0.92vw, 0.94rem);
    font-weight: 400;
    color: #554A5C;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 24px;
}

/* Reviews Metrics Bar */
.reviews-metrics-bar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
    background: linear-gradient(135deg, #170C21 0%, #0E0615 100%);
    border: 1px solid rgba(242, 199, 121, 0.35);
    border-radius: 18px;
    padding: 16px 28px;
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(18, 10, 24, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
}

.metric-score {
    font-family: var(--font-ar-primary);
    font-size: clamp(1.05rem, 1.25vw, 1.30rem);
    font-weight: 800;
    color: #F2C779;
    letter-spacing: 0.02em;
}

.metric-desc {
    font-family: var(--font-ar-primary);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.metric-sep {
    width: 1px;
    height: 32px;
    background: rgba(242, 199, 121, 0.22);
}

/* Reviews Cards Grid */
/* Reviews Infinite Marquee (High-Performance Seamless Engine) */
.reviews-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    direction: ltr !important; /* Critical: anchors track to left=0 in RTL document */
    text-align: left !important;
    /* Fade edges left & right */
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-marquee-track {
    display: flex;
    width: max-content;
    direction: ltr !important; /* Force LTR for deterministic coordinates */
    will-change: transform;
    pointer-events: auto;
    margin: 0 !important;
    padding: 0 !important;
}

.reviews-marquee-group {
    display: flex;
    gap: clamp(14px, 2vw, 22px);
    padding-right: clamp(14px, 2vw, 22px);
    flex-shrink: 0;
    direction: ltr !important;
}

.review-card {
    background: #FFFFFF;
    border: 1px solid rgba(200, 150, 62, 0.20);
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(18, 10, 24, 0.04);
    transition: border-color 0.35s ease;
    position: relative;
    width: clamp(280px, 28vw, 360px);
    flex-shrink: 0;
    direction: rtl !important; /* Keeps card strictly RTL */
    text-align: right !important;
}

.review-card:hover {
    border-color: rgba(200, 150, 62, 0.50);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 14px;
    direction: rtl !important;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ar-primary);
    direction: rtl !important;
    text-align: right !important;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F2C779 0%, #C8963E 100%);
    color: #120A17;
    font-family: var(--font-ar-primary);
    font-weight: 800;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(200, 150, 62, 0.3);
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    font-family: var(--font-ar-primary);
    text-align: right !important;
    align-items: flex-start !important;
}

.reviewer-name {
    font-family: var(--font-ar-primary);
    font-size: 0.88rem;
    font-weight: 700;
    color: #120A17;
    text-align: right !important;
}

.reviewer-location {
    font-family: var(--font-ar-primary);
    font-size: 0.70rem;
    font-weight: 400;
    color: #796D80;
    text-align: right !important;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(39, 174, 96, 0.10);
    border: 1px solid rgba(39, 174, 96, 0.30);
    color: #27AE60;
    font-family: var(--font-ar-primary);
    font-size: 0.64rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}

.review-rating-stars {
    color: #E5B45B;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 0;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.review-text {
    font-family: var(--font-ar-primary);
    font-size: clamp(0.78rem, 0.86vw, 0.88rem);
    font-weight: 400;
    color: #4A3E52;
    line-height: 1.75;
    margin-bottom: 0;
    flex-grow: 1;
    text-align: right !important;
    direction: rtl !important;
}

.review-perfume-tag {
    font-family: var(--font-ar-primary);
    font-size: 0.68rem;
    font-weight: 700;
    color: #9B6C1A;
    background: #F9F5F0;
    border: 1px solid rgba(200, 150, 62, 0.22);
    padding: 4px 10px;
    border-radius: 6px;
    text-align: center;
}

/* Reviews Trust Guarantee Banner */
.reviews-guarantee-box {
    background: linear-gradient(135deg, rgba(200, 150, 62, 0.12) 0%, rgba(200, 150, 62, 0.04) 100%);
    border: 1px solid rgba(200, 150, 62, 0.35);
    border-radius: 18px;
    padding: 18px 28px;
    width: 100%;
}

.guarantee-box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.guarantee-icon {
    font-size: 1.4rem;
    color: #C8963E;
}

.guarantee-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex-grow: 1;
}

.guarantee-headline {
    font-family: var(--font-ar-primary);
    font-size: 0.96rem;
    font-weight: 800;
    color: #120A17;
}

.guarantee-subline {
    font-family: var(--font-ar-primary);
    font-size: 0.82rem;
    font-weight: 400;
    color: #554A5C;
    line-height: 1.6;
}

.guarantee-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background: linear-gradient(135deg, #170C21 0%, #0E0615 100%);
    color: #F2C779;
    border: 1px solid rgba(242, 199, 121, 0.4);
    border-radius: 999px;
    font-family: var(--font-ar-primary) !important;
    font-weight: 700;
    font-size: 0.86rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.guarantee-btn:hover {
    background: linear-gradient(135deg, #F2C779 0%, #C8963E 100%);
    color: #120A17;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 150, 62, 0.35);
}

/* ===================================================
   Official Luxury Footer (الفوتر الملكي الرسمي)
   =================================================== */
.site-luxury-footer {
    position: relative;
    z-index: 10;
    background-color: #0B0510;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(200, 150, 62, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0E0615 0%, #07030A 100%);
    color: #FFFFFF;
    padding: 0 0 30px;
    direction: rtl;
    text-align: right;
    border-top: 1px solid rgba(242, 199, 121, 0.20);
}

.footer-top-accent {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -12px;
    margin-bottom: 40px;
}

.footer-top-accent .accent-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: #0E0615;
    border: 1px solid rgba(242, 199, 121, 0.4);
    border-radius: 50%;
    color: #F2C779;
    font-size: 0.72rem;
    box-shadow: 0 0 14px rgba(242, 199, 121, 0.3);
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: clamp(24px, 3.5vw, 48px);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(242, 199, 121, 0.25));
}

.footer-brand-desc {
    font-family: var(--font-ar-primary);
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.trust-pill {
    font-family: var(--font-ar-primary);
    font-size: 0.68rem;
    font-weight: 600;
    color: #F2C779;
    background: rgba(242, 199, 121, 0.08);
    border: 1px solid rgba(242, 199, 121, 0.25);
    padding: 3px 10px;
    border-radius: 999px;
}

.footer-col-title {
    font-family: var(--font-ar-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #F2C779, transparent);
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-link {
    font-family: var(--font-ar-primary);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-nav-link:hover {
    color: #F2C779;
    transform: translateX(-4px);
}

.footer-nav-link.highlighted {
    color: #F2C779;
    font-weight: 700;
}

.contact-prompt {
    font-family: var(--font-ar-primary);
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.70);
    margin-bottom: 14px;
    line-height: 1.6;
}

.contact-cards-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    font-family: var(--font-ar-primary);
    transition: all 0.3s ease;
}

.footer-contact-item.whatsapp-item {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.12) 0%, rgba(37, 211, 102, 0.03) 100%);
    border-color: rgba(37, 211, 102, 0.35);
}

.footer-contact-item.whatsapp-item:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.25) 0%, rgba(37, 211, 102, 0.10) 100%);
    border-color: rgba(37, 211, 102, 0.6);
    transform: translateX(-3px);
}

.footer-contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(242, 199, 121, 0.3);
}

.contact-icon {
    color: #F2C779;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-item .contact-icon {
    color: #25D366;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1px;
    font-family: var(--font-ar-primary);
}

.contact-label {
    font-family: var(--font-ar-primary);
    font-size: 0.66rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
}

.contact-val {
    font-family: var(--font-ar-primary);
    font-size: 0.82rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    font-family: var(--font-ar-primary);
    font-size: 0.76rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
}

.copyright-text strong {
    color: #F2C779;
}

.footer-bottom-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.delivery-pledge {
    font-family: var(--font-ar-primary);
    font-size: 0.74rem;
    font-weight: 600;
    color: rgba(242, 199, 121, 0.85);
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 199, 121, 0.12);
    border: 1px solid rgba(242, 199, 121, 0.35);
    color: #F2C779;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-ar-primary) !important;
    font-size: 0.74rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top-btn:hover {
    background: #F2C779;
    color: #120A17;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(242, 199, 121, 0.4);
}

/* ===================================================
   Sequential Stagger Delays for Features, Reviews & Footer
   (تتالي ظهور محتوى كل سكشن بالبلور بالتتابع الدقيق مثل سكشن التفاصيل)
   =================================================== */

/* 1. Perfume Features Section (المواصفات والمعايير الملكية) */
.perfume-features-section.is-revealed .blur-reveal-item {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.perfume-features-section.is-revealed .features-badge {
    transition-delay: 0.06s;
}

.perfume-features-section.is-revealed .features-main-title {
    transition-delay: 0.18s;
}

.perfume-features-section.is-revealed .features-subtitle {
    transition-delay: 0.30s;
}

.perfume-features-section.is-revealed .perfume-feature-card:nth-child(1) {
    transition-delay: 0.44s;
}

.perfume-features-section.is-revealed .perfume-feature-card:nth-child(2) {
    transition-delay: 0.58s;
}

.perfume-features-section.is-revealed .perfume-feature-card:nth-child(3) {
    transition-delay: 0.72s;
}

.perfume-features-section.is-revealed .perfume-feature-card:nth-child(4) {
    transition-delay: 0.86s;
}

/* 2. Customer Reviews Section (آراء وتقييمات العملاء) */
.customer-reviews-section.is-revealed .blur-reveal-item {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.customer-reviews-section.is-revealed .reviews-badge {
    transition-delay: 0.06s;
}

.customer-reviews-section.is-revealed .reviews-main-title {
    transition-delay: 0.18s;
}

.customer-reviews-section.is-revealed .reviews-subtitle {
    transition-delay: 0.30s;
}

.customer-reviews-section.is-revealed .reviews-metrics-bar {
    transition-delay: 0.42s;
}

.customer-reviews-section.is-revealed .review-card:nth-child(1) {
    transition-delay: 0.56s;
}

.customer-reviews-section.is-revealed .review-card:nth-child(2) {
    transition-delay: 0.70s;
}

.customer-reviews-section.is-revealed .review-card:nth-child(3) {
    transition-delay: 0.84s;
}

.customer-reviews-section.is-revealed .review-card:nth-child(4) {
    transition-delay: 0.98s;
}

.customer-reviews-section.is-revealed .reviews-guarantee-box {
    transition-delay: 1.12s;
}

/* 3. Luxury Site Footer (تذييل الصفحة الملكي) */
.site-luxury-footer.is-revealed .blur-reveal-item {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
}

.site-luxury-footer.is-revealed .footer-top-accent {
    transition-delay: 0.06s;
}

.site-luxury-footer.is-revealed .footer-col:nth-child(1) {
    transition-delay: 0.20s;
}

.site-luxury-footer.is-revealed .footer-col:nth-child(2) {
    transition-delay: 0.34s;
}

.site-luxury-footer.is-revealed .footer-col:nth-child(3) {
    transition-delay: 0.48s;
}

.site-luxury-footer.is-revealed .footer-col:nth-child(4) {
    transition-delay: 0.62s;
}

.site-luxury-footer.is-revealed .footer-bottom-bar {
    transition-delay: 0.76s;
}

/* ===================================================
   Floating Back-to-Top Action Button (زر عائم في اليمين للرفع للأعلى)
   =================================================== */
.floating-back-to-top {
    position: fixed;
    bottom: clamp(20px, 3.2vw, 36px);
    right: clamp(16px, 2.8vw, 32px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 12, 36, 0.92) 0%, rgba(12, 5, 18, 0.96) 100%);
    border: 1.5px solid rgba(242, 199, 121, 0.45);
    color: #F2C779;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.45),
        0 0 16px rgba(242, 199, 121, 0.20),
        inset 0 1px 0 rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(0.88);
    transition: 
        opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.35s,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
    outline: none;
    user-select: none;
}

.floating-back-to-top svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.floating-back-to-top:hover {
    background: linear-gradient(135deg, #F5CE86 0%, #E5B45B 45%, #C8963E 100%);
    color: #120A17;
    border-color: #F5CE86;
    transform: translateY(-4px) scale(1.06);
    box-shadow: 
        0 14px 32px rgba(229, 180, 91, 0.55),
        0 0 24px rgba(242, 199, 121, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.floating-back-to-top:hover svg {
    transform: translateY(-3px);
}

.floating-back-to-top:active {
    transform: translateY(0px) scale(0.92);
}

/* Tooltip Badge on Hover */
.back-to-top-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: rgba(18, 10, 23, 0.94);
    border: 1px solid rgba(242, 199, 121, 0.38);
    color: #F2C779;
    font-family: var(--font-ar-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.floating-back-to-top:hover .back-to-top-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

@media (hover: none) {
    .back-to-top-tooltip {
        display: none !important;
    }
}

/* ===================================================
   Zero Shadow on All Section Titles & Headings
   إلغاء أي شادو أو توهج لجميع عناوين الأقسام والنصوص التابعة لها
   =================================================== */
.details-main-title,
.offers-main-title,
.features-main-title,
.reviews-main-title,
.footer-col-title,
.perfume-card-title,
.pillar-title,
.details-main-title *,
.offers-main-title *,
.features-main-title *,
.reviews-main-title *,
.features-subtitle,
.reviews-subtitle,
.details-description,
.offers-description {
    text-shadow: none !important;
    filter: none !important;
}

/* ===================================================
   Responsive Media Queries
   =================================================== */

/* Laptops & Tablets */
@media (max-width: 1080px) {
    .hero-marquee-container {
        top: 50%;
    }

    .marquee-text {
        font-size: clamp(2.8rem, 7vw, 5.5rem);
    }

    .details-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }


    .perfume-detail-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .reviews-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

/* Tablets & Mobile */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh !important;
        height: 100svh !important;
        height: 100dvh !important;
        min-height: 100svh !important;
        min-height: 100dvh !important;
        max-height: 100svh !important;
        max-height: 100dvh !important;
        overflow: hidden !important;
    }

    .transparent-header {
        padding: 14px 0;
    }

    .header-nav {
        gap: 10px;
    }

    .header-cta-btn {
        padding: 5px 15px 5px 5px;
        font-size: 0.82rem;
        font-weight: 800;
        gap: 8px;
        display: inline-flex;
        align-items: center;
    }

    .header-cta-btn::before {
        width: 25px;
        height: 25px;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-cta-btn .btn-icon {
        width: 25px;
        height: 25px;
        left: 0 !important;
        right: auto !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .header-cta-btn .btn-icon svg {
        width: 12px;
        height: 12px;
        display: block;
        margin: auto;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    .brand-logo-img {
        height: 36px;
    }

    .hero-marquee-container {
        top: 30% !important;
        gap: 0px !important;
    }

    .marquee-row {
        padding: 8px 0 !important;
    }

    .marquee-group {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
        gap: clamp(1rem, 2.2vw, 2.2rem) !important;
        padding-right: clamp(1rem, 2.2vw, 2.2rem) !important;
    }

    /* Hero Mobile Background Layers (bak1mo & bak2mo) */
    .hero-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .hero-bottles-layer {
        inset: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-bottles-layer picture {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-bottles-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
    }

    .marquee-text {
        font-size: clamp(3.5rem, 15vw, 5.8rem) !important;
        font-weight: 900 !important;
        line-height: 1.35 !important;
        padding: 4px 0 !important;
        letter-spacing: 0.02em !important;
    }

    .marquee-text.ar,
    .marquee-row-2 .marquee-text {
        font-weight: 900 !important;
        color: rgba(255, 255, 255, 0.82) !important;
        -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.35);
    }

    .marquee-sep {
        font-size: clamp(1.8rem, 6vw, 2.8rem) !important;
        opacity: 0.8;
    }

    .hero-center-cta {
        bottom: 14px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
    }

    .hero-cta-tagline {
        font-size: 0.68rem;
    }

    .glass-cta-btn {
        padding: 7px 20px 7px 7px;
        font-size: 0.95rem;
        font-weight: 800;
        gap: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .glass-cta-btn::before {
        width: 32px;
        height: 32px;
        left: 6px;
        top: 50%;
        transform: translateY(-50%);
    }

    .glass-cta-btn .btn-icon {
        width: 32px;
        height: 32px;
        left: 0 !important;
        right: auto !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .glass-cta-btn .btn-icon svg {
        width: 14px;
        height: 14px;
        display: block;
        margin: auto;
        flex-shrink: 0;
    }

    /* Intersecting Tickers Mobile Adaptation */
    .intersecting-tickers-section {
        padding-top: 10px;
        padding-bottom: 0;
        margin-top: clamp(24px, 6vw, 38px);
    }

    .tickers-stage {
        height: clamp(52px, 11vw, 68px);
    }

    .ticker-ribbon {
        top: clamp(20px, 4.5vw, 28px);
        height: clamp(28px, 6vw, 34px);
        transform-origin: 75% 50%;
    }

    .ribbon-tilt-negative {
        transform: translate(-50%, -50%) rotate(-1.6deg);
        z-index: 5;
    }

    .ribbon-tilt-positive {
        transform: translate(-50%, -50%) rotate(1.6deg);
    }

    .ticker-text {
        font-size: 0.70rem;
    }

    .ticker-star {
        font-size: 0.58rem;
    }

    /* Intersecting Tickers Left Mobile */
    .tickers-section-left {
        z-index: 50;
        overflow-x: clip;
        overflow-y: visible;
    }

    .tickers-stage-left {
        height: clamp(52px, 11vw, 68px);
        overflow: visible;
    }

    .tickers-section-left .ticker-ribbon {
        top: clamp(20px, 4.5vw, 28px);
        height: clamp(28px, 6vw, 34px);
        transform-origin: 15% 50%;
    }

    /* Fragrance Details Section Mobile Adaptation */
    .fragrance-details-section {
        padding: 8px 0 50px;
    }

    .details-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .details-main-title,
    .offers-main-title,
    .features-main-title,
    .reviews-main-title {
        font-size: 1.25rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }

    .details-description,
    .offers-description,
    .features-subtitle,
    .reviews-subtitle {
        font-size: 0.82rem;
        line-height: 1.7;
    }

    /* Offers CTA Section Mobile Adaptation */
    .offers-cta-section {
        min-height: 440px;
        padding: clamp(50px, 12vw, 75px) 0;
        background-position: 28% center;
    }

    .offers-cta-overlay {
        background: 
            linear-gradient(180deg, rgba(14, 7, 21, 0.72) 0%, rgba(14, 7, 21, 0.48) 50%, rgba(14, 7, 21, 0.76) 100%),
            linear-gradient(to left, rgba(14, 7, 21, 0.82) 0%, rgba(14, 7, 21, 0.45) 100%);
    }

    .offers-description {
        margin-bottom: 22px;
    }

    .offers-cta-btn {
        padding: 7px 20px 7px 7px;
        font-size: 0.95rem;
        font-weight: 800;
        gap: 10px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .offers-cta-btn::before {
        width: 32px;
        height: 32px;
        left: 6px;
        top: 50%;
        transform: translateY(-50%);
    }

    .offers-cta-btn .btn-icon {
        width: 32px;
        height: 32px;
        left: 0 !important;
        right: auto !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .offers-cta-btn .btn-icon svg {
        width: 14px;
        height: 14px;
        display: block;
        margin: auto;
        flex-shrink: 0;
    }


    /* Offers Small Notes Mobile */
    .offers-small-notes {
        gap: 6px;
        margin-bottom: 20px;
    }

    .offers-small-item {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .perfume-detail-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .card-img-wrap {
        height: auto !important;
        aspect-ratio: 4 / 3 !important;
        border-radius: 16px 16px 0 0;
    }

    /* Reviews Mobile */
    .reviews-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Reviews Mobile Metrics Bar: Sleek & Compact 2x2 Luxury Layout */
    .reviews-metrics-bar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 12px;
        padding: 12px 14px;
        max-width: 360px;
        width: 100%;
        margin: 0 auto 16px;
        border-radius: 14px;
        background: rgba(18, 10, 24, 0.94);
        border: 1px solid rgba(242, 199, 121, 0.28);
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
    }

    .metric-sep {
        display: none !important;
    }

    .metric-item {
        padding: 6px 4px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(242, 199, 121, 0.08);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2px;
    }

    .metric-score {
        font-size: 0.88rem;
        font-weight: 800;
        color: #F2C779;
        line-height: 1.25;
    }

    .metric-desc {
        font-size: 0.64rem;
        color: rgba(255, 255, 255, 0.72);
        white-space: nowrap;
        line-height: 1.2;
    }

    .guarantee-box-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .guarantee-headline {
        font-size: 0.92rem;
    }

    .guarantee-subline {
        font-size: 0.76rem;
    }

    .guarantee-btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        font-size: 0.82rem;
        padding: 9px 20px;
    }

    /* Footer Mobile */
    .footer-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .footer-bottom-actions {
        flex-direction: column;
        gap: 12px;
    }

    .floating-back-to-top {
        width: 44px;
        height: 44px;
        bottom: 18px;
        right: 16px;
    }

    .floating-back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* Medium & Small Mobile Screens (<= 520px) */
@media (max-width: 520px) {
    .fragrance-details-section {
        padding: 4px 0 40px;
    }

    .details-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-img-wrapper {
        padding-bottom: 6px;
    }

    .gallery-img {
        max-height: 155px;
        object-fit: contain;
    }

    .caption-tag {
        font-size: 0.72rem;
    }

    .caption-sub {
        font-size: 0.60rem;
    }

    .offers-cta-section {
        min-height: 360px;
        padding: 38px 0;
    }

    .details-main-title,
    .offers-main-title,
    .features-main-title,
    .reviews-main-title {
        font-size: 1.15rem;
        line-height: 1.55;
    }

    .details-description,
    .offers-description,
    .features-subtitle,
    .reviews-subtitle {
        font-size: 0.78rem;
        line-height: 1.65;
    }

    .perfume-features-section {
        padding: 40px 0;
    }

    .perfume-detail-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .perfume-feature-card {
        padding: 0;
        border-radius: 16px;
    }

    .card-img-wrap {
        height: auto !important;
        aspect-ratio: 4 / 3 !important;
        margin-bottom: 0;
        border-radius: 16px 16px 0 0;
    }

    .card-body {
        padding: 16px 14px;
    }

    .feature-bottle-img {
        max-height: 135px;
    }

    .card-longevity-badge {
        font-size: 0.62rem;
        padding: 3px 8px;
        top: 10px;
        left: 10px;
    }

    .perfume-tag {
        font-size: 0.62rem;
    }

    .perfume-card-title {
        font-size: 0.92rem;
    }

    .perfume-card-pitch {
        font-size: 0.75rem;
    }

    .note-pill {
        font-size: 0.64rem;
        padding: 2px 7px;
    }

    .perfume-feature-meta {
        font-size: 0.68rem;
    }

    .customer-reviews-section {
        padding: 40px 0;
    }

    .reviews-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .review-card {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .review-text {
        font-size: 0.78rem;
        line-height: 1.65;
    }

    .reviewer-avatar {
        width: 34px;
        height: 34px;
        font-size: 0.74rem;
    }

    .reviewer-name {
        font-size: 0.82rem;
    }

    .reviewer-city {
        font-size: 0.68rem;
    }

    .review-badge {
        font-size: 0.60rem;
        padding: 2px 6px;
    }

    .footer-columns-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-logo-img {
        height: 38px;
    }

    .footer-col-title {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

/* Ultra-Compact Mobile Screens (<= 380px) */
@media (max-width: 380px) {
    .brand-logo-img {
        height: 28px;
    }

    .hero-marquee-container {
        top: 28% !important;
        gap: 0px !important;
    }

    .marquee-text {
        font-size: clamp(3rem, 13.5vw, 4.2rem) !important;
        font-weight: 900 !important;
        line-height: 1.35 !important;
        padding: 4px 0 !important;
    }

    .header-cta-btn {
        padding: 4px 12px 4px 4px;
        font-size: 0.76rem;
        font-weight: 750;
        gap: 6px;
        display: inline-flex;
        align-items: center;
    }

    .header-cta-btn::before {
        width: 22px;
        height: 22px;
        left: 4px;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-cta-btn .btn-icon {
        width: 22px;
        height: 22px;
        left: 0 !important;
        right: auto !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .header-cta-btn .btn-icon svg {
        width: 11px;
        height: 11px;
        display: block;
        margin: auto;
    }

    .details-main-title,
    .offers-main-title,
    .features-main-title,
    .reviews-main-title {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .details-description,
    .offers-description,
    .features-subtitle,
    .reviews-subtitle {
        font-size: 0.74rem;
        line-height: 1.6;
    }

    .glass-cta-btn,
    .offers-cta-btn {
        padding: 6px 18px 6px 6px;
        font-size: 0.90rem;
        font-weight: 800;
        gap: 9px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .glass-cta-btn::before,
    .offers-cta-btn::before {
        width: 30px;
        height: 30px;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
    }

    .glass-cta-btn .btn-icon,
    .offers-cta-btn .btn-icon {
        width: 30px;
        height: 30px;
        left: 0 !important;
        right: auto !important;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .glass-cta-btn .btn-icon svg,
    .offers-cta-btn .btn-icon svg {
        width: 13px;
        height: 13px;
        display: block;
        margin: auto;
        flex-shrink: 0;
    }

    .details-gallery-grid {
        gap: 8px;
    }

    .gallery-img {
        max-height: 135px;
    }

    .caption-tag {
        font-size: 0.68rem;
    }

    .caption-sub {
        font-size: 0.56rem;
    }

    .reviews-metrics-bar {
        max-width: 320px;
        gap: 6px 10px;
        padding: 10px 12px;
        border-radius: 12px;
    }

    .metric-item {
        padding: 5px 3px;
        border-radius: 8px;
    }

    .metric-score {
        font-size: 0.82rem;
    }

    .metric-desc {
        font-size: 0.58rem;
    }

    .floating-back-to-top {
        width: 38px;
        height: 38px;
        bottom: 12px;
        right: 12px;
    }

    .floating-back-to-top svg {
        width: 15px;
        height: 15px;
    }
}

/* ===================================================
   Luxury Order Popup Modal (استمارة طلب عطور حامل المسك - ثيم أبيض مدمج بدون سكرول)
   =================================================== */
.order-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(14, 8, 20, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(8px, 2vw, 16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s ease;
    direction: rtl;
}

.order-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.order-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 820px;
    max-height: 96vh;
    max-height: 96dvh;
    background: #FFFFFF;
    border: 1.5px solid #E8D7B8;
    border-radius: 20px;
    box-shadow: 
        0 24px 60px rgba(0, 0, 0, 0.28), 
        0 6px 24px rgba(200, 150, 62, 0.16);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: scale(0.96) translateY(12px);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    color: #1A1622;
}

.order-modal-backdrop.is-open .order-modal-dialog {
    transform: scale(1) translateY(0);
}

/* Elegant Scrollbar for Modal (Safety Fallback) */
.order-modal-dialog::-webkit-scrollbar {
    width: 5px;
}
.order-modal-dialog::-webkit-scrollbar-track {
    background: #F8F5F0;
    border-radius: 10px;
}
.order-modal-dialog::-webkit-scrollbar-thumb {
    background: #D8C7B0;
    border-radius: 10px;
}
.order-modal-dialog::-webkit-scrollbar-thumb:hover {
    background: #BFA785;
}

/* Close Modal Button */
.modal-close-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 30;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F4F1EA;
    border: 1px solid #E2D9CC;
    color: #685E75;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s ease;
    outline: none;
}

.modal-close-btn:hover {
    background: #C8963E;
    color: #FFFFFF;
    border-color: #C8963E;
    transform: rotate(90deg) scale(1.06);
}

/* Modal Content Container */
.order-modal-content {
    padding: 14px 18px 16px;
    color: #1A1622;
    font-family: var(--font-ar-primary);
}

/* Compact Header */
.order-modal-header {
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #F0ECE4;
}

.order-modal-badge {
    display: inline-block;
    padding: 2px 10px;
    background: rgba(200, 150, 62, 0.12);
    border: 1px solid rgba(200, 150, 62, 0.35);
    border-radius: 999px;
    color: #9C6918;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 3px;
}

.order-modal-title {
    font-size: clamp(1.10rem, 1.7vw, 1.30rem);
    font-weight: 800;
    color: #14081E;
    line-height: 1.3;
    margin: 0;
}

/* 2-Column Grid Layout (Prevents Vertical Scrolling) */
.order-modal-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 14px;
    align-items: start;
}

/* Package Options Grid */
.package-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.package-card {
    position: relative;
    cursor: pointer;
    user-select: none;
    border-radius: 12px;
    background: #FAF8F5;
    border: 1.5px solid #EAE3D8;
    transition: all 0.22s ease;
    display: block;
}

.package-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-card-inner {
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.package-card-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    margin-bottom: 4px;
}

.package-badge {
    padding: 2px 6px;
    border-radius: 4px;
    background: #FFF2D6;
    border: 1px solid #E6B96E;
    color: #94600E;
    font-size: 0.58rem;
    font-weight: 700;
    white-space: nowrap;
}

.package-badge.badge-alt {
    background: #EFECE6;
    border-color: #DDD6CA;
    color: #665E50;
}

.package-title {
    font-size: 0.76rem;
    font-weight: 800;
    color: #1A1622;
    margin-bottom: 2px;
    line-height: 1.25;
}

.package-desc {
    font-size: 0.62rem;
    color: #726B7D;
    line-height: 1.35;
    display: block;
}

.package-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}

.price-current {
    color: #B57C1E;
    font-size: 0.98rem;
    font-weight: 900;
}

.price-current small {
    font-size: 0.65rem;
    font-weight: 700;
}

.price-old {
    color: #A39D93;
    text-decoration: line-through;
    font-size: 0.68rem;
}

.package-card:hover {
    background: #FFFDF9;
    border-color: #C8963E;
}

.package-card.active {
    background: #FFFBF2;
    border-color: #C8963E;
    box-shadow: 0 0 10px rgba(200, 150, 62, 0.20);
}

/* Sub-selector for Individual Perfumes */
.single-perfumes-picker {
    background: #FAF8F5;
    border: 1px dashed #C8963E;
    border-radius: 12px;
    padding: 7px 8px;
    margin-bottom: 8px;
    animation: fadeIn 0.25s ease;
}

.picker-instruction {
    display: block;
    font-size: 0.68rem;
    color: #9C6918;
    font-weight: 700;
    margin-bottom: 5px;
}

.picker-sub {
    font-style: italic;
    font-weight: 500;
    color: #A87E3A;
    font-size: 0.62rem;
}

.picker-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
    gap: 6px;
}

.picker-count-badge {
    font-size: 0.6rem;
    font-weight: 800;
    color: #9C6918;
    background: rgba(200, 150, 62, 0.12);
    border: 1px solid rgba(200, 150, 62, 0.3);
    border-radius: 50px;
    padding: 2px 8px;
    white-space: nowrap;
    transition: background 0.2s;
}

.picker-warning {
    display: block;
    font-size: 0.6rem;
    color: #B45309;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 6px;
    padding: 3px 8px;
    margin-bottom: 6px;
}

.single-perfumes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.perfume-pick-card {
    position: relative;
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid #E2D9CC;
    border-radius: 8px;
    padding: 5px 6px;
    transition: all 0.2s ease;
    user-select: none;
    display: block;
}

.perfume-pick-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.perfume-pick-radio {
    position: absolute;
    opacity: 0;
}

.perfume-pick-body {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.perfume-pick-thumb {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #E8E0D2;
    flex-shrink: 0;
}

.perfume-pick-name {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1A1622;
    display: block;
    line-height: 1.2;
}

.perfume-pick-notes {
    font-size: 0.56rem;
    color: #857E8F;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 95px;
    line-height: 1.2;
}

.perfume-pick-card:hover {
    border-color: #C8963E;
}

.perfume-pick-card.active {
    border-color: #C8963E;
    background: #FFFDF8;
    box-shadow: 0 0 8px rgba(200, 150, 62, 0.22);
}

/* Checkmark icon shown when active */
.pick-check-icon {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 16px;
    height: 16px;
    background: #C8963E;
    color: #fff;
    border-radius: 50%;
    font-size: 0.55rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    line-height: 1;
}

.perfume-pick-card.active .pick-check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Disabled state when max picks reached */
.perfume-pick-card.pick-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* Dual Row: Quantity & Gift Wrap */
.form-row-dual {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.form-group-qty {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.form-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #383240;
}

.qty-control-box {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid #E0D7C8;
    border-radius: 10px;
    height: 35px;
    overflow: hidden;
}

.qty-btn {
    width: 30px;
    height: 100%;
    background: #F6F3EC;
    border: none;
    color: #9C6918;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
    user-select: none;
}

.qty-btn:hover {
    background: #C8963E;
    color: #FFFFFF;
}

.qty-input {
    flex: 1;
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    text-align: center;
    font-family: var(--font-ar-primary);
    font-size: 0.86rem;
    font-weight: 800;
    color: #1A1622;
    outline: none;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Gift Wrap Option */
.form-group-gift {
    display: flex;
    align-items: flex-end;
}

.gift-wrap-label {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 35px;
    padding: 0 8px;
    background: #FAF8F5;
    border: 1.5px solid #EAE3D8;
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.gift-wrap-checkbox {
    position: absolute;
    opacity: 0;
}

.gift-wrap-custom {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #C8963E;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.gift-wrap-checkbox:checked + .gift-wrap-custom {
    background: #C8963E;
    border-color: #C8963E;
}

.gift-wrap-checkbox:checked + .gift-wrap-custom::after {
    content: '✓';
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 900;
}

.gift-wrap-label:has(.gift-wrap-checkbox:checked) {
    border-color: #C8963E;
    background: #FFFBF2;
}

.gift-wrap-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.gift-title {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1A1622;
}

.gift-sub {
    font-size: 0.58rem;
    color: #726B7D;
}

.gift-sub strong {
    color: #B57C1E;
}

/* Order Invoice Summary Card */
.order-summary-card {
    background: #FAF8F5;
    border: 1px solid #EAE3D8;
    border-radius: 12px;
    padding: 7px 10px;
    margin-top: 2px;
}

.summary-rows-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.70rem;
    color: #554D60;
}

.highlight-delivery {
    color: #9C6918;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: #E8E1D5;
    margin: 3px 0;
}

.total-row {
    font-size: 0.80rem;
    font-weight: 800;
    color: #1A1622;
}

.total-val {
    color: #B57C1E;
    font-size: 0.96rem;
    font-weight: 900;
}

/* Inputs Stack (Left Column) */
.form-inputs-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.input-field-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.field-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #383240;
}

.req-star {
    color: #D93838;
    font-weight: bold;
}

.form-input {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    background: #FFFFFF;
    border: 1.5px solid #DCD5CA;
    border-radius: 9px;
    font-family: var(--font-ar-primary);
    font-size: 0.78rem;
    color: #1A1622;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
    color: #A39DAE;
    font-size: 0.70rem;
}

.form-input:focus {
    border-color: #C8963E;
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.phone-input-group {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 1.5px solid #DCD5CA;
    border-radius: 9px;
    height: 35px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-input-group:focus-within {
    border-color: #C8963E;
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

.country-badge {
    padding: 0 8px;
    font-size: 0.68rem;
    font-weight: 700;
    color: #9C6918;
    background: #FAF5EA;
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 1px solid #EAE3D8;
    white-space: nowrap;
    direction: ltr;
}

.phone-input {
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    height: 100% !important;
    box-shadow: none !important;
}

.field-error-msg {
    display: none;
    font-size: 0.58rem;
    color: #D93838;
    font-weight: 600;
}

.input-field-wrap.has-error .form-input,
.input-field-wrap.has-error .phone-input-group,
.input-field-wrap.has-error .form-select {
    border-color: #D93838 !important;
    background: #FFF8F8 !important;
}

.input-field-wrap.has-error .field-error-msg {
    display: block;
}

.input-field-wrap.has-error {
    animation: fieldShake 0.35s ease;
}

@keyframes fieldShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

.card-qty-sub {
    font-size: 0.65rem;
    font-weight: 700;
    color: #9C6918;
    margin-right: 3px;
    opacity: 0.9;
}

.order-submit-btn.is-loading {
    opacity: 0.85;
    pointer-events: none;
    cursor: wait;
}

/* Styled Select Dropdown */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.58rem;
    color: #9C6918;
    pointer-events: none;
}

.form-select {
    width: 100%;
    height: 35px;
    padding: 0 10px;
    background: #FFFFFF;
    border: 1.5px solid #DCD5CA;
    border-radius: 9px;
    font-family: var(--font-ar-primary);
    font-size: 0.78rem;
    color: #1A1622;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-select option {
    background: #FFFFFF;
    color: #1A1622;
}

.form-select:focus {
    border-color: #C8963E;
    box-shadow: 0 0 0 3px rgba(200, 150, 62, 0.15);
}

/* Submit Action Button */
.form-submit-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: auto;
}

.order-submit-btn {
    width: 100%;
    height: 48px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F2C779 0%, #D49A3D 50%, #B88026 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #120A17;
    font-family: var(--font-ar-primary);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(200, 150, 62, 0.42);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    outline: none;
}

.order-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(200, 150, 62, 0.48);
    filter: brightness(1.04);
}

.order-submit-btn:active {
    transform: translateY(0);
}

.order-guarantee-tag {
    text-align: center;
    font-size: 0.60rem;
    color: #726B7D;
    line-height: 1.3;
}

/* Order Success View (White & Clean) */
.order-success-view {
    padding: 24px 16px;
    text-align: center;
    animation: fadeIn 0.35s ease;
}

.success-icon-wrap {
    margin-bottom: 12px;
}

.success-check-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.success-title {
    font-size: 1.20rem;
    font-weight: 800;
    color: #14081E;
    margin-bottom: 6px;
}

.success-subtitle {
    font-size: 0.74rem;
    color: #5E5768;
    max-width: 420px;
    margin: 0 auto 14px;
    line-height: 1.5;
}

.success-receipt-card {
    background: #FAF8F5;
    border: 1px solid #EAE3D8;
    border-radius: 12px;
    padding: 12px 14px;
    text-align: right;
    margin-bottom: 16px;
    font-size: 0.74rem;
    line-height: 1.7;
    color: #2D2738;
}

.success-receipt-card strong {
    color: #B57C1E;
}

.success-actions-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
}

.success-confirm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, #F2C779 0%, #D49A3D 50%, #B88026 100%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #120A17;
    font-family: var(--font-ar-primary);
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(200, 150, 62, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.success-confirm-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(200, 150, 62, 0.48);
    filter: brightness(1.04);
}

.success-close-btn {
    background: transparent;
    border: 1px solid #DCD5CA;
    color: #685E75;
    padding: 8px;
    border-radius: 999px;
    font-family: var(--font-ar-primary);
    font-size: 0.76rem;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.success-close-btn:hover {
    background: #F4F0E8;
    color: #1A1622;
}

/* Responsive Rules for Mobile (No-Scroll Guaranteed) */
@media (max-width: 768px) {
    .order-modal-backdrop {
        padding: 6px;
        align-items: center;
    }

    .order-modal-dialog {
        max-width: 460px;
        border-radius: 16px;
        max-height: 98vh;
        max-height: 98dvh;
    }

    .order-modal-content {
        padding: 10px 12px 12px;
    }

    .order-modal-header {
        margin-bottom: 6px;
        padding-bottom: 4px;
    }

    .order-modal-badge {
        font-size: 0.60rem;
        padding: 1px 8px;
        margin-bottom: 2px;
    }

    .order-modal-title {
        font-size: 1rem;
    }

    .order-modal-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .package-options-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        margin-bottom: 5px;
    }

    .package-card-inner {
        padding: 5px 7px;
    }

    .package-title {
        font-size: 0.68rem;
    }

    .package-desc {
        display: none; /* Hide long description to preserve viewport height */
    }

    .price-current {
        font-size: 0.88rem;
    }

    .price-old {
        font-size: 0.62rem;
    }

    .single-perfumes-picker {
        padding: 5px;
        margin-bottom: 5px;
    }

    .single-perfumes-grid {
        gap: 4px;
    }

    .perfume-pick-card {
        padding: 3px 5px;
    }

    .perfume-pick-thumb {
        width: 22px;
        height: 22px;
    }

    .perfume-pick-name {
        font-size: 0.64rem;
    }

    .perfume-pick-notes {
        display: none; /* Clean and compact */
    }

    .form-row-dual {
        grid-template-columns: 90px 1fr;
        gap: 6px;
        margin-bottom: 5px;
    }

    .qty-control-box,
    .gift-wrap-label {
        height: 30px;
    }

    .qty-btn {
        width: 26px;
        font-size: 0.95rem;
    }

    .qty-input {
        font-size: 0.78rem;
    }

    .gift-title {
        font-size: 0.62rem;
    }

    .gift-sub {
        display: none;
    }

    /* 2x2 Grid for Customer Inputs on Mobile to Save Vertical Space */
    .form-inputs-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 6px;
        margin-bottom: 6px;
    }

    .form-input,
    .phone-input-group,
    .form-select {
        height: 30px;
        font-size: 0.74rem;
        padding: 0 6px;
    }

    .field-label {
        font-size: 0.62rem;
    }

    .order-summary-card {
        padding: 5px 8px;
        margin-top: 2px;
    }

    .summary-row {
        font-size: 0.64rem;
    }

    .total-row {
        font-size: 0.72rem;
    }

    .total-val {
        font-size: 0.85rem;
    }

    .order-submit-btn {
        height: 44px;
        font-size: 0.94rem;
    }

    .modal-close-btn {
        top: 6px;
        left: 6px;
        width: 26px;
        height: 26px;
        font-size: 16px;
    }
}



