/* ==========================================================================
   عطر حامل المسك - Hamel Al Mesk | Luxury Perfume Landing Page Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES & COLOR PALETTE
   -------------------------------------------------------------------------- */
:root {
    /* Primary Colors */
    --color-bg-dark: #070709;
    --color-bg-burgundy: #200408;
    --color-bg-burgundy-deep: #140205;
    --color-burgundy-accent: #6b0c1b;
    --color-crimson: #a3122a;

    /* Gold Metallic Palette */
    --color-gold-light: #fbe6a2;
    --color-gold-main: #d4af37;
    --color-gold-dark: #996515;
    --color-gold-rich: #e5c07b;
    --gradient-gold: linear-gradient(135deg, #fbe6a2 0%, #d4af37 50%, #aa771c 100%);
    --gradient-gold-reverse: linear-gradient(135deg, #aa771c 0%, #d4af37 50%, #fbe6a2 100%);
    --gradient-gold-text: linear-gradient(135deg, #ffffff 0%, #fbe6a2 30%, #d4af37 70%, #aa771c 100%);
    
    /* Dark Luxury Gradients */
    --gradient-card: linear-gradient(145deg, rgba(32, 4, 8, 0.7) 0%, rgba(10, 8, 12, 0.85) 100%);
    --gradient-btn: linear-gradient(135deg, #d4af37 0%, #f3e5ab 40%, #c59b27 70%, #8c5b0f 100%);

    /* Typography Colors */
    --text-pure: #ffffff;
    --text-main: #f5eff1;
    --text-muted: #c8b9bd;
    --text-dim: #8e7c81;

    /* Glassmorphism & Borders */
    --glass-bg: rgba(18, 5, 8, 0.55);
    --glass-border: rgba(212, 175, 55, 0.22);
    --glass-border-hover: rgba(212, 175, 55, 0.55);
    --glass-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    --gold-glow: 0 0 25px rgba(212, 175, 55, 0.35);

    /* Fonts (Rubik Modern Family) */
    --font-primary: 'Rubik', sans-serif;
    --font-heading: 'Rubik', sans-serif;
    --font-serif: 'Rubik', sans-serif;
    --font-en: 'Cinzel', serif;

    /* Transitions */
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & GLOBAL STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================================================
   HIDE SCROLLBAR GLOBALLY (إخفاء شريط السكرول تماماً)
   ========================================================================== */
html, body {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE & Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
}

/* Lenis Smooth Scroll Styles */
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;
}

html {
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--text-main);
    font-family: var(--font-primary);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button {
    border: none;
    background: none;
    font-family: inherit;
    cursor: pointer;
}

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

/* --------------------------------------------------------------------------
   2. LUXURY PRELOADER (لودر فاخر وسلس وسريع)
   -------------------------------------------------------------------------- */
.luxury-preloader {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #1e0307 0%, #070709 85%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.65s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    filter: blur(14px) scale(1.04);
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    text-align: center;
}

.preloader-logo-wrap {
    position: relative;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 16px rgba(212, 175, 55, 0.45));
    animation: preloaderPulse 1.8s infinite ease-in-out;
}

.preloader-progress-container {
    width: 170px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #aa771c 0%, #d4af37 50%, #fff2b2 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.85);
    transition: width 0.1s ease-out;
}

.preloader-tagline {
    font-family: var(--font-en);
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 3.5px;
    animation: preloaderTextFade 1.8s infinite ease-in-out;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.7)); }
}

@keyframes preloaderTextFade {
    0%, 100% { opacity: 0.55; }
    50% { opacity: 0.95; }
}

/* --------------------------------------------------------------------------
   3. NAVIGATION HEADER (الهيدر الشفاف)
   -------------------------------------------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2500;
    padding: 1rem 0;
    background: linear-gradient(180deg, rgba(7, 7, 9, 0.75) 0%, rgba(7, 7, 9, 0.1) 60%, transparent 100%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: none;
    box-shadow: none;
    opacity: 0;
    transform: translate3d(0, -20px, 0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease,
                backdrop-filter 0.35s ease,
                -webkit-backdrop-filter 0.35s ease,
                border-bottom 0.35s ease,
                box-shadow 0.35s ease,
                padding 0.35s ease;
    will-change: transform, opacity;
}

body.loaded .main-header {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.main-header.scrolled {
    padding: 0.75rem 0;
    background: rgba(7, 7, 9, 0.65);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.header-container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo */
.brand-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo-img {
    height: 46px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.35));
    transition: var(--transition-smooth);
}

.brand-logo:hover .logo-img {
    transform: scale(1.04);
    filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.65));
}

/* Nav Menu (Positioned directly beside Header CTA) */
.nav-menu {
    display: flex;
    align-items: center;
    margin-right: auto;
    margin-left: 2.2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 0.3rem 0.2rem;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.25s ease;
    transform-origin: center;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-light);
    transform: scale(1.14);
}

/* Header CTA Button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.55rem 1.35rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-cta .btn-text {
    position: relative;
    z-index: 2;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: inherit;
}

.btn-header-cta:hover {
    color: #1a0306;
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
}

.btn-header-cta:hover .btn-text {
    color: #1a0306;
}

.btn-header-cta:hover::before {
    transform: scaleX(1);
    transform-origin: right center;
}

/* Mobile Toggle Hamburger (2 White Bars → X on click) */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    width: 36px;
    height: 36px;
    padding: 6px;
    z-index: 2005;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.3s ease;
    transform-origin: center;
}

/* Transform to X (علامة غلط) */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
    background: #ffffff;
}

.mobile-toggle.active span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
    background: #ffffff;
}

/* Fullscreen Pure Clear Blur Mobile Navigation Menu */
.mobile-drawer {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.drawer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 2rem 1.5rem;
}

.drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.drawer-link {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    display: inline-block;
    padding: 0.3rem 1.2rem;
    transition: var(--transition-fast);
    letter-spacing: -0.3px;
}

.drawer-link:hover, .drawer-link.active {
    color: var(--color-gold-light);
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   4. HERO SECTION (100vh Exact Viewport Height & Width)
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 4.8rem;
    padding-bottom: 0.8rem;
    overflow: hidden;
}

/* Background Image */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.18);
    filter: brightness(0.88) contrast(1.1) blur(4px);
    will-change: transform, filter;
}

body.loaded .hero-bg-img {
    animation: heroZoomOut 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroZoomOut {
    0% {
        transform: scale(1.18);
        filter: brightness(0.88) contrast(1.1) blur(4px);
    }
    100% {
        transform: scale(1);
        filter: brightness(0.95) contrast(1.06) blur(0);
    }
}

/* Vignettes & Gradient Overlays */
.video-overlay-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg, 
        rgba(7, 7, 9, 0.85) 0%, 
        rgba(7, 7, 9, 0.45) 30%, 
        rgba(15, 2, 5, 0.08) 50%, 
        rgba(7, 7, 9, 0.45) 70%, 
        rgba(7, 7, 9, 0.85) 100%
    );
    pointer-events: none;
}

.video-overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center, 
        transparent 42%, 
        rgba(10, 2, 4, 0.45) 75%, 
        rgba(5, 5, 7, 0.9) 100%
    );
    pointer-events: none;
}

.video-overlay-gold-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 320px;
    background: linear-gradient(
        0deg, 
        rgba(7, 7, 9, 0.98) 0%, 
        rgba(15, 2, 5, 0.6) 45%, 
        transparent 100%
    );
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Floating Luxury Hero Roses (في الوسط: واحدة يمين علوية وواحدة شمال سفلية)
   -------------------------------------------------------------------------- */
.hero-rose {
    position: absolute;
    pointer-events: none;
    z-index: 4;
    user-select: none;
    opacity: 0;
    filter: blur(18px);
    transform: scale(0.85);
    transition: opacity 1.2s ease, filter 1.2s ease;
    image-rendering: -webkit-optimize-contrast;
}

.hero-rose-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Rose 1: Top-Right of center (يمين شوية في الوسط علوية - مرفوعة للأعلى) */
.hero-rose-top-right {
    top: 4%;
    right: 30%;
    width: 175px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 25px rgba(107, 12, 27, 0.45));
}

body.loaded .hero-rose-top-right {
    animation: heroRoseBlurIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.35s both;
}

.hero-rose-top-right .hero-rose-inner {
    transform: rotate(-10deg);
    animation: floatHeroRoseRight 7s ease-in-out infinite;
}

/* Rose 2: Bottom-Left of center (شمال شوية في الوسط سفلية) */
.hero-rose-bottom-left {
    top: 55%;
    left: 29%;
    width: 165px;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 20px rgba(107, 12, 27, 0.4));
}

body.loaded .hero-rose-bottom-left {
    animation: heroRoseBlurIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.5s both;
}

.hero-rose-bottom-left .hero-rose-inner {
    transform: rotate(32deg);
    animation: floatHeroRoseLeft 8s ease-in-out infinite;
}

/* Blur-In Entrance Keyframe (آخر حاجة تظهر في محتوى الهيرو بوضوح تام 100%) */
@keyframes heroRoseBlurIn {
    0% {
        opacity: 0;
        filter: blur(18px);
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1);
    }
}

/* Soft Floating Idles (تحريك عائم خفيف وهادئ في مكانه) */
@keyframes floatHeroRoseRight {
    0%, 100% {
        transform: translateY(0) rotate(-10deg) scale(1);
    }
    50% {
        transform: translateY(-12px) rotate(-6deg) scale(1.02);
    }
}

@keyframes floatHeroRoseLeft {
    0%, 100% {
        transform: translateY(0) rotate(32deg) scale(1);
    }
    50% {
        transform: translateY(-10px) rotate(36deg) scale(1.02);
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    height: calc(100vh - 4.8rem);
    padding-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   5. HERO MAIN CONTENT (العنوان في اليمين - النص والزر في أقصى الشمال في السنتر تماماً)
   -------------------------------------------------------------------------- */
.hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto 0;
    transform: translateY(2.2rem);
    gap: 3rem;
}

/* Right Side: Title Only (العنوان في سطر واحد بخط الرقعة عريض وكبير) */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 540px;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.title-main {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.2;
    display: inline-block;
    white-space: nowrap;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.95));
    letter-spacing: -0.5px;
    padding-bottom: 0.12em;
    opacity: 0;
    transform: translateX(35px);
    filter: blur(16px);
}

body.loaded .title-main {
    animation: blurInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.title-english {
    font-family: var(--font-en);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.2rem;
    opacity: 0;
    transform: translateX(35px);
    filter: blur(16px);
}

body.loaded .title-english {
    animation: blurInRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.title-concentration {
    font-family: var(--font-en);
    font-size: 1.35rem;
    font-weight: 900;
    color: #f7df94;
    letter-spacing: 6.5px;
    text-transform: uppercase;
    margin-top: 0.95rem;
    display: inline-block;
    opacity: 0;
    transform: translateX(35px);
    filter: blur(16px);
    text-shadow: 0 0 16px rgba(212, 175, 55, 0.65), 0 2px 8px rgba(0, 0, 0, 0.6);
    -webkit-text-stroke: 0.4px rgba(247, 223, 148, 0.6);
}

body.loaded .title-concentration {
    animation: blurInRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.title-volume {
    font-family: var(--font-en);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 0.35rem;
    display: inline-block;
    opacity: 0;
    transform: translateX(35px);
    filter: blur(16px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

body.loaded .title-volume {
    animation: blurInRight 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.82s both;
}

.word-part {
    color: #ffffff;
    font-weight: 700;
}

/* BY word — bigger & bolder */
.highlight-by {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.65rem;
    font-size: 2.35rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin: 0 0.35rem;
    line-height: 1.1;
    z-index: 1;
    overflow: visible;
}

.by-text {
    position: relative;
    z-index: 2;
    font-weight: 900;
    color: #6b0c1b;
    -webkit-text-stroke: 1.2px #6b0c1b;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    line-height: 1;
}

/* Horizontal highlighter block behind text: middle-right → middle-left */
.highlight-svg {
    position: absolute;
    inset: -2px 0;
    width: 100%;
    height: calc(100% + 4px);
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.highlighter-line {
    stroke: rgba(255, 255, 255, 0.96);
    stroke-width: 100;
    stroke-linecap: butt;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    filter: none;
}

body.loaded .highlighter-line {
    animation: drawMarkerLine 0.75s 1.2s cubic-bezier(0.2, 0.85, 0.3, 1) forwards;
}

@keyframes drawMarkerLine {
    0% {
        stroke-dashoffset: 100;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

/* Left Side: Description and Button (النص والزر في أقصى الشمال مع كتابة من اليمين) */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
    max-width: 420px;
    margin-right: auto;
    text-align: right;
    direction: rtl;
}

.hero-description {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-main);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
    opacity: 0;
    transform: translateX(-35px);
    filter: blur(16px);
}

body.loaded .hero-description {
    animation: blurInLeft 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.75s both;
}

/* Compact Hero Order CTA Button (بدون شادو) */
.btn-hero-order {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.55rem 1.25rem;
    background: var(--gradient-btn);
    border: 1px solid var(--color-gold-light);
    border-radius: 50px;
    color: #1a0306;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateX(-35px);
    filter: blur(16px);
}

body.loaded .btn-hero-order {
    animation: blurInLeft 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.95s both;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    animation: btnShine 4s infinite ease-in-out;
}

.btn-content {
    display: flex;
    align-items: center;
}

.btn-main-title {
    font-family: var(--font-primary);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.1px;
    color: #1a0306;
}

.btn-hero-order .btn-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1a0306;
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.btn-hero-order:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: none;
    background: linear-gradient(135deg, #fbe6a2 0%, #ffffff 40%, #d4af37 80%, #aa771c 100%);
}

.btn-hero-order:hover .btn-icon {
    transform: translateX(-3px);
    background: var(--color-burgundy-accent);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   6. HERO BOTTOM BAR (الأرقام والتقييم متساوية باللون الأبيض في السنتر)
   -------------------------------------------------------------------------- */
.hero-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    position: relative;
    z-index: 20;
    margin-top: auto;
    margin-bottom: 0.15rem;
}

/* 4 Equal-spaced Centered Columns */
.bottom-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    text-align: center;
    opacity: 0;
    transform: translateY(22px);
    filter: blur(12px);
}

body.loaded .stat-item:nth-child(1) {
    animation: blurInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}

body.loaded .stat-item:nth-child(2) {
    animation: blurInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.25s both;
}

body.loaded .stat-item:nth-child(3) {
    animation: blurInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.4s both;
}

body.loaded .stat-item:nth-child(4) {
    animation: blurInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.55s both;
}

/* Rating Item */
.rating-header {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem;
}

.rating-score {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.1rem;
    line-height: 1;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    color: var(--color-gold-main);
    font-size: 0.65rem;
}

/* 3 Animated Counters */
.counter-number-wrap {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.15rem;
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.counter-plus, .counter-unit {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
}



/* --------------------------------------------------------------------------
   7. KEYFRAMES & BLUR-IN ENTRANCE ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes blurInDown {
    0% {
        opacity: 0;
        filter: blur(14px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes blurInRight {
    0% {
        opacity: 0;
        filter: blur(16px);
        transform: translateX(35px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

@keyframes blurInLeft {
    0% {
        opacity: 0;
        filter: blur(16px);
        transform: translateX(-35px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}

@keyframes blurInUp {
    0% {
        opacity: 0;
        filter: blur(12px);
        transform: translateY(22px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

@keyframes btnShine {
    0% { left: -120%; }
    25%, 100% { left: 140%; }
}

/* --------------------------------------------------------------------------
   8. COMPREHENSIVE RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (1025px - 1280px) */
@media (max-width: 1280px) {
    .hero-container {
        padding: 0 2rem;
    }
    .hero-title .title-main {
        font-size: 3.6rem;
    }
    .title-english {
        font-size: 1.05rem;
    }
    .highlight-by {
        font-size: 2.1rem;
    }
    .hero-description {
        font-size: 0.92rem;
        max-width: 380px;
    }
    .bottom-stats-wrapper {
        gap: 1rem;
        max-width: 720px;
    }
    .counter-number-wrap, .rating-score {
        font-size: 1.9rem;
    }
}

/* Tablets (Portrait & Landscape: 769px - 1024px) */
@media (max-width: 1024px) {
    .nav-list {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        padding-top: 5.2rem;
        padding-bottom: 1.2rem;
        overflow: hidden;
        box-sizing: border-box;
    }
    .hero-container {
        height: 100%;
        min-height: 0;
        max-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 1.2rem;
        padding: 0 2rem;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }
    .hero-grid {
        height: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        transform: none;
        gap: 1.2rem;
        overflow: visible;
    }
    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-top: 0.2rem;
        overflow: visible;
    }
    .hero-title {
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 0.4rem;
        padding-top: 0.2rem;
        overflow: visible;
    }
    .hero-title .title-main {
        font-size: 3rem;
        line-height: 1.32;
        padding-top: 0.15em;
        padding-bottom: 0.1em;
        white-space: normal;
        text-align: center;
        display: block;
    }
    .title-english {
        font-size: 0.92rem;
        letter-spacing: 2.5px;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0.25rem 0;
        line-height: 1.35;
        overflow: visible;
    }
    .title-concentration {
        font-size: 1.18rem;
        font-weight: 900;
        letter-spacing: 5.5px;
        margin-top: 0.85rem;
        text-align: center;
    }
    .title-volume {
        font-size: 0.88rem;
        letter-spacing: 3.5px;
        text-align: center;
        margin-top: 0.28rem;
    }
    .highlight-by {
        font-size: 1.8rem;
        padding: 0.12rem 0.55rem;
        margin: 0 0.35rem;
        line-height: 1;
        overflow: visible;
    }
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        margin-top: auto;
        margin-bottom: 1.6rem;
        gap: 0.9rem;
        direction: rtl;
    }
    .hero-description {
        font-size: 0.88rem;
        line-height: 1.72;
        text-align: center;
        width: 100%;
    }
    .btn-hero-order {
        margin: 0 auto;
        padding: 0.55rem 1.8rem;
        justify-content: center;
        gap: 0.85rem;
    }
    .hero-bottom-bar {
        width: 100%;
        margin-top: 0.8rem;
        margin-bottom: 0.2rem;
    }
    .bottom-stats-wrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.85rem;
        max-width: 640px;
    }
    .stat-card {
        padding: 0.5rem 0.8rem;
    }
    .counter-number-wrap, .rating-score {
        font-size: 1.55rem;
    }
    .stat-label {
        font-size: 0.78rem;
    }
    .hero-rose-top-right {
        width: 175px;
        right: 12%;
        top: 23%;
    }
    .hero-rose-bottom-left {
        width: 165px;
        left: 14%;
        top: 57%;
    }
}

/* Mobile Devices (Portrait: 481px - 768px) */
@media (max-width: 768px) {
    .main-header {
        padding: 0.75rem 0;
    }
    .header-container {
        padding: 0 1.85rem;
        width: 100%;
        max-width: 100%;
    }
    .logo-img {
        height: 38px;
    }
    .btn-header-cta {
        display: none !important;
    }
    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        padding-top: 4.8rem;
        padding-bottom: 1.2rem;
        overflow: hidden;
        box-sizing: border-box;
    }
    .hero-bg-img {
        object-position: 62% center;
    }
    .hero-container {
        height: 100%;
        min-height: 0;
        max-height: 100%;
        padding: 0 1.85rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0.8rem;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }
    .hero-grid {
        height: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        transform: none;
        gap: 1.2rem;
        overflow: visible;
    }
    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-top: 0.2rem;
        overflow: visible;
    }
    .hero-title {
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 0.35rem;
        padding-top: 0.2rem;
        overflow: visible;
    }
    .hero-title .title-main {
        font-size: 2.45rem;
        line-height: 1.3;
        padding-top: 0.15em;
        padding-bottom: 0.1em;
        white-space: normal;
        text-align: center;
        display: block;
    }
    .title-english {
        font-size: 0.84rem;
        letter-spacing: 2px;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 0.25rem 0;
        line-height: 1.35;
        overflow: visible;
    }
    .title-concentration {
        font-size: 1.05rem;
        font-weight: 900;
        letter-spacing: 4.5px;
        margin-top: 0.75rem;
        text-align: center;
    }
    .title-volume {
        font-size: 0.82rem;
        letter-spacing: 3px;
        text-align: center;
        margin-top: 0.25rem;
    }
    .highlight-by {
        font-size: 1.6rem;
        padding: 0.12rem 0.5rem;
        margin: 0 0.3rem;
        line-height: 1;
        overflow: visible;
    }
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        margin-top: auto;
        margin-bottom: 0.4rem;
        gap: 0.75rem;
        direction: rtl;
    }
    .hero-description {
        font-size: 0.82rem;
        line-height: 1.65;
        text-align: center;
        width: 100%;
        max-width: 440px;
    }
    .btn-hero-order {
        margin: 0 auto;
        width: auto;
        min-width: 175px;
        padding: 0.45rem 1.15rem;
        justify-content: center;
        gap: 0.65rem;
    }
    .btn-main-title {
        font-size: 0.85rem;
    }
    .btn-hero-order .btn-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
    .hero-bottom-bar {
        display: none !important;
    }
    .hero-rose-top-right {
        width: 145px;
        right: 5%;
        top: 24%;
    }
    .hero-rose-bottom-left {
        width: 135px;
        left: 10%;
        top: 59%;
    }
}

/* Small Mobile Screens (361px - 480px) */
@media (max-width: 480px) {
    .main-header {
        padding: 0.55rem 0;
    }
    .header-container {
        padding: 0 1.55rem;
        width: 100%;
        max-width: 100%;
    }
    .logo-img {
        height: 33px;
    }
    .btn-header-cta {
        display: none !important;
    }
    .hero-section {
        height: 100vh;
        height: 100dvh;
        min-height: 100vh;
        min-height: 100dvh;
        max-height: 100vh;
        max-height: 100dvh;
        padding-top: 4.4rem;
        padding-bottom: 0.9rem;
        overflow: hidden;
        box-sizing: border-box;
    }
    .hero-bg-img {
        object-position: 63% center;
    }
    .hero-container {
        height: 100%;
        min-height: 0;
        max-height: 100%;
        padding: 0 1.55rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0.6rem;
        width: 100%;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
    }
    .hero-grid {
        height: 100%;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        transform: none;
        gap: 0.8rem;
        overflow: visible;
    }
    .hero-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-top: 0.1rem;
        overflow: visible;
    }
    .hero-title {
        align-items: center;
        text-align: center;
        width: 100%;
        gap: 0.3rem;
        padding-top: 0.15rem;
        overflow: visible;
    }
    .hero-title .title-main {
        font-size: 2.05rem;
        line-height: 1.3;
        padding-top: 0.15em;
        padding-bottom: 0.1em;
        white-space: normal;
        text-align: center;
        display: block;
    }
    .title-english {
        font-size: 0.76rem;
        letter-spacing: 1.5px;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 0.35rem;
        width: 100%;
        padding: 0.25rem 0;
        line-height: 1.35;
        overflow: visible;
    }
    .title-concentration {
        font-size: 0.92rem;
        font-weight: 900;
        letter-spacing: 3.5px;
        margin-top: 0.65rem;
        text-align: center;
    }
    .title-volume {
        font-size: 0.74rem;
        letter-spacing: 2.2px;
        text-align: center;
        margin-top: 0.2rem;
    }
    .highlight-by {
        font-size: 1.4rem;
        padding: 0.1rem 0.45rem;
        margin: 0 0.25rem;
        line-height: 1;
        overflow: visible;
    }
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        margin-top: auto;
        margin-bottom: 0.3rem;
        gap: 0.65rem;
        direction: rtl;
    }
    .hero-description {
        font-size: 0.76rem;
        line-height: 1.58;
        text-align: center;
        width: 100%;
    }
    .btn-hero-order {
        margin: 0 auto;
        width: auto;
        min-width: 155px;
        max-width: 200px;
        padding: 0.38rem 0.95rem;
        justify-content: center;
        gap: 0.5rem;
    }
    .btn-main-title {
        font-size: 0.8rem;
    }
    .btn-hero-order .btn-icon {
        width: 20px;
        height: 20px;
        font-size: 0.58rem;
    }
    .hero-bottom-bar {
        display: none !important;
    }
    .hero-rose-top-right {
        width: 125px;
        right: 3%;
        top: 22%;
    }
    .hero-rose-bottom-left {
        width: 118px;
        left: 6%;
        top: 60%;
    }
    .preloader-logo-wrap {
        width: 90px;
    }
    .preloader-progress-container {
        width: 140px;
    }
    .preloader-tagline {
        font-size: 0.72rem;
        letter-spacing: 2px;
    }
}

/* Extra Small / Foldable Screens (<= 360px) */
@media (max-width: 360px) {
    .main-header {
        padding: 0.45rem 0;
    }
    .header-container {
        padding: 0 1.2rem;
    }
    .hero-section {
        padding-top: 3.5rem;
        padding-bottom: 0.6rem;
    }
    .hero-container {
        padding: 0 1.2rem;
    }
    .hero-title .title-main {
        font-size: 1.75rem;
    }
    .title-english {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }
    .highlight-by {
        font-size: 1.15rem;
    }
    .hero-description {
        font-size: 0.71rem;
        line-height: 1.5;
    }
    .btn-hero-order {
        min-width: 135px;
        padding: 0.34rem 0.8rem;
    }
    .btn-main-title {
        font-size: 0.75rem;
    }
    .hero-bottom-bar {
        display: none !important;
    }
}

/* --------------------------------------------------------------------------
   7. PRODUCT DETAILS SECTION (تفاصيل العطر والهرم العطري والفيرمون)
   -------------------------------------------------------------------------- */
.details-section {
    position: relative;
    padding: 0 0 1.5rem;
    background: #070709;
    overflow: hidden;
    border-bottom: none;
}

/* Ambient Background Glows */
.details-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.details-bg-glow.glow-1 {
    top: 53%;
    right: 0;
    transform: translate(50%, -50%);
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, #35020C 0%, rgba(53, 2, 12, 0.75) 45%, rgba(53, 2, 12, 0.25) 70%, transparent 100%);
    filter: blur(50px);
}

/* Luxury Rose Accents (Static) */
.details-rose {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    user-select: none;
}

.details-rose .rose-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Rose 1 (Top Right - Sequential Blur-In) */
.rose-top-right {
    top: 45px;
    right: -35px;
    width: 275px;
    opacity: 0;
    filter: blur(20px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85));
    transform: rotate(-18deg) scale(0.85);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

/* Rose 2 (Top Left - Sequential Blur-In) */
.rose-top-left {
    top: 220px;
    left: -45px;
    width: 270px;
    opacity: 0;
    filter: blur(20px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85));
    transform: rotate(20deg) scale(0.85);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.details-container {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Section Header (Sequential Blur-In) */
.details-section .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    filter: blur(18px);
    transform: translateY(30px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    color: var(--color-gold-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.section-badge i {
    color: var(--color-gold-main);
    font-size: 0.85rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.section-title .title-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
    margin: 0 auto;
}

/* Section Gold Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.divider-diamond {
    width: 8px;
    height: 8px;
    background: var(--color-gold-main);
    transform: rotate(45deg);
    box-shadow: 0 0 10px var(--color-gold-glow);
}

/* --------------------------------------------------------------------------
   INTERACTIVE SHOWCASE LAYOUT (صورة اليمين + خطوط SVG + 5 نقاط الشمال)
   -------------------------------------------------------------------------- */
.details-showcase-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 0;
}

/* Connecting SVG Overlay */
.connecting-lines-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
    overflow: visible;
}

.connection-group {
    pointer-events: auto;
    cursor: pointer;
}

.glow-line {
    fill: none;
    stroke: url(#lineBurgundyGrad);
    stroke-width: 2.4px;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                stroke 0.35s ease,
                stroke-width 0.35s ease,
                opacity 0.35s ease;
    filter: drop-shadow(0 0 5px rgba(186, 28, 56, 0.75));
    opacity: 0.9;
}

.glow-line.draw-in {
    opacity: 0.9;
}

/* Mobile Single Directional Connecting Line */
.mobile-connection-group {
    display: none;
}

.mobile-glow-line {
    fill: none;
    stroke: url(#lineBurgundyGrad);
    stroke-width: 2.4px;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dashoffset 1.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease;
    filter: drop-shadow(0 0 8px rgba(255, 107, 133, 0.9)) drop-shadow(0 0 16px rgba(186, 28, 56, 0.7));
    opacity: 0.95;
}

.mobile-glow-line.draw-in {
    opacity: 0.95;
}

.svg-node {
    fill: #ba1c38;
    stroke: #ff9bb0;
    stroke-width: 2px;
    filter: drop-shadow(0 0 8px rgba(186, 28, 56, 0.95));
    transition: transform 0.3s ease, fill 0.3s ease, stroke 0.3s ease, filter 0.3s ease, opacity 0.4s ease;
    opacity: 0;
}

.svg-node.node-start {
    fill: #ff6b85;
    stroke: #ffffff;
}

.svg-node.node-end {
    fill: #6b0c1b;
    stroke: #ff859c;
}

.svg-node.visible {
    opacity: 1;
}

.connection-group:hover .glow-line,
.connection-group.active .glow-line {
    stroke: #ff6b85;
    stroke-width: 3.6px;
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(255, 107, 133, 1)) drop-shadow(0 0 22px rgba(186, 28, 56, 0.9));
}

.connection-group:hover .svg-node,
.connection-group.active .svg-node {
    fill: #ffffff;
    stroke: #ff3b5c;
    filter: drop-shadow(0 0 12px #ffffff) drop-shadow(0 0 22px #ba1c38);
}

.details-showcase-grid {
    display: grid;
    grid-template-columns: 400px minmax(360px, 520px);
    justify-content: center;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Right Column: Perfume Bottle (Sequential Blur-In) */
.bottle-showcase-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.92) translateY(25px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                filter 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

.bottle-image-standalone {
    position: relative;
    width: 100%;
    max-width: 380px;
    border-radius: 24px;
    overflow: visible !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    pointer-events: auto;
}

.bottle-center-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 380px;
    background: radial-gradient(ellipse at center, rgba(186, 28, 56, 0.45) 0%, rgba(212, 175, 55, 0.15) 50%, transparent 75%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
    animation: bottleGlowPulse 4s infinite ease-in-out alternate;
}

@keyframes bottleGlowPulse {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.95); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.showcase-bottle-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    pointer-events: none;
    transform: none !important;
    transition: none !important;
    position: relative;
    z-index: 2;
}

/* Bottle Connection Origin Anchors (مزاحة لليمين قليلاً على حافة الزجاجة) */
.bottle-anchor {
    position: absolute;
    left: 42px;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    z-index: 6;
    pointer-events: auto;
    cursor: pointer;
}

.bottle-anchor.anchor-1 { top: 16%; }
.bottle-anchor.anchor-2 { top: 33%; }
.bottle-anchor.anchor-3 { top: 50%; }
.bottle-anchor.anchor-4 { top: 67%; }
.bottle-anchor.anchor-5 { top: 84%; }

.anchor-core {
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #ff6b85;
    box-shadow: 0 0 10px #ba1c38;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.anchor-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid rgba(220, 45, 75, 0.85);
    animation: anchorPulseAnim 2.2s infinite ease-in-out;
}

@keyframes anchorPulseAnim {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.6);
        opacity: 0.15;
    }
}

.bottle-anchor:hover .anchor-core,
.bottle-anchor.active .anchor-core {
    transform: scale(1.4);
    background: #ffffff;
    box-shadow: 0 0 18px #ffffff, 0 0 30px #ba1c38;
}

/* ==========================================================================
   CONNECTED INGREDIENT BUBBLE ROWS (فقاعات المكونات المتصلة بالخطوط والتفاصيل)
   ========================================================================== */
@keyframes rotateBubbleRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pheromoneRingPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(255, 107, 133, 0.5);
    }
    50% {
        transform: scale(1.16);
        opacity: 0.3;
        box-shadow: 0 0 20px rgba(255, 107, 133, 0.85);
    }
}

.bottle-luxury-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
    padding: 0.6rem 1.4rem;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(186, 28, 56, 0.35);
    border-radius: 50px;
    color: #ff8fa3;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.bottle-luxury-badge i {
    color: #ff6b85;
}

/* Left Column: 5 Connected Ingredient Bubble Rows */
.features-list-col {
    display: flex;
    flex-direction: column;
    max-width: 540px;
    width: 100%;
}

.features-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    width: 100%;
}

.ingredient-showcase-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    filter: blur(16px);
    transform: translateX(-35px);
    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: transform, opacity, filter;
    direction: rtl;
    text-align: right;
}

/* Separate Circular Ingredient Bubble (Connected to SVG Line) */
.ingredient-node-bubble {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bubble-glass-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    padding: 2.5px;
    background: radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.45) 0%, rgba(75, 8, 22, 0.8) 55%, rgba(18, 2, 5, 0.95) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1.8px solid rgba(245, 220, 140, 0.8);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.8), 
                0 0 14px rgba(186, 28, 56, 0.45), 
                inset 0 2px 4px rgba(255, 255, 255, 0.65),
                inset 0 -2px 6px rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.node-bubble-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    filter: contrast(1.06) brightness(1.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    pointer-events: none;
}

/* Ambient Ring Pulse */
.bubble-ring-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.45);
    opacity: 0.7;
    animation: rotateBubbleRing 16s linear infinite;
    pointer-events: none;
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.pheromone-pulse {
    border: 1.5px solid rgba(255, 107, 133, 0.85);
    animation: pheromoneRingPulse 2.2s infinite ease-in-out;
}

.bubble-pheromone-node .bubble-glass-wrap {
    border-color: #ff859c;
    background: radial-gradient(circle at 35% 28%, rgba(255, 180, 200, 0.5) 0%, rgba(135, 10, 38, 0.85) 55%, rgba(24, 2, 8, 0.95) 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 22px rgba(255, 107, 133, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.75);
}

.ingredient-showcase-row:hover .bubble-glass-wrap,
.ingredient-showcase-row.active .bubble-glass-wrap {
    transform: scale(1.12);
    border-color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.95), 
                0 0 22px rgba(255, 215, 100, 0.9),
                0 0 32px rgba(220, 45, 75, 0.8), 
                inset 0 2px 6px rgba(255, 255, 255, 0.95);
}

.ingredient-showcase-row:hover .node-bubble-img,
.ingredient-showcase-row.active .node-bubble-img {
    transform: scale(1.1);
}

/* Rectangular Glass Card Box (Separate from the circle) */
.ingredient-card-box {
    flex-grow: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.22rem;
    background: rgba(36, 5, 12, 0.42);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(220, 45, 75, 0.22);
    border-radius: 14px;
    padding: 0.65rem 1.15rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: background 0.35s ease, 
                border-color 0.35s ease, 
                box-shadow 0.35s ease, 
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    direction: rtl;
    text-align: right;
}

.ingredient-showcase-row:hover .ingredient-card-box,
.ingredient-showcase-row.active .ingredient-card-box {
    background: rgba(65, 8, 20, 0.65);
    border-color: rgba(235, 50, 85, 0.65);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 22px rgba(186, 28, 56, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateX(-4px);
}

.card-tier-pill {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--color-gold-light);
    background: rgba(212, 175, 55, 0.14);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    padding: 0.12rem 0.58rem;
    white-space: nowrap;
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    line-height: 1.2;
    margin-bottom: 0.12rem;
}

.card-tier-pill.pheromone-pill {
    color: #ff9bb0;
    background: rgba(186, 28, 56, 0.22);
    border-color: rgba(255, 107, 133, 0.5);
}

.card-item-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.ingredient-showcase-row:hover .card-item-title,
.ingredient-showcase-row.active .card-item-title {
    color: var(--color-gold-light);
}

.card-item-desc {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   DETAILS SECTION SEQUENTIAL BLUR-IN TRIGGERED CASCADE
   ========================================================================== */
.details-section.in-view .section-header {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.1s;
}

.details-section.in-view .bottle-showcase-col {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1) translateY(0);
    transition-delay: 0.35s;
}

.details-section.in-view .rose-top-right {
    opacity: 0.9;
    filter: blur(0px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 30px rgba(107, 12, 27, 0.55));
    transform: rotate(-8deg) scale(1);
    transition-delay: 0.55s;
}

.details-section.in-view .rose-top-left {
    opacity: 0.85;
    filter: blur(0px) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 25px rgba(107, 12, 27, 0.45));
    transform: rotate(38deg) scale(1);
    transition-delay: 0.75s;
}

.details-section.in-view .ingredient-showcase-row:nth-child(1) {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
    transition-delay: 0.85s;
}

.details-section.in-view .ingredient-showcase-row:nth-child(2) {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
    transition-delay: 1.0s;
}

.details-section.in-view .ingredient-showcase-row:nth-child(3) {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
    transition-delay: 1.15s;
}

.details-section.in-view .ingredient-showcase-row:nth-child(4) {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
    transition-delay: 1.3s;
}

.details-section.in-view .ingredient-showcase-row:nth-child(5) {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0);
    transition-delay: 1.45s;
}

.point-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.point-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
    padding-right: 0.1rem;
}

/* --------------------------------------------------------------------------
   8. MARQUEE TRANSITION SECTION (شريطان متوازيان مائلان متحركان بدون انقطاع)
   -------------------------------------------------------------------------- */
.marquee-transition-section {
    position: relative;
    width: 100%;
    background: #070709;
    padding: 5.5rem 0 6rem;
    overflow: hidden;
    z-index: 10;
    direction: ltr !important;
}

.dual-marquee-container {
    position: relative;
    width: 160vw;
    margin-left: -30vw;
    transform: rotate(-3.5deg);
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.8rem 0;
    direction: ltr !important;
}

.marquee-strip {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    user-select: none;
    width: 100%;
    padding: 0.42rem 0;
    border: none !important;
    position: relative;
    direction: ltr !important;
}

.marquee-strip.strip-top {
    background: linear-gradient(90deg, #6b0c1b 0%, #3a030d 50%, #6b0c1b 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(107, 12, 27, 0.25);
    transform: translateX(50px);
}

.marquee-strip.strip-bottom {
    background: linear-gradient(90deg, rgba(16, 5, 8, 0.98) 0%, rgba(45, 10, 18, 0.98) 50%, rgba(16, 5, 8, 0.98) 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transform: translateX(35px);
}

/* Slanted to Right Variant (مائل من ناحية اليمين) */
.dual-marquee-container.slant-right,
.marquee-slant-right .dual-marquee-container {
    transform: rotate(3.5deg);
}

.marquee-slant-right .marquee-strip.strip-top {
    transform: translateX(-50px);
}

.marquee-slant-right .marquee-strip.strip-bottom {
    transform: translateX(-35px);
}

.marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    flex-shrink: 0;
    will-change: transform;
    direction: ltr !important;
}

.marquee-unit {
    display: inline-flex;
    align-items: center;
    gap: 1.8rem;
    padding-right: 1.8rem;
    flex-shrink: 0;
    direction: ltr !important;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--font-primary);
    font-size: 0.86rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
    white-space: nowrap;
    direction: rtl;
}

.strip-top .marquee-item {
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.strip-bottom .marquee-item {
    color: rgba(255, 255, 255, 0.92);
}

.marquee-item i {
    color: var(--color-gold-light);
    font-size: 0.75rem;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

@media (max-width: 768px) {
    .marquee-transition-section {
        padding: 4rem 0 4.5rem;
    }
    .dual-marquee-container {
        width: 170vw;
        margin-left: -35vw;
        transform: rotate(-3deg);
        gap: 0.5rem;
    }
    .dual-marquee-container.slant-right,
    .marquee-slant-right .dual-marquee-container {
        transform: rotate(3deg);
    }
    .marquee-strip {
        padding: 0.38rem 0;
    }
    .marquee-unit {
        gap: 1.2rem;
        padding-right: 1.2rem;
    }
    .marquee-item {
        font-size: 0.78rem;
        gap: 0.45rem;
    }
}



/* --------------------------------------------------------------------------
   9. CTA PROMO BANNER SECTION (خلفية صورة فاخرة ومحتوى ملكي على اليمين)
   -------------------------------------------------------------------------- */
.cta-promo-section {
    position: relative;
    padding: 60px 0;
    background: #070709;
    border: none;
    z-index: 10;
}

.cta-container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
}

.cta-banner-box {
    position: relative;
    width: 100%;
    border-radius: 28px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border: none;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(107, 12, 27, 0.3);
    background: #0d0205;
}

/* Background Image & Luxury Dark Gradient Overlay */
.cta-bg-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    filter: none;
}

.cta-overlay-gradient {
    display: none;
}

/* Right-aligned Content */
.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 620px;
    padding: 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    direction: rtl;
    gap: 1.2rem;
}

/* ==========================================================================
   CTA SECTION SEQUENTIAL BLUR-IN ENTRANCE
   ========================================================================== */
/* 1. Title (العنوان) */
.cta-promo-section .cta-title {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.35;
    color: #ffffff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.95);
    margin: 0;
    opacity: 0;
    filter: blur(18px);
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

/* 2. Description (النص) */
.cta-promo-section .cta-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    margin: 0;
    opacity: 0;
    filter: blur(16px);
    transform: translateY(22px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity, filter;
}

/* 3. Button Row (الزرار) */
.cta-promo-section .cta-action-row {
    margin-top: 0.5rem;
    opacity: 0;
    filter: blur(14px);
    transform: translateY(18px);
    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: transform, opacity, filter;
}

/* TRIGGERED CASCADE: When CTA Section is scrolled into view */
.cta-promo-section.in-view .cta-title {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.15s;
}

.cta-promo-section.in-view .cta-description {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.4s;
}

.cta-promo-section.in-view .cta-action-row {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.65s;
}

.btn-cta-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.1rem;
    padding: 0.75rem 2rem;
    background: var(--gradient-btn);
    border: 1px solid var(--color-gold-light);
    border-radius: 50px;
    color: #1a0306;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-cta-order .btn-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1a0306;
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.btn-cta-order:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.55);
}

.btn-cta-order:hover .btn-icon-circle {
    transform: translateX(-4px);
    background: var(--color-burgundy-accent);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   10. DISTINCTION / WHAT MAKES US UNIQUE SECTION (قسم ما يميزنا)
   -------------------------------------------------------------------------- */
.distinction-section {
    position: relative;
    padding: 0;
    background: #070709;
    overflow: hidden;
    z-index: 10;
}

.distinction-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.distinction-bg-glow.glow-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 620px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(80, 5, 18, 0.4) 0%, rgba(35, 2, 8, 0.2) 50%, transparent 75%);
    filter: blur(60px);
}

.distinction-bg-glow.glow-left {
    top: 52%;
    left: 0;
    transform: translate(-40%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #35020C 0%, rgba(53, 2, 12, 0.75) 45%, rgba(53, 2, 12, 0.25) 70%, transparent 100%);
    filter: blur(48px);
    opacity: 0.85;
}

.distinction-container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
}

/* Header Sequential Reveal */
.distinction-section .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    filter: blur(16px);
    transform: translateY(28px);
    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: transform, opacity, filter;
}

.distinction-section.in-view .section-header {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.1s;
}

/* Distinction Showcase Wrapper & SVG Lines (Card 1 -> 2 -> 3 -> 4) */
.distinction-showcase-wrapper {
    position: relative;
    width: 100%;
    z-index: 2;
}

.distinction-lines-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: visible;
    display: block;
}

.dist-glow-line {
    fill: none;
    stroke: url(#distLineBurgundyGrad);
    stroke-width: 2.2px;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px rgba(186, 28, 56, 0.95)) drop-shadow(0 0 14px rgba(255, 107, 133, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dist-glow-line.draw-in {
    opacity: 0.9;
    transition: stroke-dashoffset 0.85s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
}

.dist-svg-node {
    fill: #ff6b85;
    filter: drop-shadow(0 0 5px #ba1c38) drop-shadow(0 0 10px #ffffff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dist-svg-node.visible {
    opacity: 1;
}

/* 4 Distinction Cards Grid */
.distinction-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    align-items: stretch;
    direction: rtl;
    position: relative;
    z-index: 2;
}

/* Single Distinction Card (نفس ديزاين مربعات ليستة لمسة بالكامل) */
.distinction-card.feature-point-card {
    position: relative;
    background: rgba(36, 5, 12, 0.42);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border: 1px solid rgba(220, 45, 75, 0.25);
    border-radius: 16px;
    padding: 1.15rem 1.4rem 1.1rem;
    opacity: 0;
    filter: blur(16px);
    transform: translateY(30px);
    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),
                background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: default;
    will-change: transform, opacity, filter;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: right;
    direction: rtl;
}

.distinction-card.feature-point-card:hover,
.distinction-card.feature-point-card.active {
    transform: translateY(-6px) !important;
    background: rgba(65, 8, 20, 0.62);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-color: rgba(235, 50, 85, 0.65);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.5), 0 0 25px rgba(186, 28, 56, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.distinction-card .point-header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    width: 100%;
}

.distinction-card .point-number {
    font-family: var(--font-en);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-gold-light);
    letter-spacing: 0.5px;
    line-height: 1;
}

.distinction-card .point-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22) 0%, rgba(170, 119, 28, 0.4) 100%);
    border: 1px solid rgba(255, 242, 178, 0.55);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 12px rgba(212, 175, 55, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.distinction-card.feature-point-card:hover .point-icon-box {
    transform: rotate(8deg) scale(1.1);
    color: #1a0306;
    background: var(--gradient-gold);
    border-color: #ffffff;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.85);
}

.distinction-card .point-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
}

.distinction-card .point-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.55;
    margin: 0;
    padding-right: 0.1rem;
}

/* ==========================================================================
   DISTINCTION SECTION SEQUENTIAL BLUR-IN CASCADE
   ========================================================================== */
.distinction-section.in-view .distinction-card:nth-child(1) {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.2s;
}

.distinction-section.in-view .distinction-card:nth-child(2) {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.38s;
}

.distinction-section.in-view .distinction-card:nth-child(3) {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.56s;
}

.distinction-section.in-view .distinction-card:nth-child(4) {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.74s;
}

/* Bottom Tagline from image: ثقة .. جاذبية .. حضور لا يُنسى */
.distinction-tagline-wrapper {
    margin-top: 2.2rem;
    margin-bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    filter: blur(14px);
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.distinction-section.in-view .distinction-tagline-wrapper {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
    transition-delay: 0.9s;
}

.distinction-tagline {
    font-family: var(--font-primary);
    font-size: 1.45rem;
    font-weight: 700;
    color: rgba(255, 235, 240, 0.92);
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 0 0 20px rgba(186, 28, 56, 0.6), 0 2px 10px rgba(0, 0, 0, 0.8);
    position: relative;
    padding: 0.6rem 2.2rem;
    background: linear-gradient(135deg, rgba(186, 28, 56, 0.1) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(186, 28, 56, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   11. TESTIMONIALS & REVIEWS SECTION (قسم آراء العملاء)
   ========================================================================== */
.testimonials-section {
    position: relative;
    padding: 0 0 95px;
    background: #070709;
    overflow: hidden;
    z-index: 10;
}

.testimonials-bg-glow.glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 550px;
    background: radial-gradient(ellipse, rgba(80, 5, 18, 0.45) 0%, rgba(35, 2, 8, 0.22) 50%, transparent 75%);
    filter: blur(65px);
    pointer-events: none;
    z-index: 1;
}

.testimonials-container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
}

/* Header */
.testimonials-section .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    opacity: 1;
    filter: none;
    transform: none;
}

/* Overall Trust Score Pill */
.trust-summary-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 1.4rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(186, 28, 56, 0.15) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    margin-top: 1.1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
}

.trust-rating-score {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}

.score-number {
    font-family: var(--font-en);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-gold-light);
    line-height: 1;
}

.score-out-of {
    font-family: var(--font-en);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.trust-stars-row {
    display: flex;
    gap: 0.25rem;
    color: #ffc107;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.6));
}

.trust-divider-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.6);
}

.trust-count-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.88);
}

.trust-count-text strong {
    color: var(--color-gold-light);
    font-family: var(--font-en);
}

/* Continuous Reviews Marquee Wrapper & Track */
.reviews-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 3rem 0 3.5rem;
    margin-top: 0.5rem;
    direction: ltr !important;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    z-index: 2;
}

.reviews-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    flex-shrink: 0;
    will-change: transform;
    direction: ltr !important;
    cursor: grab;
}

.reviews-marquee-track:active {
    cursor: grabbing;
}

.reviews-marquee-group {
    display: inline-flex;
    align-items: center;
    gap: 3.5rem;
    padding-right: 3.5rem;
    flex-shrink: 0;
    direction: ltr !important;
}

/* Single Review Card - Matching 'ما يميزنا' / 'لمسة' Design Language */
.review-card.feature-point-card {
    width: 370px;
    position: relative;
    background: rgba(36, 5, 12, 0.42);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    border: 1px solid rgba(220, 45, 75, 0.25);
    border-radius: 16px;
    padding: 0.95rem 1.35rem 0.9rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    cursor: default;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: right;
    direction: rtl;
    flex-shrink: 0;
    opacity: 0.45;
    visibility: visible !important;
    filter: none !important;
    transform-origin: center center;
    transition: none !important;
    will-change: transform, opacity;
}

.review-card.feature-point-card:hover {
    background: rgba(36, 5, 12, 0.42) !important;
    border-color: rgba(220, 45, 75, 0.25) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

/* Center State - Elevated z-index */
.review-card.feature-point-card.is-center {
    z-index: 10;
}

.review-card .point-header-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.45rem;
    width: 100%;
}

/* Circular User Avatar */
.reviewer-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(186, 28, 56, 0.45) 100%);
    border: 1.5px solid rgba(255, 242, 178, 0.6);
    color: var(--color-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 10px rgba(212, 175, 55, 0.25);
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.reviewer-meta .point-title {
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.reviewer-location {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.1rem;
}

.reviewer-location i {
    color: var(--color-gold-light);
    font-size: 0.68rem;
}

.review-card .review-stars-row {
    display: flex;
    gap: 0.2rem;
    color: #ffc107;
    font-size: 0.82rem;
    filter: drop-shadow(0 0 4px rgba(255, 193, 7, 0.5));
    margin-right: auto;
}

.review-card .point-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    width: 100%;
}

/* Scroll Reveal States */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="fade-right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries for Product Details Section
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.1rem;
    }
    .details-showcase-grid {
        display: grid;
        grid-template-columns: 280px minmax(320px, 1fr);
        gap: 2.5rem;
        justify-content: center;
        align-items: center;
    }
    .bottle-showcase-col {
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .features-list-col {
        order: 2;
        width: 100%;
    }
    .connecting-lines-svg {
        display: block !important;
    }
    .glow-line {
        stroke-width: 2px;
    }
    .bottle-anchor {
        left: 36px;
        right: auto;
    }
    .bottle-image-standalone {
        max-width: 280px;
    }
    .features-list-wrapper {
        gap: 0.85rem;
    }
    .ingredient-node-bubble {
        width: 62px;
        height: 62px;
    }
    .ingredient-card-box {
        padding: 0.65rem 1.1rem;
    }
    .card-item-title {
        font-size: 0.98rem;
    }
    .card-item-desc {
        font-size: 0.81rem;
    }
    .rose-top-right {
        width: 210px;
        right: -25px;
        top: 35px;
    }
    .rose-top-left {
        width: 200px;
        left: -25px;
        top: 180px;
    }
    .cta-promo-section {
        padding: 50px 0;
    }
    .cta-container {
        padding: 0 2rem;
    }
    .cta-banner-box {
        min-height: 420px;
    }
    .cta-content-wrapper {
        padding: 3.5rem 3rem;
        max-width: 520px;
    }
    .cta-title {
        font-size: 2.2rem;
    }
    .distinction-section {
        padding: 0;
    }
    .distinction-container {
        padding: 0 2rem;
    }
    .distinction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .distinction-bg-glow.glow-left {
        width: 300px;
        height: 300px;
    }
    .testimonials-section {
        padding: 0 0 70px;
    }
    .testimonials-container {
        padding: 0 2rem;
    }
    .reviews-marquee-wrapper {
        padding: 2.5rem 0 3rem;
    }
    .reviews-marquee-group {
        gap: 3rem;
        padding-right: 3rem;
    }
    .review-card.feature-point-card {
        width: 350px;
    }
}

@media (max-width: 768px) {
    .details-section {
        padding: 0 0 1.5rem;
    }
    .details-bg-glow.glow-1 {
        top: 52%;
        right: 0;
        left: auto;
        transform: translate(50%, -50%);
        width: 680px;
        height: 680px;
        filter: blur(55px);
        opacity: 0.9;
    }
    .details-container {
        padding: 0 1.2rem;
    }
    .section-header {
        margin-bottom: 2.2rem;
    }
    .section-title {
        font-size: 1.65rem;
        line-height: 1.35;
        margin-bottom: 0.4rem;
    }
    .section-subtitle {
        font-size: 0.88rem;
        line-height: 1.6;
        padding: 0 0.8rem;
    }
    .section-divider {
        margin-top: 1rem;
    }
    .details-showcase-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.2rem;
        width: 100%;
    }
    .bottle-showcase-col {
        order: 1;
        width: 100%;
        max-width: 285px;
        margin: 0 auto;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: visible;
    }
    .features-list-col {
        order: 2;
        width: 100%;
    }
    .connecting-lines-svg {
        display: block !important;
    }
    .connection-group {
        display: none !important;
    }
    .mobile-connection-group {
        display: block !important;
    }
    .mobile-glow-line {
        stroke-width: 2.2px;
    }
    .svg-node.node-start {
        r: 3.5;
    }
    .svg-node.node-end {
        r: 4;
    }
    .bottle-image-standalone {
        width: 100%;
        max-width: 285px;
        overflow: visible;
    }
    .bottle-anchor {
        display: none !important;
    }
    .bottle-anchor.anchor-3 {
        display: flex !important;
        left: auto !important;
        right: 32px !important;
        top: 50% !important;
        width: 14px;
        height: 14px;
    }
    .features-list-wrapper {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    .ingredient-showcase-row {
        gap: 0.85rem;
        padding: 0;
        transform: translateY(20px);
    }
    .details-section.in-view .ingredient-showcase-row {
        transform: translateY(0) !important;
    }
    .ingredient-node-bubble {
        width: 60px;
        height: 60px;
    }
    .ingredient-card-box {
        padding: 0.6rem 1rem;
    }
    .card-tier-pill {
        font-size: 0.64rem;
        padding: 0.1rem 0.5rem;
    }
    .card-item-title {
        font-size: 0.94rem;
    }
    .card-item-desc {
        font-size: 0.78rem;
    }
    .rose-top-right {
        width: 145px;
        right: -20px;
        top: 130px;
        opacity: 0.65;
    }
    .rose-top-left {
        width: 135px;
        left: -20px;
        top: 260px;
        opacity: 0.6;
    }
    .cta-promo-section {
        padding: 25px 0;
    }
    .cta-container {
        padding: 0 1.5rem;
    }
    .cta-banner-box {
        min-height: 250px;
        border-radius: 20px;
    }
    .cta-content-wrapper {
        padding: 1.8rem 1.5rem;
        max-width: 100%;
        align-items: flex-start;
        text-align: right;
        direction: rtl;
        gap: 0.75rem;
    }
    .cta-promo-section .cta-title {
        font-size: 16px !important;
        line-height: 1.4 !important;
        text-align: right !important;
    }
    .cta-promo-section .cta-description {
        font-size: 12px !important;
        line-height: 1.6 !important;
        text-align: right !important;
        max-width: 90% !important;
    }
    .cta-action-row {
        width: auto;
        display: flex;
        justify-content: flex-start;
    }
    .btn-cta-order {
        width: auto;
        font-size: 0.85rem;
        padding: 0.6rem 1.35rem;
        gap: 0.75rem;
    }
    .distinction-section {
        padding: 0;
    }
    .distinction-container {
        padding: 0 1.2rem;
    }
    .distinction-section .section-header {
        margin-bottom: 2.5rem;
    }
    .distinction-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.1rem;
    }
    .distinction-card.feature-point-card {
        padding: 0.95rem 1.25rem;
        border-radius: 16px;
    }
    .distinction-card .point-icon-box {
        width: 28px;
        height: 28px;
        font-size: 0.82rem;
        border-radius: 8px;
    }
    .distinction-card .point-title {
        font-size: 1.02rem;
    }
    .distinction-card .point-desc {
        font-size: 0.82rem;
    }
    .distinction-tagline-wrapper {
        margin-top: 1.8rem;
        margin-bottom: 0;
    }
    .distinction-tagline {
        font-size: 1.15rem;
        letter-spacing: 1px;
        padding: 0.5rem 1.4rem;
    }
    .distinction-bg-glow.glow-left {
        width: 240px;
        height: 240px;
        opacity: 0.7;
    }
    .testimonials-section {
        padding: 0 0 60px;
    }
    .testimonials-container {
        padding: 0 1.2rem;
    }
    .reviews-marquee-wrapper {
        padding: 2rem 0 2.5rem;
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }
    .reviews-marquee-group {
        gap: 2.5rem;
        padding-right: 2.5rem;
    }
    .review-card.feature-point-card {
        width: 310px;
        padding: 0.85rem 1.15rem 0.8rem;
        border-radius: 14px;
    }
    .reviewer-user-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.72rem;
    }
    .reviewer-meta .point-title {
        font-size: 0.95rem;
    }
    .review-card .point-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .trust-summary-pill {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.6rem 1.1rem;
        border-radius: 20px;
    }
    .trust-divider-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .details-section {
        padding: 0 0 1rem;
    }
    .details-bg-glow.glow-1 {
        top: 54%;
        right: 0;
        left: auto;
        transform: translate(50%, -50%);
        width: 600px;
        height: 600px;
        filter: blur(50px);
        opacity: 0.9;
    }
    .details-container {
        padding: 0 0.8rem;
    }
    .section-header {
        margin-bottom: 1.8rem;
    }
    .section-title {
        font-size: 1.38rem;
        line-height: 1.35;
        margin-bottom: 0.35rem;
    }
    .section-subtitle {
        font-size: 0.78rem;
        line-height: 1.5;
        padding: 0 0.4rem;
    }
    .details-showcase-grid {
        gap: 1.8rem;
    }
    .bottle-showcase-col {
        max-width: 245px;
    }
    .bottle-image-standalone {
        width: 100%;
        max-width: 245px;
    }
    .glow-line {
        stroke-width: 1.4px;
    }
    .mobile-glow-line {
        stroke-width: 2px;
    }
    .bottle-anchor.anchor-3 {
        right: 26px !important;
        width: 12px;
        height: 12px;
    }
    .features-list-wrapper {
        gap: 0.65rem;
    }
    .ingredient-showcase-row {
        gap: 0.75rem;
        padding: 0;
        border-radius: 14px;
        transform: translateY(16px);
    }
    .details-section.in-view .ingredient-showcase-row {
        transform: translateY(0) !important;
    }
    .ingredient-node-bubble {
        width: 54px;
        height: 54px;
    }
    .ingredient-card-box {
        padding: 0.52rem 0.85rem;
        border-radius: 12px;
    }
    .card-tier-pill {
        font-size: 0.62rem;
        padding: 0.08rem 0.45rem;
    }
    .card-item-title {
        font-size: 0.88rem;
        line-height: 1.25;
    }
    .card-item-desc {
        font-size: 0.76rem;
        line-height: 1.4;
    }
    .rose-top-right {
        width: 110px;
        right: -15px;
        top: 110px;
        opacity: 0.55;
    }
    .rose-top-left {
        width: 105px;
        left: -15px;
        top: 220px;
        opacity: 0.5;
    }
    .cta-promo-section {
        padding: 20px 0;
    }
    .cta-container {
        padding: 0 1rem;
    }
    .cta-banner-box {
        min-height: 215px;
        border-radius: 18px;
    }
    .cta-content-wrapper {
        padding: 1.4rem 1.1rem;
        max-width: 100%;
        align-items: flex-start;
        text-align: right;
        direction: rtl;
        gap: 0.65rem;
    }
    .cta-promo-section .cta-title {
        font-size: 16px !important;
        line-height: 1.35 !important;
        text-align: right !important;
    }
    .cta-promo-section .cta-description {
        font-size: 12px !important;
        line-height: 1.55 !important;
        text-align: right !important;
        max-width: 95% !important;
    }
    .cta-action-row {
        width: auto;
        display: flex;
        justify-content: flex-start;
    }
    .btn-cta-order {
        width: auto;
        font-size: 0.78rem;
        padding: 0.52rem 1.15rem;
        gap: 0.65rem;
    }
    .btn-cta-order .btn-icon-circle {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
    .distinction-section {
        padding: 0;
    }
    .distinction-container {
        padding: 0 0.85rem;
    }
    .distinction-section .section-header {
        margin-bottom: 2rem;
    }
    .distinction-grid {
        grid-template-columns: 1fr;
        gap: 1.15rem;
    }
    .distinction-card.feature-point-card {
        padding: 0.85rem 1.15rem;
        border-radius: 15px;
    }
    .distinction-card .point-icon-box {
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
        border-radius: 7px;
    }
    .distinction-card .point-title {
        font-size: 0.98rem;
    }
    .distinction-card .point-desc {
        font-size: 0.78rem;
    }
    .dist-glow-line {
        stroke-width: 1.8px;
    }
    .distinction-tagline-wrapper {
        margin-top: 1.4rem;
        margin-bottom: 0;
    }
    .distinction-tagline {
        font-size: 0.98rem;
        letter-spacing: 0.5px;
        padding: 0.45rem 1.2rem;
    }
    .distinction-bg-glow.glow-left {
        width: 190px;
        height: 190px;
        opacity: 0.6;
    }
    .testimonials-section {
        padding: 0 0 50px;
    }
    .testimonials-container {
        padding: 0 0.85rem;
    }
    .reviews-marquee-wrapper {
        padding: 1.8rem 0 2.2rem;
    }
    .reviews-marquee-group {
        gap: 2rem;
        padding-right: 2rem;
    }
    .review-card.feature-point-card {
        width: 275px;
        padding: 0.8rem 1rem 0.75rem;
        border-radius: 13px;
    }
    .reviewer-user-avatar {
        width: 26px;
        height: 26px;
        font-size: 0.68rem;
    }
    .reviewer-meta .point-title {
        font-size: 0.9rem;
    }
    .review-card .point-desc {
        font-size: 0.76rem;
        line-height: 1.45;
    }
}

/* ==========================================================================
   12. LUXURY FOOTER SECTION (فوتر ملوكي فاخر)
   ========================================================================== */
.luxury-footer {
    position: relative;
    background: #050204;
    padding: 70px 0 35px;
    overflow: hidden;
    z-index: 10;
    border-top: 1px solid rgba(220, 45, 75, 0.18);
}

.footer-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.footer-bg-glow.glow-top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(107, 12, 27, 0.35) 0%, rgba(35, 2, 8, 0.15) 50%, transparent 75%);
    filter: blur(50px);
}

.footer-bg-glow.glow-bottom-left {
    bottom: 0;
    left: 0;
    transform: translate(-30%, 30%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(53, 2, 12, 0.6) 0%, transparent 70%);
    filter: blur(45px);
}

.footer-container {
    max-width: 1560px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 2;
}

/* Sections Scroll Margin for Perfect Header Clearance */
#hero, #details, #cta, #distinction, #reviews, #footer {
    scroll-margin-top: 75px;
}

/* Mobile Drawer CTA Link */
.drawer-cta-link {
    margin-top: 0.8rem;
    padding: 0.65rem 2rem !important;
    background: var(--gradient-btn) !important;
    color: #1a0306 !important;
    font-weight: 800 !important;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Main Footer Grid (4 Columns) */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.85fr 1.1fr 1.15fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
}

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

/* Col 1: Brand Info */
.footer-brand-logo {
    display: inline-block;
    margin-bottom: 1.2rem;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-brand-logo:hover .footer-logo-img {
    transform: scale(1.04);
    opacity: 0.9;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    margin-bottom: 1.6rem;
    max-width: 420px;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(36, 5, 12, 0.6);
    border: 1px solid rgba(220, 45, 75, 0.28);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.08);
    color: #1a0306;
    background: var(--gradient-gold);
    border-color: #ffffff;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.social-btn.store {
    border-color: rgba(212, 175, 55, 0.5);
    color: #f7df94;
}

.social-btn.store:hover {
    background: linear-gradient(135deg, #d4af37 0%, #ba1c38 100%);
    border-color: #f7df94;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

/* Col Titles */
.footer-col-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-gold-light);
    margin: 0 0 1.4rem;
    position: relative;
    padding-bottom: 0.6rem;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* Col 2: Navigation Links */
.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav-list a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.25s ease, color 0.25s ease;
}

.footer-nav-list a i {
    font-size: 0.65rem;
    color: var(--color-gold-main);
    transition: transform 0.25s ease;
}

.footer-nav-list a:hover {
    color: var(--color-gold-light);
    transform: translateX(-6px);
}

.footer-nav-list a:hover i {
    transform: translateX(-3px);
}

/* Col 3: Care & Guarantees */
.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
}

.footer-info-list li i {
    color: var(--color-gold-light);
    font-size: 0.95rem;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.4));
}

/* Col 4: Contact */
.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}

.contact-item i {
    color: var(--color-gold-light);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.4rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(18, 140, 126, 0.25) 100%);
    border: 1px solid rgba(37, 211, 102, 0.45);
    border-radius: 50px;
    color: #25D366;
    font-size: 0.92rem;
    font-weight: 700;
    margin-top: 0.4rem;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.footer-whatsapp-btn i {
    font-size: 1.15rem;
}

.footer-whatsapp-btn:hover {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

/* 3. Footer Bottom Bar */
.footer-bottom-bar {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.copyright-text strong {
    color: var(--color-gold-light);
}

.back-to-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.25rem;
    background: rgba(36, 5, 12, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    color: var(--color-gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.back-to-top-btn i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover {
    background: var(--gradient-gold);
    color: #1a0306;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

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

/* Responsive Footer Media Queries */
@media (max-width: 1024px) {
    .footer-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .luxury-footer {
        padding: 50px 0 30px;
    }
    .footer-container {
        padding: 0 1.2rem;
    }
    .footer-main-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        margin-bottom: 2.5rem;
    }
    .footer-brand-desc {
        max-width: 100%;
    }
    .footer-bottom-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 1.2rem;
    }
}

@media (max-width: 480px) {
    .luxury-footer {
        padding: 40px 0 25px;
    }
    .footer-container {
        padding: 0 0.85rem;
    }
    .footer-col-title {
        font-size: 1.05rem;
        margin-bottom: 1.1rem;
    }
    .footer-whatsapp-btn {
        width: 100%;
    }
}

/* ==========================================================================
   13. LUXURY CHECKOUT POPUP MODAL (نافذة إتمام الطلب الفاخرة)
   ========================================================================== */
.order-modal-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 2, 4, 0.85);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    direction: rtl;
    text-align: right;
}

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

.order-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 540px;
    background: linear-gradient(165deg, rgba(26, 4, 8, 0.98) 0%, rgba(10, 2, 4, 0.99) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 35px rgba(107, 12, 27, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    overflow: hidden !important;
    transform: scale(0.94) translateY(18px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-bg-glow.glow-top {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(186, 28, 56, 0.45) 0%, transparent 70%);
    filter: blur(35px);
    pointer-events: none;
    z-index: 1;
}

.modal-close-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.modal-close-btn:hover {
    background: var(--color-burgundy-accent);
    color: #ffffff;
    border-color: rgba(235, 50, 85, 0.7);
    transform: rotate(90deg) scale(1.08);
}

.modal-body {
    padding: 1.5rem 1.7rem 1.3rem;
    position: relative;
    z-index: 2;
}

/* Modal Header */
.modal-header-box {
    text-align: center;
    margin-bottom: 0.85rem;
    padding: 0 1.5rem;
}

.modal-title {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.2rem;
    line-height: 1.25;
}

.modal-subtitle {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* Package Options Grid */
.pkg-form-group {
    margin-bottom: 0.75rem !important;
}

.package-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin-top: 0.25rem;
}

.package-card {
    position: relative;
    cursor: pointer;
}

.package-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0.35rem 0.45rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    transition: all 0.25s ease;
}

.package-card.active .package-card-inner,
.package-card:hover .package-card-inner {
    border-color: var(--color-gold-light);
    background: linear-gradient(145deg, rgba(107, 12, 27, 0.45) 0%, rgba(212, 175, 55, 0.12) 100%);
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.pkg-title {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.pkg-price {
    font-size: 0.96rem;
    font-weight: 900;
    color: var(--color-gold-light);
    margin-bottom: 0.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.15;
}

.pkg-note {
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 1px;
}

.pkg-note.free-shipping {
    color: #25D366;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.35);
}

.pkg-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.12rem 0.45rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold-light);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    line-height: 1.2;
    white-space: nowrap;
}

.pkg-badge.save {
    background: rgba(37, 211, 102, 0.18);
    color: #25D366;
    border-color: rgba(37, 211, 102, 0.45);
}

.pkg-badge.gift {
    background: linear-gradient(135deg, rgba(186, 28, 56, 0.45), rgba(212, 175, 55, 0.35));
    color: #ffccd5;
    border-color: rgba(255, 107, 133, 0.6);
    font-weight: 800;
    box-shadow: 0 0 8px rgba(255, 107, 133, 0.25);
}

.package-card.pkg-gift-deal.active .package-card-inner,
.package-card.pkg-gift-deal:hover .package-card-inner {
    border-color: #ff6b85;
    box-shadow: 0 4px 16px rgba(255, 107, 133, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Form Styles */
.form-group {
    margin-bottom: 0.65rem;
    position: relative;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.25rem;
}

.form-label i {
    color: var(--color-gold-light);
    margin-left: 0.25rem;
    font-size: 0.74rem;
}

.required-star {
    color: #ff4d6d;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .input-icon {
    position: absolute;
    right: 0.85rem;
    color: rgba(212, 175, 55, 0.75);
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 2;
}

.form-input {
    width: 100%;
    height: 38px;
    padding: 0.45rem 2.2rem 0.45rem 0.75rem;
    background: rgba(14, 3, 6, 0.8);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.84rem;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-gold-light);
    background: rgba(24, 4, 9, 0.95);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.phone-input-wrap {
    display: flex;
    align-items: stretch;
    height: 38px;
}

.phone-prefix-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.65rem;
    background: rgba(36, 5, 12, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    border-left: none;
    border-radius: 0 10px 10px 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 700;
    white-space: nowrap;
    direction: ltr;
}

.phone-input {
    border-radius: 10px 0 0 10px !important;
    padding: 0.45rem 0.75rem !important;
    text-align: left;
    direction: ltr;
}

.form-select {
    padding-left: 1.8rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d4af37'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 0.65rem center;
    background-size: 16px;
}

.form-select option {
    background: #140205;
    color: #ffffff;
}

.field-error-msg {
    display: none;
    font-size: 0.7rem;
    color: #ff4d6d;
    margin-top: 0.2rem;
    padding-right: 0.2rem;
}

.form-group.has-error .form-input {
    border-color: #ff4d6d !important;
    box-shadow: 0 0 8px rgba(255, 77, 109, 0.35) !important;
}

.form-group.has-error .field-error-msg {
    display: block;
}

/* Gift Wrapping Option inside Modal */
.gift-wrapping-option-wrap {
    margin-top: 0.65rem;
    margin-bottom: 0.25rem;
    width: 100%;
}

.gift-wrapping-label {
    display: block;
    cursor: pointer;
    user-select: none;
}

.gift-wrapping-checkbox {
    display: none;
}

.gift-wrapping-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.52rem 0.9rem;
    background: rgba(30, 6, 12, 0.65);
    border: 1px dashed rgba(212, 175, 55, 0.45);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.gift-box-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.custom-checkbox-indicator {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    background: rgba(15, 3, 6, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: transparent;
    transition: all 0.25s ease;
}

.gift-wrapping-checkbox:checked + .gift-wrapping-box .custom-checkbox-indicator {
    background: var(--gradient-gold);
    border-color: #f7df94;
    color: #1a0306;
}

.gift-wrapping-checkbox:checked + .gift-wrapping-box {
    background: rgba(60, 10, 24, 0.75);
    border-style: solid;
    border-color: var(--color-gold-light);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

.gift-main-icon {
    font-size: 1.15rem;
    color: var(--color-gold-light);
    transition: transform 0.3s ease;
}

.gift-wrapping-checkbox:checked + .gift-wrapping-box .gift-main-icon {
    transform: scale(1.15) rotate(-8deg);
    color: #ffccd5;
}

.gift-text-group {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.gift-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #f7df94;
    line-height: 1.3;
}

.gift-sub {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.2;
}

.gift-badge {
    font-size: 0.78rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ba1c38, #6b0c1b);
    padding: 0.2rem 0.55rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    white-space: nowrap;
}

/* Submit Button */
.form-submit-row {
    margin-top: 0.85rem;
    margin-bottom: 0.55rem;
}

.btn-modal-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.78rem 1.6rem;
    background: var(--gradient-btn);
    border: 1px solid var(--color-gold-light);
    border-radius: 50px;
    color: #1a0306;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.55);
}

.submit-spinner {
    display: none;
    font-size: 1rem;
}

.btn-modal-submit.is-loading .submit-spinner {
    display: inline-block;
}

.btn-modal-submit.is-loading .submit-text {
    display: none;
}

/* Trust Footer */
.modal-trust-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    text-align: center;
    flex-wrap: wrap;
    margin-top: 0.2rem;
}

.modal-trust-footer i {
    color: var(--color-gold-light);
    margin-left: 0.2rem;
}

.trust-dot {
    color: rgba(212, 175, 55, 0.5);
}

/* Success Container */
.modal-success-container {
    text-align: center;
    padding: 0.8rem 0.5rem;
}

.success-icon-wrap {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2) 0%, rgba(18, 140, 126, 0.35) 100%);
    border: 2px solid #25D366;
    color: #25D366;
    font-size: 2rem;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.success-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.success-message {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.95rem;
    line-height: 1.5;
}

.gold-text {
    color: var(--color-gold-light);
}

.success-details-card {
    background: rgba(36, 5, 12, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    margin-bottom: 0.95rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.detail-label {
    color: rgba(255, 255, 255, 0.65);
}

.detail-val {
    color: #ffffff;
    font-weight: 700;
}

.success-note {
    font-size: 0.78rem;
    color: var(--color-gold-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.success-action-row {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.btn-whatsapp-followup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.86rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.25s ease;
}

.btn-whatsapp-followup:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.55);
}

.btn-close-success {
    padding: 0.55rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-close-success:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Modal Responsive */
@media (max-width: 580px) {
    .order-modal-backdrop {
        padding: 0.5rem;
    }
    .modal-body {
        padding: 1.3rem 0.95rem 1rem;
    }
    .modal-title {
        font-size: 1.15rem;
    }
    .modal-header-box {
        padding: 0 1rem;
        margin-bottom: 0.65rem;
    }
    .package-options-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.35rem;
    }
    .package-card-inner {
        padding: 0.4rem 0.2rem 0.35rem;
    }
    .pkg-title {
        font-size: 0.68rem;
    }
    .pkg-price {
        font-size: 0.86rem;
    }
    .pkg-badge {
        font-size: 0.55rem;
        padding: 0.08rem 0.3rem;
    }
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .form-group {
        margin-bottom: 0.55rem;
    }
    .btn-modal-submit {
        font-size: 0.9rem;
        padding: 0.72rem 1.2rem;
    }
}

@media (max-height: 550px) {
    .order-modal-dialog {
        max-height: 96vh;
        overflow-y: auto !important;
    }
}

