/* ==========================================================================
   AURILIA LUXURY E-COMMERCE STYLES
   ========================================================================== */

:root {
    /* Color Palette (Luxury) */
    --clr-white: #ffffff;
    --clr-cream: #ffffff;
    --clr-cream-dark: #f9f9f9;
    --clr-black: #000000;
    --clr-gray-dark: #222222;
    --clr-gray: #666666;
    --clr-gray-light: #EBEBEB;
    --clr-gold: #000000;
    --clr-gold-light: #EBEBEB;
    --clr-gold-dark: #000000;
    
    --clr-success: #2e7d32;
    --clr-warning: #ed6c02;
    --clr-error: #d32f2f;

    /* Typography */
    --font-heading: 'Amiri', serif;
    --font-body: 'Tajawal', sans-serif;
    --font-arabic: 'Tajawal', sans-serif;

    /* Spacing & Layout */
    --space-xs: 0.5rem;   /* 8px */
    --space-sm: 1rem;     /* 16px */
    --space-md: 2rem;     /* 32px */
    --space-lg: 4rem;     /* 64px */
    --space-xl: 8rem;     /* 128px */
    
    --container-width: 1200px;
    --container-padding: 1rem;
    
    /* Effects */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-blur: 25px;
}


/* =========================================
   RESET & BASE
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M4.5.79v22.42l6.56-6.57h9.29L4.5.79z'%3E%3C/path%3E%3C/svg%3E"), auto;
}

html {
    /* Global touch-action: always allow vertical scroll.
       Cascades to ALL children — fixes scroll-freeze when touching images on
       Android + iOS without creating any internal scroll container. */
    touch-action: pan-y;
}

/* Base interactive elements cursor */
a, button, [role="button"], input[type="submit"], input[type="button"], select, 
.btn, .luxury-nav-link, .luxury-action-btn, .mobile-bottom-nav__item, .lang-btn, 
.qty-btn, .search-trigger, .cart-trigger, .js-quick-view, .js-add-to-cart, .product-card-lux {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' stroke='%23000' stroke-width='2' stroke-linejoin='round' d='M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z'/%3E%3C/svg%3E"), pointer !important;
}

body {
    font-family: var(--font-body);
    color: var(--clr-gray-dark);
    line-height: 1.6;
    background-color: var(--clr-white);
    -webkit-font-smoothing: antialiased;
    -webkit-touch-callout: none; /* prevent iOS long-press preview on all elements */
}

body.bg-ivory {
    background-color: #ffffff;
}

body.nav-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-black);
    font-weight: 500;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-user-drag: none;
    -webkit-touch-callout: none; /* prevents iOS drag-to-preview, unblocks vertical scroll */
    user-select: none;
    pointer-events: none;       /* prevents iOS treating image touch as drag gesture */
}
/* Restore clicks for images nested inside interactive elements */
a img, button img, a > img, button > img,
.js-add-to-cart img, .lv-product-card__link img,
.lv-category-bubble img {
    pointer-events: auto;
}

/* #main-surface-wrapper must NOT have scroll-behavior/overflow — that creates
   an internal scroll container on iOS which traps touch events on images */

/* will-change only on hero (continuous animation), not hover-only images */
.lv-hero__img {
    will-change: transform;
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Base Typo Classes */
.ar-text {
    font-family: var(--font-arabic);
    line-height: 1.8;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-md); }
.w-100 { width: 100%; }

.section-padding {
    padding: var(--space-lg) 0;
}

.bg-light {
    background-color: var(--clr-cream);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.1rem 2.5rem;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.78rem;
    border: 1.5px solid transparent;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    z-index: 1;
}

.btn--primary {
    background-color: var(--clr-black);
    color: var(--clr-white);
    border-color: var(--clr-black);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn--primary:hover {
    color: var(--clr-black);
    border-color: var(--clr-gold);
}

.btn--primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--outline {
    background-color: transparent;
    border-color: var(--clr-black);
    color: var(--clr-black);
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn--outline:hover {
    color: var(--clr-white);
}

.btn--outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--full {
    width: 100%;
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--clr-black);
    margin-top: var(--space-sm);
    text-decoration: underline;
    text-decoration-color: var(--clr-gold);
    text-underline-offset: 4px;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
/* =========================================
   LUXURY HEADER (MAISON STYLE)
   ========================================= */
:root {
    --header-height: 100px;
}

@media (max-width: 991px) {
    :root {
        --header-height: 70px;
    }
}

body {
    padding-top: var(--header-height);
}

.announcement-bar {
    background: linear-gradient(90deg, var(--clr-black) 0%, #1a1a1a 100%);
    color: var(--clr-white);
    padding: 0.6rem 0;
    text-align: center;
    font-size: 0.68rem;
    font-family: 'Tajawal', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: transform 0.4s var(--transition-normal);
}

@media (max-width: 576px) {
    .announcement-bar {
        font-size: 0.72rem; /* Slightly larger for readability on tiny screens */
        letter-spacing: 0.1em;
        padding: 0.7rem 0;
    }
}

.luxury-header {
    height: var(--header-height);
    position: fixed;
    top: 38px; /* Dynamic height of announcement bar */
    left: 0;
    width: 100%;
    background-color: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.luxury-header.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.92);
    top: 0;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.luxury-header__inner {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 991px) {
    .luxury-header__inner {
        padding: 0 1rem;
    }
}

/* Header Sections (Left, Center, Right) */
.luxury-header__left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.luxury-header__center {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luxury-header__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem;
}

.luxury-header__nav {
    display: none;
    gap: 2.5rem;
    margin-left: 1.5rem;
}

@media (min-width: 992px) {
    .luxury-header__nav { display: flex; }
    .md-hide { display: none !important; }
}

.luxury-nav-link {
    font-family: 'Amiri', serif !important;
    font-size: 1.05rem;
    color: var(--clr-black);
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s var(--transition-normal);
}

.luxury-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--clr-gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-nav-link:hover {
    color: var(--clr-gold-dark);
}

.luxury-nav-link:hover::after, .luxury-nav-link.active::after {
    width: 100%;
}

/* Logo in Center */
.luxury-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.luxury-logo__main {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    letter-spacing: 0.28em;
    line-height: 1;
    color: var(--clr-black);
    text-transform: uppercase;
    transition: letter-spacing 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-logo:hover .luxury-logo__main {
    letter-spacing: 0.35em;
    color: var(--clr-gold-dark);
}

.logo-reveal {
    animation: luxuryLogoReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes luxuryLogoReveal {
    0% { opacity: 0; transform: translateY(10px); filter: blur(5px); }
    100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (max-width: 576px) {
    .luxury-logo__main {
        font-size: 1.4rem;
        letter-spacing: 0.2em;
        margin-right: -0.2em;
    }
}

/* Language Dropdown Styles */
.lang-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--clr-black);
    padding: 0.4rem;
    transition: transform var(--transition-fast);
}

.lang-btn:hover {
    transform: scale(1.05);
}

.lang-globe-icon {
    font-size: 1.5rem !important;
    font-weight: 300 !important;
}

.lang-dropdown-menu {
    position: absolute;
    top: 130%;
    right: 0;
    background-color: var(--clr-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 1010;
    border: 1px solid rgba(0,0,0,0.04);
}

.lang-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--clr-gray-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: background-color var(--transition-fast);
}

.lang-dropdown-item:hover {
    background-color: var(--clr-cream-dark);
    color: var(--clr-black);
}

.lang-dropdown-item.active {
    background-color: var(--clr-cream);
    color: var(--clr-black);
    font-weight: 700;
}

.lang-flag {
    font-size: 1rem;
}

@media (max-width: 991px) {
    .luxury-header__right {
        gap: 0.6rem;
    }
}

.luxury-action-btn {
    color: var(--clr-black);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.luxury-action-btn .material-symbols-outlined {
    font-size: 1.7rem;
    font-weight: 200;
}

.luxury-cart-count {
    position: absolute;
    top: -4px;
    right: -6px; /* Anchor to the right for consistent LTR/RTL behavior */
    left: auto;
    background-color: var(--clr-black);
    color: var(--clr-white);
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    font-size: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* Pillow shape for larger numbers */
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    border: 1px solid var(--clr-white); /* Luxury touch */
}

/* RTL Flip for Cart Badge (Correct mirroring) */
[dir="rtl"] .luxury-cart-count {
    right: auto;
    left: -6px;
}

/* Mobile Nav Group (Burger + Globe) */
.mobile-nav-group {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 50px;
    padding: 4px 14px;
    gap: 14px;
    background: transparent;
}

.mobile-only-inline {
    display: flex;
}

.mobile-nav-group .lang-btn {
    padding: 0;
}

.mobile-nav-group .luxury-header__menu-btn {
    padding: 6px 0;
    width: 22px;
}

/* Burger Toggle */
.luxury-header__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
}

@media (min-width: 992px) {
    .luxury-header__menu-btn { display: none; }
}

.burger-line {
    width: 100%;
    height: 1.2px; /* Thinner, minimalist line */
    background-color: var(--clr-black);
    transition: all 0.3s;
}

/* Mobile Menu Full Screen Overlay (Luxury Pro Max) */
.luxury-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%); /* Premium slide from left */
    opacity: 0;
    visibility: hidden;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s, visibility 0.6s;
}

.luxury-mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-close {
    position: absolute;
    top: 30px;
    right: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
    padding: 8px;
}

.mobile-menu-close .material-symbols-outlined {
    font-size: 28px;
    font-weight: 200;
    color: #111;
}

.mobile-menu-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 120px 40px 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.mobile-nav-links > a {
    font-family: 'Newsreader', serif;
    font-size: 32px;
    color: #111;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    line-height: 1.2;
}

.luxury-mobile-menu.active .mobile-nav-links > a {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered entry */
.luxury-mobile-menu.active .mobile-nav-links > a:nth-child(1) { transition-delay: 0.1s; }
.luxury-mobile-menu.active .mobile-nav-links > a:nth-child(2) { transition-delay: 0.18s; }
.luxury-mobile-menu.active .mobile-nav-links > a:nth-child(3) { transition-delay: 0.26s; }
.luxury-mobile-menu.active .mobile-nav-links > a:nth-child(4) { transition-delay: 0.34s; }
.luxury-mobile-menu.active .mobile-nav-links > a:nth-child(5) { transition-delay: 0.42s; }
.luxury-mobile-menu.active .mobile-nav-links > a:nth-child(6) { transition-delay: 0.5s; }

.mobile-nav-links > a.active {
    color: #000;
    font-style: italic;
}

.mobile-nav-links > a span {
    position: relative;
    display: inline-block;
}

.mobile-nav-links > a:hover {
    color: #000;
    padding-left: 10px;
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.luxury-mobile-menu.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-lang {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.mobile-menu-lang a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #a3a3a3;
    text-transform: uppercase;
    font-weight: 500;
}

.mobile-menu-lang a.active {
    color: #000;
    font-weight: 700;
    border-bottom: 1.5px solid #000;
    padding-bottom: 2px;
}

.wa-luxury-link {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #a3a3a3;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
}

/* RTL Adjustments */
html[dir="rtl"] .luxury-mobile-menu {
    transform: translateX(100%);
}
html[dir="rtl"] .luxury-mobile-menu.active {
    transform: translateX(0);
}
html[dir="rtl"] .mobile-nav-links > a {
    transform: translateX(30px);
    text-align: right;
}
html[dir="rtl"] .luxury-mobile-menu.active .mobile-nav-links > a {
    transform: translateX(0);
}
html[dir="rtl"] .mobile-menu-close {
    right: auto;
    left: 24px;
}

/* Scrolled State Announcement Hide */
.scrolled-active .announcement-bar {
    transform: translateY(-100%);
}

.scrolled-active .luxury-header {
    top: 0;
}

/* =========================================
   DESKTOP-ONLY ELEMENTS (Hide on mobile)
   ========================================= */
@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

/* =========================================
   MOBILE BOTTOM NAVIGATION BAR
   ========================================= */
.mobile-bottom-nav {
    display: none; /* Hidden on desktop */
}

@media (max-width: 991px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 76px;
        background-color: rgba(0, 0, 0, 0.06); /* Darkened slightly for premium depth */
        backdrop-filter: blur(var(--glass-blur));
        -webkit-backdrop-filter: blur(var(--glass-blur));
        border-top: 1px solid rgba(0, 0, 0, 0.03);
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        z-index: 1000;
        padding: 0 1rem;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.04);
    }

    /* Add bottom padding to body so content isn't hidden behind the bar */
    body {
        padding-bottom: 76px; /* Match height */
    }
}

.mobile-bottom-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px; /* Perfect vertical alignment spacing */
    text-decoration: none;
    color: var(--clr-gray);
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 10px 8px; /* Breathing space inside item */
    border-radius: 12px;
    flex: 1;
    max-width: 85px; /* Keeps them grouped elegantly */
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Subtle animation on tap */
    -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-nav__item:active {
    transform: scale(0.92); /* Subtle animation on tap */
}

.mobile-bottom-nav__item .material-symbols-outlined {
    font-size: 1.5rem;
    font-weight: 200; /* Minimal, thin line style */
    font-variation-settings: 'wght' 200, 'FILL' 0;
    transition: all 0.3s ease;
}

/* On very small screens, reduce icon size further */
@media (max-width: 360px) {
    .mobile-bottom-nav__item {
        padding: 10px 4px;
    }
    .mobile-bottom-nav__item .material-symbols-outlined {
        font-size: 1.3rem;
    }
}

.mobile-bottom-nav__item.active {
    color: var(--clr-black);
    background-color: var(--clr-cream); /* Creamy highlight */
}

.mobile-bottom-nav__item.active .material-symbols-outlined {
    font-weight: 400; /* Slightly darker */
    font-variation-settings: 'wght' 400, 'FILL' 1; /* Filled variant if supported */
}

.mobile-bottom-nav__label {
    font-family: 'Tajawal', var(--font-body), sans-serif;
    font-size: 0.55rem;
    font-weight: 500; /* Small, elegant */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}


/* Cart Badge on Bottom Nav */
.mobile-bottom-nav__badge {
    position: absolute;
    top: 2px;
    right: 50%;
    transform: translateX(calc(50% + 14px));
    background-color: var(--clr-black);
    color: var(--clr-white);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    border: 1.5px solid var(--clr-white);
}

/* WhatsApp float — stay above mobile bottom nav */
@media (max-width: 991px) {
    .whatsapp-float {
        bottom: 100px !important;
        right: 14px !important;
        width: 48px !important;
        height: 48px !important;
    }
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero__content {
    position: relative;
    z-index: 2;
    color: var(--clr-white);
    max-width: 800px;
}

.hero__title {
    font-size: 5.5rem;
    letter-spacing: 15px;
    color: var(--clr-white);
    margin-bottom: 2rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero__subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 3.5rem;
    letter-spacing: 1px;
}

.hero__subtitle-ar {
    display: block;
    margin-top: 15px;
    font-size: 2rem;
}

/* =========================================
   HOMEPAGE INNER SECTIONS
   ========================================= */
.intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.intro__text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.intro__image img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.gallery-strip {
    display: flex;
    height: 300px;
    position: relative;
}

.gallery-strip__item {
    flex: 1;
    overflow: hidden;
}

.gallery-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-strip__item:hover img {
    transform: scale(1.05);
}

.gallery-strip__overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--clr-black);
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: var(--space-md);
}

.product-card {
    position: relative;
    background-color: var(--clr-white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    transform: translateY(-8px);
    border-color: rgba(221,203,180,0.3);
}

.product-card__image-link {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background-color: var(--clr-cream);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card__image {
    transform: scale(1.08);
}

.product-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(17,17,17,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    color: var(--clr-white);
    font-family: 'Tajawal', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.product-card:hover .product-card__overlay {
    opacity: 1;
}

.product-card__info {
    padding: 1.5rem 1.8rem;
    text-align: center;
}

.product-card__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-gray);
    margin-bottom: 0.5rem;
}

.product-card__title {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.product-card__title-ar {
    font-size: 0.9rem;
    color: var(--clr-gray);
    margin-bottom: 0.8rem;
    font-family: var(--font-arabic);
}

.product-card__price {
    font-weight: 700;
    color: var(--clr-gold-dark);
    font-family: 'Tajawal', sans-serif;
    letter-spacing: 0.05em;
}

/* =========================================
   PAGE HEADERS (Internal pages)
   ========================================= */
.page-header {
    border-bottom: 1px solid var(--clr-gray-light);
}

.page-header__title {
    font-size: 2.5rem;
}

.page-header__subtitle {
    color: var(--clr-gold-dark);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--clr-gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: var(--clr-gold-dark);
}

.breadcrumbs-bar {
    padding: 1.5rem 0;
    background-color: var(--clr-cream);
    font-size: 0.72rem;
    color: var(--clr-gray);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.breadcrumbs-bar a {
    color: var(--clr-gray);
    transition: color 0.3s ease;
}

.breadcrumbs-bar a:hover {
    color: var(--clr-gold-dark);
}

/* =========================================
   SHOP PAGE (BOUTIQUE)
   ========================================= */
.shop-layout {
    display: flex;
    gap: var(--space-lg);
}

.shop-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.filter-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--clr-black);
    padding-bottom: 0.5rem;
}

.filter-list li {
    margin-bottom: 0.8rem;
}

.filter-list a {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--clr-gray);
}

.filter-list a:hover, .filter-list a.active {
    color: var(--clr-black);
    font-weight: 500;
}

.shop-content {
    flex: 1;
}

.empty-state {
    text-align: center;
    padding: var(--space-lg) 0;
    background-color: var(--clr-cream);
    border: 1px dashed var(--clr-gray-light);
}

.empty-state__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* =========================================
   PRODUCT SINGLE PAGE
   ========================================= */
.product-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.product-single__main-image img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    background-color: var(--clr-cream);
}

.product-single__category {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--clr-gray);
    display: block;
    margin-bottom: 1rem;
}

.product-single__title {
    font-size: 2.5rem;
}

.product-single__title-ar {
    font-size: 1.8rem;
    color: var(--clr-gold-dark);
    margin-bottom: 1rem;
}

.product-single__price {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
}
.status-in-stock { background-color: #e8f5e9; color: var(--clr-success); }
.status-out-stock { background-color: #ffebee; color: var(--clr-error); }

.qty-control {
    display: inline-flex;
    border: 1px solid var(--clr-gray-light);
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid var(--clr-gray-light);
    border-right: 1px solid var(--clr-gray-light);
    text-align: center;
    font-weight: 600;
    appearance: textfield;
}

.product-single__features .feature-item {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}
.feature-icon {
    display: inline-block;
    width: 24px;
    text-align: center;
}

.border-top { border-top: 1px solid var(--clr-gray-light); }

/* =========================================
   CART & CHECKOUT
   ========================================= */
.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-md);
    align-items: start;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    padding: 1rem;
    border-bottom: 1px solid var(--clr-gray-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--clr-gray-light);
    vertical-align: middle;
}

.cart-table__product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-table__img {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--clr-gray);
    cursor: pointer;
    font-size: 1.2rem;
}
.btn-remove:hover { color: var(--clr-error); }

.cart-summary {
    background-color: var(--clr-cream);
    padding: 2rem;
    border-radius: 8px;
}

.cart-summary__title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-gray-light);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-summary__total {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

/* Checkout */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-lg);
    align-items: start;
}

.checkout-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--clr-black);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--clr-gray-light);
    background-color: var(--clr-white);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-black);
}

.checkout-summary-col {
    background-color: var(--clr-cream);
    padding: 2rem;
    border-radius: 8px;
}

.checkout-items {
    margin-bottom: 1.5rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}
.checkout-item-info { flex: 1; }
.checkout-item-info h5 { font-family: var(--font-body); font-size: 0.9rem; margin-bottom: 2px; }
.checkout-item-info span { font-size: 0.8rem; color: var(--clr-gray); }
.checkout-item-total { font-weight: 600; font-size: 0.95rem; }

.payment-method-box {
    padding: 1.5rem;
    border: 1px solid var(--clr-gold);
    background-color: var(--clr-gold-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}
.alert-error {
    background-color: #ffebee;
    color: var(--clr-error);
    border: 1px solid #ffcdd2;
}
.alert-warning {
    background-color: #fff3e0;
    color: var(--clr-warning);
    border: 1px solid #ffe0b2;
}
.alert-success, .form-success {
    background-color: #e8f5e9;
    color: var(--clr-success);
    border: 1px solid #c8e6c9;
    padding: 2rem;
    border-radius: 8px;
}


/* =========================================
   CONTACT
   ========================================= */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.contact-card__icon {
    font-size: 1.5rem;
    color: var(--clr-gold-dark);
}

/* =========================================
   FOOTER & WHATSAPP
   ========================================= */
.footer {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding: var(--space-lg) 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__logo {
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: var(--clr-white);
    margin-bottom: 1rem;
}

.footer__tagline {
    color: var(--clr-gray-light);
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--clr-gray-light);
}
.social-link:hover { color: var(--clr-gold); }

.footer h4 {
    color: var(--clr-white);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer__links a, .footer__contact p {
    display: block;
    color: var(--clr-gray-light);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}
.footer__links a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #25d366;
    border-radius: 50%;
    opacity: 0;
    animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-float:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}


/* =========================================
   RESPONSIVE (MOBILE FIRST -> SCALES DOWN)
   ========================================= */

@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary-col { order: -1; } /* Summary first on mobile */
    .hero__title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--clr-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left var(--transition-normal);
        z-index: 101;
        box-shadow: var(--shadow-lg);
    }
    .header__nav.open { left: 0; }
    .header__menu-btn { display: block; }
    .nav-overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 100;
    }
    
    .intro__inner { grid-template-columns: 1fr; }
    .shop-layout { flex-direction: column; }
    .shop-sidebar { width: 100%; }
    .product-single { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    
    /* Cart Table Mobile Responsive */
    .cart-table thead { display: none; }
    .cart-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--clr-gray-light);
        padding: 1rem;
        position: relative;
    }
    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        padding: 0.5rem 0;
    }
    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.8rem;
    }
    .cart-table__product { flex-direction: column; align-items: flex-start; }
    .cart-table__product::before { display: none; }
    .cart-table__actions { position: absolute; top: 1rem; right: 1rem; }
}

@media (max-width: 576px) {
    .product-grid, .product-grid--3, .products-section__grid { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__social { justify-content: center; }
    .hero__title { font-size: 2.5rem; letter-spacing: 5px; }
    .hero__subtitle { font-size: 1rem; }
}

/* =========================================
   TOAST NOTIFICATION (Luxury Style)
   ========================================= */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background-color: var(--clr-black);
    color: var(--clr-white);
    padding: 1rem 2rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    border-left: 4px solid var(--clr-gold);
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 1.2rem;
    color: var(--clr-gold);
}

.toast-message {
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .toast-container {
        right: 10px;
        left: 10px;
        top: 10px;
    }
    .toast {
        min-width: auto;
        width: 100%;
    }
}

/* =========================================
   NEW SHOPPING BAG (VELMORA STYLE)
   ========================================= */
.cart-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.bag-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--clr-gray-light);
    align-items: flex-start;
}

.bag-item__image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    background-color: #fff;
}

.bag-item__details {
    flex: 1;
}

.bag-item__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.bag-item__meta {
    font-size: 0.85rem;
    color: var(--clr-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.bag-item__qty-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.bag-item__actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.bag-item__link {
    font-size: 0.85rem;
    text-decoration: underline;
    color: var(--clr-gray);
    text-underline-offset: 3px;
}

.bag-item__link:hover {
    color: var(--clr-black);
}

.bag-item__price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
}

/* Updated Summary */
.bag-summary {
    background-color: #F0EEE9;
    padding: 2.5rem;
    border-radius: 0;
}

.bag-summary__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.bag-summary__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.bag-summary__total-row {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--clr-gray-light);
    font-size: 1.2rem;
}

.bag-summary__total-val {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--clr-gray-light);
}

.trust-badge {
    text-align: center;
}

.trust-badge__icon {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.trust-badge__text {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-black);
    line-height: 1.4;
}

/* Media Queries for Bag */
@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .bag-item { flex-direction: column; align-items: center; text-align: center; }
    .bag-item__image { width: 100%; height: auto; aspect-ratio: 1; }
    .bag-item__price { margin-top: 1rem; }
    .bag-summary { margin-top: 2rem; }
    .trust-badges { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================
   LUXURY EDITORIAL & LOOKBOOK
   ========================================= */
.editorial-section {
    display: flex;
    align-items: center;
    gap: 0;
    padding: var(--space-xl) 0;
    position: relative;
}

.editorial__image {
    width: 60%;
    height: 700px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.editorial__text-box {
    width: 600px;
    background-color: var(--clr-white);
    padding: 5rem;
    margin-right: -10%; /* Overlap for RTL */
    box-shadow: var(--shadow-md);
    z-index: 2;
    position: relative;
    border-top: 5px solid var(--clr-gold);
}

.editorial__quote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    font-style: italic;
    color: var(--clr-gold-dark);
}

.editorial__drop-cap::first-letter {
    font-family: var(--font-heading);
    font-size: 5rem;
    float: right;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    color: var(--clr-gold);
    line-height: 0.7;
}

/* Lookbook Journal */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(10, 80px);
    gap: 2rem;
    margin-top: 4rem;
}

.journal__item {
    position: relative;
    overflow: hidden;
    background-color: var(--clr-cream);
}

.journal__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.journal__item:hover img { transform: scale(1.05); }

.journal__item--1 { grid-area: 1 / 1 / 7 / 7; }
.journal__item--2 { grid-area: 2 / 8 / 6 / 13; }
.journal__item--3 { grid-area: 7 / 7 / 11 / 13; }
.journal__item--4 { grid-area: 8 / 2 / 11 / 6; }


/* =========================================
   LUXURY CHECKOUT STYLES
   ========================================= */
.bg-ivory { background-color: #ffffff; }

.checkout-header { margin-bottom: 4rem; }
.checkout-header__title { font-family: var(--font-heading); font-size: 2.8rem; margin-bottom: 0.5rem; letter-spacing: 1px; color: var(--clr-black); }
.checkout-header__subtitle { color: var(--clr-gray); font-size: 1.1rem; }

.checkout-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 4rem; align-items: flex-start; }

.checkout-card { background: #fff; padding: 4rem; box-shadow: 0 15px 50px rgba(0,0,0,0.02); border: 1px solid rgba(0,0,0,0.03); }
.checkout-card--summary { padding: 3rem; background: #Fdfdfd; border: 1px solid #eee; position: sticky; top: 120px; }
.checkout-card__title { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 3rem; padding-bottom: 1rem; border-bottom: 1px solid var(--clr-gray-light); letter-spacing: 0.5px; }

.luxury-form .form-group { margin-bottom: 2.5rem; position: relative; }
.luxury-form label { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; color: var(--clr-black); }
.luxury-form .form-control { border: none; border-bottom: 1px solid #ddd; border-radius: 0; padding: 1rem 0; font-size: 1.2rem; transition: all 0.4s; background: transparent; width: 100%; outline: none; }
.luxury-form .form-control:focus { border-bottom-color: var(--clr-gold); padding-right: 10px; }

.payment-info { background: #fcfcfc; padding: 2rem; border: 1px dashed var(--clr-gold); margin-top: 3rem; border-radius: 4px; }
.payment-badge { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; font-weight: 600; font-size: 1.1rem; }
.payment-hint { font-size: 0.9rem; color: var(--clr-gray); }

/* Checkout Items Summary */
.checkout-items { max-height: 400px; overflow-y: auto; padding-right: 15px; }
.checkout-item { display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid #f9f9f9; }
.checkout-item:last-child { border-bottom: none; }
.checkout-item__img { width: 80px; height: 80px; object-fit: cover; background: #fff; }
.checkout-item__info { flex: 1; }
.checkout-item__info h5 { font-size: 1.05rem; margin-bottom: 0.4rem; font-family: var(--font-heading); }
.checkout-item__info span { font-size: 0.9rem; color: var(--clr-gray); font-weight: 500; }
.checkout-item__total { font-weight: 600; font-size: 1.05rem; color: var(--clr-gold); }

.summary-details__row { display: flex; justify-content: space-between; margin-bottom: 1.2rem; font-size: 1rem; color: #555; }
.summary-details__total { border-top: 2px solid var(--clr-black); padding-top: 2rem; margin-top: 2rem; font-weight: 700; font-size: 1.4rem; color: var(--clr-black); }
.checkout-trust { font-size: 0.8rem; color: var(--clr-gray); text-transform: uppercase; letter-spacing: 2px; margin-top: 3rem; }

/* Success State Decoration */
.checkout-success { padding: 8rem 0; max-width: 800px; margin: 0 auto; position: relative; }
.success-icon { font-size: 6rem; margin-bottom: 3rem; display: block; animation: float 4s ease-in-out infinite; }
.checkout-success__title { font-family: var(--font-heading); font-size: 3.5rem; margin-bottom: 2rem; letter-spacing: 1px; }
.checkout-success__message { font-size: 1.4rem; margin-bottom: 1.5rem; color: #333; line-height: 1.8; }
.checkout-success__note { font-size: 1.1rem; color: var(--clr-gray); margin-bottom: 4rem; max-width: 500px; margin-left: auto; margin-right: auto; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@media (max-width: 1200px) {
    .checkout-layout { grid-template-columns: 1fr; gap: 3rem; }
    .checkout-card--summary { position: sticky; top: 0; }
}

@media (max-width: 768px) {
    .checkout-card { padding: 2.5rem; }
    .checkout-header__title { font-size: 2.2rem; }
    .checkout-success__title { font-size: 2.5rem; }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .editorial-section { flex-direction: column; }
    .editorial__image { width: 100%; height: 400px; }
    .editorial__text-box { width: 90%; margin-right: 0; margin-top: -3rem; padding: 2rem; }
    .journal-grid { display: flex; flex-direction: column; height: auto; }
    .journal__item { height: 350px; margin-bottom: 1rem; }
}

/* ========================================= */

/* =========================================
   SEARCH OVERLAY
   ========================================= */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    z-index: 3000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8vh;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: 100%;
    max-width: 700px;
    padding: 0 2rem;
    position: relative;
}

.search-overlay__close {
    position: fixed;
    top: 2rem;
    left: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}
.search-overlay__close:hover {
    background: #f0f0f0;
}
.search-overlay__close .material-symbols-outlined {
    font-size: 1.8rem;
    color: #111;
}

.search-overlay__content {
    text-align: center;
}

.search-overlay__logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 10px;
    color: #111;
    margin-bottom: 3rem;
    opacity: 0.3;
}

.search-overlay__form {
    margin-bottom: 2.5rem;
}
.search-overlay__input-wrap {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #111;
    padding: 0.8rem 0;
    gap: 1rem;
    transition: border-color 0.3s;
}
.search-overlay__input-wrap:focus-within {
    border-color: #333;
}
.search-overlay__icon {
    font-size: 1.5rem;
    color: #111;
}
.search-overlay__input {
    flex: 1;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent;
    font-family: 'Amiri', serif;
    font-size: 1.4rem;
    color: #111;
}
html[dir="rtl"] .search-overlay__input {
    text-align: right;
    direction: rtl;
}
html[dir="ltr"] .search-overlay__input {
    text-align: left;
    direction: ltr;
}
.search-overlay__input::placeholder {
    color: #bbb;
    font-style: italic;
}
.search-overlay__clear {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}
.search-overlay__clear .material-symbols-outlined {
    font-size: 1.2rem;
    color: #999;
}
.search-overlay__clear:hover .material-symbols-outlined {
    color: #111;
}

.search-overlay__results {
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}
.search-overlay__hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    color: #aaa;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.9rem;
}

.search-result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.search-result-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    color: #111;
    transition: all 0.3s;
    text-align: right;
}
.search-result-item:hover {
    border-color: #111;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.search-result-item__img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    background: #f9f9f9;
    flex-shrink: 0;
}
.search-result-item__info {
    flex: 1;
    min-width: 0;
}
.search-result-item__name {
    font-family: 'Amiri', serif;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-item__cat {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 0.3rem;
}
.search-result-item__price {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #111;
}

.search-no-results {
    padding: 3rem 0;
    text-align: center;
    color: #999;
    font-family: 'Tajawal', sans-serif;
}
.search-no-results .material-symbols-outlined {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
    display: block;
}

.search-results-count {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 1.5rem;
    text-align: right;
    font-weight: 600;
}

@media (max-width: 576px) {
    .search-result-grid {
        grid-template-columns: 1fr;
    }
    .search-overlay__input {
        font-size: 1.1rem;
    }
}

/* Mobile Header Centering Adjustments */
@media (max-width: 992px) {
    .luxury-header__inner {
        position: relative;
    }
    .luxury-header__logo-wrapper {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        flex: none;
        width: auto;
    }
    .luxury-logo__main {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
    .luxury-logo__sub {
        font-size: 0.55rem;
        letter-spacing: 4px;
    }
    
    .luxury-header__actions {
        position: static;
    }
    
    /* Hamburger on Left */
    .luxury-header__menu-btn {
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        z-index: 20;
    }
    
    /* Search & Cart on Right */
    .luxury-header .search-trigger {
        position: absolute;
        right: 4.5rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }
    .luxury-header .cart-trigger {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        z-index: 20;
    }
}
/* =========================================
   FOOTER STYLING
   ========================================= */
.luxury-footer {
    background-color: #0c0c0c;
    color: #fff;
    padding: 3.5rem 0 2.5rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}
@media (min-width: 768px) {
    .luxury-footer { padding: 5rem 0 3rem; }
}
.luxury-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    padding: 0 1.5rem;
}
@media (min-width: 768px) {
    .luxury-footer-top {
        align-items: flex-start;
        text-align: inherit;
        gap: 4rem;
        margin-bottom: 3rem;
    }
}
@media (min-width: 1024px) {
    .luxury-footer-top {
        flex-direction: row;
        justify-content: space-between;
        gap: 6rem;
        padding: 0 2rem;
    }
}
.footer-brand-name {
    font-family: 'Newsreader', serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #fff;
    text-decoration: none;
    display: inline-block;
}
.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a3a3a3;
    max-width: 320px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .footer-brand-desc { margin: 0; }
}
.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
    flex: 1;
    max-width: 700px;
    width: 100%;
    text-align: left;
}
html[dir="rtl"] .footer-nav-grid {
    text-align: right;
}
@media (min-width: 768px) {
    .footer-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}
.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
    color: #fff;
}
.luxury-footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.luxury-footer-links a, .luxury-footer-links p {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.luxury-footer-links a:hover {
    color: #fff;
}
.footer-col-reseaux {
    grid-column: 1 / -1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-col-reseaux .luxury-footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.social-link svg {
    flex-shrink: 0;
}
@media (min-width: 768px) {
    .footer-col-reseaux {
        grid-column: auto;
        text-align: left;
        align-items: flex-start;
    }
    html[dir="rtl"] .footer-col-reseaux {
        text-align: right;
        align-items: flex-end;
    }
    .footer-col-reseaux .luxury-footer-links {
        flex-direction: column;
        gap: 0.4rem;
    }
}
.luxury-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
    .luxury-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding: 2rem 2rem 0;
    }
}
.luxury-footer-copyright, .footer-payment-icons {
    font-size: 0.7rem;
    color: #777;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
html[dir="rtl"] .luxury-footer { text-align: right; }
html[dir="ltr"] .luxury-footer { text-align: left; }

/* WhatsApp Float — Mobile-safe positioning */
.whatsapp-float {
    position: fixed;
    bottom: 95px; /* Raised above page content */
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
    z-index: 190; /* BELOW sticky-bar (z-index 200) so it never overlaps it */
    transition: transform 0.3s;
}

/* On desktop, restore default bottom & z-index */
@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
        z-index: 1000; /* Above everything on desktop */
    }
}

/* On mobile, push further down when sticky-bar is visible (.page-produit) */
body.page-produit .whatsapp-float {
    bottom: 100px; /* Clears the sticky buy bar (52px + 20px padding + safe area) */
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* =========================================
   CINEMATIC INTRO & PRELOADER
   ========================================= */
.hero-intro-video {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    background: #ffffff !important;
    z-index: 100000 !important;
    pointer-events: auto;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), visibility 1.2s;
}

.hero-intro-video.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden;
}

body.intro-active {
    overflow: hidden !important;
}

body.intro-active #main-surface-wrapper,
body.intro-active #header,
body.intro-active .announcement-bar,
body.intro-active .mobile-bottom-nav {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

@keyframes preloaderAutoHide {
    0%, 90% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
}

.luxury-preloader { 
    animation: preloaderAutoHide 3.5s ease-in-out forwards; 
}

.luxury-preloader.hidden { 
    animation: none; 
    opacity: 0; 
    visibility: hidden; 
}

@keyframes forceRevealContent {
    0%, 90% { opacity: 0; }  
    100% { opacity: 1; pointer-events: auto; }
}

body.intro-active #main-surface-wrapper,
body.intro-active #header,
body.intro-active .announcement-bar,
body.intro-active .mobile-bottom-nav {
    animation: forceRevealContent 4s ease forwards;
}
.luxury-preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.luxury-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.luxury-preloader__content {
    text-align: center;
}

.luxury-preloader__logo {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    letter-spacing: 0.4em;
    color: #111;
    margin-bottom: 1.5rem;
    animation: luxuryPulse 2.5s ease-in-out infinite;
}

@keyframes luxuryPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.98); }
}

.luxury-preloader__line-wrap {
    width: 200px;
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.luxury-preloader__line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    background: #111;
    animation: luxuryLine 1.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes luxuryLine {
    0% { left: -50px; }
    100% { left: 200px; }
}

.luxury-preloader__status {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #999;
}

/* =========================================
   PRODUCT QUICK VIEW MODAL
   ========================================= */
.quickview-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.quickview-modal.active {
    opacity: 1;
    visibility: visible;
}

.quickview-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

.quickview-modal__container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(30px) scale(0.98);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}

.quickview-modal.active .quickview-modal__container {
    transform: translateY(0) scale(1);
}

.quickview-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.quickview-modal__close:hover {
    background: #111;
    color: #fff;
}

.quickview-modal__image {
    background: #f9f9f9;
    height: 100%;
}

.quickview-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quickview-modal__content {
    padding: 4rem;
    overflow-y: auto;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.quickview-modal__cat {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #999;
    margin-bottom: 1rem;
    display: block;
}

.quickview-modal__title {
    font-family: 'Amiri', serif;
    font-size: 2.5rem;
    color: #111;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.quickview-modal__price {
    font-family: 'Tajawal', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
}

.quickview-modal__desc {
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.quickview-modal__actions {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    flex-direction: row-reverse;
}

.quickview-modal__view-btn {
    flex: 1;
    padding: 1.2rem;
    background: transparent;
    border: 1px solid #111;
    color: #111;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s;
}

.quickview-modal__view-btn:hover {
    background: #f9f9f9;
}

.quickview-modal__add-btn {
    flex: 2;
    padding: 1.2rem;
    background: #111;
    color: #fff;
    border: none;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.4s;
}

.quickview-modal__add-btn:hover {
    background: #333;
}

@media (max-width: 992px) {
    .quickview-modal { padding: 1rem; }
    .quickview-modal__container { grid-template-columns: 1fr; grid-template-rows: auto 1fr; max-height: 95vh; }
    .quickview-modal__image { height: 300px; }
    .quickview-modal__content { padding: 2rem; }
    .quickview-modal__title { font-size: 1.8rem; }
}

/* Add to existing product cards */
.product-card-lux__quickview {
    width: 48px;
    height: 48px;
    background: #fff;
    color: #111;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.product-card-lux:hover .product-card-lux__quickview {
    transform: translateY(0);
    opacity: 1;
}

.product-card-lux__quickview:hover {
    background: #111;
    color: #fff;
}

/* Floating Animation for Preloader Status */
.luxury-preloader__status {
    animation: statusFade 2s infinite;
}

@keyframes statusFade {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}


/* =========================================
   CUSTOM LUXURY CURSOR (ULTRA-PREMIUM)
   ========================================= */
.cursor-dot,
.cursor-circle {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background-color: #ffffff; /* Must be white for difference mode */
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s ease, 
                opacity 0.3s ease;
    will-change: transform;
}

.cursor-circle {
    width: 32px;
    height: 32px;
    background-color: transparent;
    border: 1.2px solid rgba(255, 255, 255, 0.4);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                border 0.4s ease, 
                opacity 0.4s ease,
                background-color 0.4s ease;
}

/* Hover state for interactive elements */
.cursor-circle.cursor-active {
    width: 85px;
    height: 85px;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.1);
}

.cursor-dot.cursor-active {
    width: 0;
    height: 0;
    opacity: 0;
}

/* Magnetic State (Applied via JS) */
.cursor-circle.cursor-magnetic {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

/* Contextual Label Styling */
.cursor-label {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    color: #ffffff;
    mix-blend-mode: difference;
    font-family: 'Tajawal', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.cursor-label.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Native cursors enabled (removed old JS cursor hide) */

/* Disable on mobile */
@media (pointer: coarse) {
    .cursor-dot, .cursor-circle {
        display: none !important;
    }
}

/* =========================================
   LENIS SMOOTH SCROLL CORE
   ========================================= */
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-scrolling iframe {
    pointer-events: none;
}
/* =========================================
   LANGUAGE SWITCHER
   ========================================= */
.lang-switcher {
    margin-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.44s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    color: var(--clr-black);
    cursor: pointer;
}

.lang-btn:hover {
    background: var(--clr-black);
    color: var(--clr-white);
    border-color: var(--clr-black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.lang-btn__text {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.lang-btn .material-symbols-outlined {
    font-size: 1.1rem;
    font-weight: 200;
}

/* =========================================
   LUXURY LANGUAGE FADE ANIMATION
   ========================================= */
body.lang-switching {
    pointer-events: none;
    overflow: hidden !important;
}

body.lang-switching .main-surface {
    animation: luxuryFadeOut 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes luxuryFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
    100% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
        filter: blur(10px);
    }
}

body.lang-switching-in .main-surface {
    animation: luxuryFadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes luxuryFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(1.02);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

/* ========================
   PRODUCT GALLERY (LUXURY)
   ======================== */

.product-single {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-gallery__main {
    aspect-ratio: 4/5;
    background: #fdfdfd;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-gallery__thumbs {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: #ddd transparent;
}

.product-gallery__thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.product-gallery__thumb:hover img {
    opacity: 1;
}

.product-gallery__thumb.active {
    border-color: var(--on-surface);
}

.product-gallery__thumb.active img {
    opacity: 1;
}

@media (max-width: 968px) {
    .product-single {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ========================
   QUICK VIEW MODAL
   ======================== */
.quickview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.quickview-modal.active {
    opacity: 1;
    visibility: visible;
}

.quickview-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.quickview-modal__container {
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.quickview-modal.active .quickview-modal__container {
    transform: translateY(0);
}

.quickview-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    color: var(--clr-black);
}

.quickview-modal__image {
    background: #f9f9f9;
    overflow: hidden;
}

.quickview-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quickview-modal__content {
    padding: 3rem 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.quickview-modal__cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--clr-gray);
    margin-bottom: 0.5rem;
}

.quickview-modal__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--clr-black);
}

.quickview-modal__price {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--clr-gray-dark);
}

.quickview-modal__desc {
    font-size: 0.95rem;
    color: var(--clr-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.quickview-modal__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quickview-modal__add-btn,
.quickview-modal__view-btn {
    width: 100%;
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.quickview-modal__add-btn {
    background: var(--clr-black);
    color: var(--clr-white);
}

.quickview-modal__add-btn:hover {
    background: var(--clr-gold);
    color: var(--clr-black);
}

.quickview-modal__view-btn {
    background: transparent;
    color: var(--clr-black);
    border: 1px solid var(--clr-black);
}

.quickview-modal__view-btn:hover {
    background: var(--clr-gray-light);
}

@media (max-width: 768px) {
    .quickview-modal__container {
        grid-template-columns: 1fr;
        max-height: 85vh;
        align-content: start;
    }
    .quickview-modal__image {
        height: 250px;
    }
    .quickview-modal__content {
        padding: 1.5rem;
    }
    .quickview-modal__title {
        font-size: 1.4rem;
    }
    .quickview-modal__desc {
        margin-bottom: 1.5rem;
    }
}

/* ==========================================================================
   AURILIA — SCROLL REVEAL ANIMATIONS
   ========================================================================== */

/*
 * Base hidden state for all animated elements.
 * Elements with [data-au-anim] start invisible.
 * The .au-visible class is added by IntersectionObserver (scroll-animations.js).
 */

[data-au-anim] {
    /* Shared transition */
    transition-duration: 0.75s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--au-delay, 0ms);
    will-change: transform, opacity;
}

/* ── Fade Up (default) ─────────────────────────── */
[data-au-anim="fade-up"] {
    opacity: 0;
    transform: translateY(32px);
    transition-property: opacity, transform;
}

[data-au-anim="fade-up"].au-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Fade In ───────────────────────────────────── */
[data-au-anim="fade"] {
    opacity: 0;
    transition-property: opacity;
}

[data-au-anim="fade"].au-visible {
    opacity: 1;
}

/* ── Slide from Left ───────────────────────────── */
[data-au-anim="slide-left"] {
    opacity: 0;
    transform: translateX(-40px);
    transition-property: opacity, transform;
}

[data-au-anim="slide-left"].au-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Slide from Right ──────────────────────────── */
[data-au-anim="slide-right"] {
    opacity: 0;
    transform: translateX(40px);
    transition-property: opacity, transform;
}

[data-au-anim="slide-right"].au-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Scale Up (for images / hero blocks) ──────── */
[data-au-anim="scale"] {
    opacity: 0;
    transform: scale(0.94);
    transition-property: opacity, transform;
}

[data-au-anim="scale"].au-visible {
    opacity: 1;
    transform: scale(1);
}

/* ── Respect reduced-motion preference ────────── */
@media (prefers-reduced-motion: reduce) {
    [data-au-anim] {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================
   BUTTON LOADING STATE
   ========================================= */
.btn--loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn--loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: btn-spin 0.8s ease-in-out infinite;
}

.btn--outline.btn--loading::after {
    border-top-color: var(--clr-black);
    border-color: rgba(0,0,0,0.1);
}

@keyframes btn-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================
   UTILITIES & CLEANUP CLASSES
   ========================================== */

.text-gold-dark { color: var(--clr-gold-dark); }
.text-gray { color: var(--clr-gray); }
.text-red { color: #d32f2f; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }

.w-20 { width: 5rem; }
.h-20 { height: 5rem; }

/* Branded Placeholder Pattern */
.bg-placeholder {
    background-color: #fdfaf6;
    background-image: url('../img/placeholder.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.pdp-mobile-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pdp-mobile-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Material Highlights Bar */
.highlights-bar {
    padding: 3rem 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.highlight-dot {
    width: 6px;
    height: 6px;
    background: #333333;
    border-radius: 50%;
}

.highlight-text {
    font-family: 'Tajawal', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #111;
}

/* Success UI */
.success-icon-wrap svg {
    width: 80px;
    height: 80px;
    color: var(--clr-gold-dark);
    margin: 0 auto 1.5rem;
    display: block;
}

/* Trust Badges - Checkout */
.checkout-trust-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--clr-gold-dark);
    margin-bottom: 0.5rem;
}

.checkout-trust-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--clr-gray);
}

/* Quick View Custom Trigger Style (Override for UI consistency) */
.product-card-lux__quickview--visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}


/* ==========================================
   HOMEPAGE SPECIFIC STYLES
   ========================================== */

    /* ==========================================
   HOMEPAGE — AURILIA LUXURY ANIMATIONS
   ========================================== */

    /* Hero Slider (Swiper) */
    .hero-swiper {
        width: 100%;
        height: 100vh;
        position: relative;
    }

    .hero-slider-item {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slider-item__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        transition: transform 0.8s ease;
    }

    .hero-slider-item__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 60%);
        z-index: 1;
    }

    .hero-slider-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: #fff;
        max-width: 900px;
        padding: 0 2rem;
        transform: translateY(40px);
        opacity: 0;
        transition: all 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .swiper-slide-active .hero-slider-content {
        transform: translateY(0);
        opacity: 1;
    }

    .swiper-slide-active .hero-slider-item__bg {
        transform: scale(1.05);
    }

    .hero-slider-title {
        font-family: 'Amiri', serif;
        font-size: clamp(3rem, 10vw, 7rem);
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-slider-title span.accent {
        font-style: italic;
        color: #d4c1a3;
        font-weight: 300;
    }

    .hero-slider-desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-slider-btn {
        display: inline-flex;
        align-items: center;
        padding: 1.2rem 3.5rem;
        background: #fff;
        color: #111;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        font-size: 0.75rem;
        transition: all 0.4s;
    }

    .hero-slider-btn:hover {
        background: #d4c1a3;
        transform: scale(1.05);
    }

    /* Custom Swiper pagination */
    .swiper-pagination-bullet {
        background: #fff !important;
        opacity: 0.4;
    }

    .swiper-pagination-bullet-active {
        opacity: 1;
        width: 25px !important;
        border-radius: 5px !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: #fff !important;
        filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
    }

    @media (max-width: 768px) {

        .swiper-button-next,
        .swiper-button-prev {
            display: none !important;
        }
    }

    /* Scroll reveal... */
    .reveal {
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
            transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 {
        transition-delay: 0.1s;
    }

    .reveal-delay-2 {
        transition-delay: 0.2s;
    }

    .reveal-delay-3 {
        transition-delay: 0.3s;
    }

    .reveal-delay-4 {
        transition-delay: 0.4s;
    }

    .reveal-delay-5 {
        transition-delay: 0.5s;
    }

    .reveal-delay-6 {
        transition-delay: 0.6s;
    }

    /* Hero parallax */
    .hero-home {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: clip;
        /* clip instead of hidden so sticky/transform children still work */
        background: #ffffff;
    }

    .hero-home__bg-shape {
        position: absolute;
        border-radius: 50%;
        filter: blur(120px);
        opacity: 0.15;
        pointer-events: none;
        z-index: 0;
    }

    .hero-home__bg-shape--1 {
        width: 600px;
        height: 600px;
        background: #333333;
        top: -200px;
        right: -100px;
        animation: floatShape 20s ease-in-out infinite;
    }

    .hero-home__bg-shape--2 {
        width: 400px;
        height: 400px;
        background: #E0E0E0;
        bottom: -150px;
        left: -100px;
        animation: floatShape 15s ease-in-out infinite reverse;
    }

    .hero-home__bg-shape--3 {
        width: 300px;
        height: 300px;
        background: rgba(0, 0, 0, 0.05);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: pulseShape 10s ease-in-out infinite;
    }

    @keyframes floatShape {

        0%,
        100% {
            transform: translate(0, 0) scale(1);
        }

        33% {
            transform: translate(30px, -40px) scale(1.05);
        }

        66% {
            transform: translate(-20px, 20px) scale(0.95);
        }
    }

    @keyframes pulseShape {

        0%,
        100% {
            opacity: 0.2;
            transform: translate(-50%, -50%) scale(1);
        }

        50% {
            opacity: 0.5;
            transform: translate(-50%, -50%) scale(1.15);
        }
    }

    .hero-home__container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 4rem;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
        align-items: center;
        position: relative;
        z-index: 1;
        width: 100%;
        padding-top: clamp(5rem, 10vh, 7rem);
        /* Account for fixed header */
        padding-bottom: clamp(3rem, 6vh, 5rem);
        min-height: 100svh;
    }

    /* Hero text side */
    .hero-home__content {
        text-align: right;
        padding: 2rem 0;
    }

    .hero-home__badge {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.5rem 1.4rem;
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 50px;
        font-family: 'Tajawal', sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.35em;
        color: #111;
        margin-bottom: 2.5rem;
        opacity: 0;
        animation: fadeSlideUp 1s 0.3s forwards;
    }

    .hero-home__badge::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #333333;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.5;
            transform: scale(1.5);
        }
    }

    .hero-home__title {
        font-family: 'Amiri', serif;
        font-size: clamp(2.5rem, 8vw, 7rem);
        color: #111;
        line-height: 1.05;
        /* improved balanced line-height */
        margin-bottom: 2rem;
        opacity: 0;
        animation: fadeSlideUp 1s 0.5s forwards;
        letter-spacing: 0.02em;
    }

    .elegance-text {
        display: block;
        font-weight: 700;
        /* Bold and strong */
        color: #111;
    }

    .eternelle-text {
        display: block;
        font-style: italic;
        font-weight: 300;
        color: #d4c1a3;
        /* Luxury creamy color */
    }

    .hero-home__desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.1rem;
        color: #555;
        line-height: 1.9;
        max-width: 480px;
        margin-left: auto;
        margin-bottom: 3rem;
        opacity: 0;
        animation: fadeSlideUp 1s 0.7s forwards;
    }

    .hero-home__actions {
        display: flex;
        flex-direction: row-reverse;
        gap: 1.5rem;
        align-items: center;
        opacity: 0;
        animation: fadeSlideUp 1s 0.9s forwards;
    }

    .hero-home__top-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.9rem 2.8rem;
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.15);
        /* Soft border */
        border-radius: 50px;
        /* Rounded */
        color: #111;
        font-family: 'Tajawal', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        text-decoration: none;
        margin-bottom: 3rem;
        opacity: 0;
        animation: fadeSlideUp 1s 0.3s forwards;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-home__top-cta:hover {
        background: #f5f1eb;
        /* creamy hover effect */
        border-color: #d4c1a3;
        color: #111;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    }

    .hero-home__btn-primary {
        display: none;
        /* Hide old primary button to keep minimal */
    }

    .hero-home__btn-primary span {
        position: relative;
        z-index: 1;
    }

    .hero-home__btn-primary .material-symbols-outlined {
        position: relative;
        z-index: 1;
        font-size: 1.1rem;
        transition: transform 0.4s;
    }

    .hero-home__btn-primary:hover .material-symbols-outlined {
        transform: translateX(-4px);
    }

    .hero-home__btn-secondary {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: #111;
        text-decoration: none;
        position: relative;
        padding-bottom: 0.4rem;
    }

    .hero-home__btn-secondary::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 1px;
        background: #333333;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s ease;
    }

    .hero-home__btn-secondary:hover::after {
        transform: scaleX(1);
    }

    /* Hero Photo Collage */
    .hero-home__visual {
        position: relative;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        opacity: 0;
        animation: fadeScale 1.2s 0.4s forwards;
        min-width: 0;
    }

    .hero-photo-grid {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 0.75rem;
    }

    /* First image: spans both columns, tall */
    .hero-photo-grid__item--main {
        grid-column: 1 / -1;
        aspect-ratio: 16/9;
        overflow: hidden;
        position: relative;
        display: block;
    }

    /* Side images: smaller square */
    .hero-photo-grid__item {
        aspect-ratio: 1/1;
        overflow: hidden;
        position: relative;
        display: block;
    }

    .hero-photo-grid__item img,
    .hero-photo-grid__item--main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
        filter: brightness(0.97);
        display: block;
    }

    .hero-photo-grid__item:hover img,
    .hero-photo-grid__item--main:hover img {
        transform: scale(1.06);
        filter: brightness(1.04);
    }

    /* Subtle dark overlay on hover */
    .hero-photo-grid__item::after,
    .hero-photo-grid__item--main::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        transition: background 0.4s ease;
        pointer-events: none;
    }

    .hero-photo-grid__item:hover::after,
    .hero-photo-grid__item--main:hover::after {
        background: rgba(0, 0, 0, 0.08);
    }

    /* Mobile */
    @media (max-width: 768px) {
        .hero-photo-grid {
            gap: 0.5rem;
            margin-top: 2rem;
        }

        .hero-photo-grid__item--main {
            aspect-ratio: 4/3;
        }
    }

    /* Desktop refinements */
    @media (min-width: 992px) {
        .hero-photo-grid {
            gap: 0.85rem;
        }
    }

    /* Scroll indicator */
    .hero-home__scroll {
        position: absolute;
        bottom: 2.5rem;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        z-index: 5;
        opacity: 0;
        animation: fadeSlideUp 1s 1.2s forwards;
    }

    .hero-home__scroll-text {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.6rem;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        color: #999;
        writing-mode: vertical-rl;
        font-weight: 600;
    }

    .hero-home__scroll-line {
        width: 1px;
        height: 50px;
        background: linear-gradient(to bottom, #333333, transparent);
        animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
        0% {
            transform: scaleY(0);
            transform-origin: top;
        }

        50% {
            transform: scaleY(1);
            transform-origin: top;
        }

        51% {
            transform-origin: bottom;
        }

        100% {
            transform: scaleY(0);
            transform-origin: bottom;
        }
    }

    /* General animations */
    @keyframes fadeSlideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeScale {
        from {
            opacity: 0;
            transform: scale(0.92);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* ==========================================
   MARQUEE TRUST BAR
   ========================================== */
    .trust-marquee {
        padding: 2rem 0;
        background: #111;
        overflow: hidden;
        position: relative;
    }

    .trust-marquee__track {
        display: flex;
        gap: 5rem;
        animation: marqueeScroll 25s linear infinite;
        width: max-content;
    }

    .trust-marquee__item {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        white-space: nowrap;
        font-family: 'Tajawal', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.6);
    }

    .trust-marquee__item .material-symbols-outlined {
        font-size: 1rem;
        color: #333333;
    }

    @keyframes marqueeScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* ==========================================
   SECTION HEADING STYLE
   ========================================== */
    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header__tag {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        color: #333333;
        margin-bottom: 1rem;
        display: block;
    }

    .section-header__title {
        font-family: 'Amiri', serif;
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        color: #111;
        margin-bottom: 1.2rem;
        font-style: italic;
    }

    .section-header__line {
        width: 60px;
        height: 1px;
        background: #333333;
        margin: 0 auto 1.5rem;
    }

    .section-header__desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 1rem;
        color: #555;
        max-width: 550px;
        margin: 0 auto;
        line-height: 1.8;
    }

    /* ==========================================
   PRODUCTS GRID
   ========================================== */
    .products-section {
        padding: 7rem 0 5rem;
        background: #fff;
    }

    .products-section__grid {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }

    .product-card-lux {
        position: relative;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.04);
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-card-lux:hover {
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
        transform: translateY(-8px);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .product-card-lux__image-wrap {
        position: relative;
        aspect-ratio: 4/5;
        background: #f9f9f9;
        overflow: hidden;
    }

    .product-card-lux__image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-card-lux:hover .product-card-lux__image-wrap img {
        transform: scale(1.08);
    }

    /* Quick View Overlay */
    .product-card-lux__overlay {
        position: absolute;
        inset: 0;
        background: rgba(17, 17, 17, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .product-card-lux:hover .product-card-lux__overlay {
        opacity: 1;
    }

    .product-card-lux__overlay a {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.9rem 2.2rem;
        background: #fff;
        color: #111;
        font-family: 'Tajawal', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        text-decoration: none;
        transform: translateY(20px);
        transition: transform 0.4s 0.1s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-card-lux:hover .product-card-lux__overlay a {
        transform: translateY(0);
    }

    .product-card-lux__overlay a:hover {
        background: #333333;
        color: #111;
    }

    /* Category Tag */
    .product-card-lux__tag {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(6px);
        font-family: 'Tajawal', sans-serif;
        font-size: 0.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        padding: 0.4rem 0.8rem;
        color: #111;
        z-index: 2;
    }

    .product-card-lux__info {
        padding: 1.5rem 1.8rem;
        text-align: center;
    }

    .product-card-lux__name {
        font-family: 'Amiri', serif;
        font-size: 1.15rem;
        color: #111;
        margin-bottom: 0.3rem;
        font-weight: 500;
    }

    .product-card-lux__name-fr {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.75rem;
        color: #999;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 0.8rem;
    }

    .product-card-lux__price {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        color: #555555;
        letter-spacing: 0.05em;
    }

    /* Afficher Plus Button */
    .show-more-wrap {
        text-align: center;
        margin-top: 4rem;
    }

    .show-more-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1.1rem 3.5rem;
        background: transparent;
        border: 1.5px solid #111;
        color: #111;
        font-family: 'Tajawal', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: color 0.4s, border-color 0.4s;
    }

    .show-more-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #111;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 0;
    }

    .show-more-btn:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .show-more-btn:hover {
        color: #fff;
        border-color: #111;
    }

    .show-more-btn span {
        position: relative;
        z-index: 1;
    }

    .show-more-btn .material-symbols-outlined {
        position: relative;
        z-index: 1;
        font-size: 1.1rem;
        transition: transform 0.4s;
    }

    .show-more-btn:hover .material-symbols-outlined {
        transform: translateX(-4px);
    }

    /* ==========================================
   CRAFTSMANSHIP / ATELIER SECTION
   ========================================== */
    .atelier-hero {
        position: relative;
        width: 100%;
        height: 75vh;
        overflow: hidden;
        background: #000;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .atelier-hero video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        opacity: 0.85;
    }

    .atelier-hero__overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.4) 0%,
                transparent 30%,
                transparent 70%,
                #ffffff 100%);
        z-index: 1;
    }

    .atelier-hero__content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 0 2rem;
    }

    .atelier-hero__scroll {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        opacity: 0.8;
    }

    .atelier-section {
        padding: 8rem 0;
        background: #ffffff;
        overflow: hidden;
    }

    .atelier-section__inner {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .atelier-section__images {
        position: relative;
    }

    .atelier-section__main-img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        filter: grayscale(20%);
        transition: filter 1.5s ease;
    }

    .atelier-section__images:hover .atelier-section__main-img {
        filter: grayscale(0);
    }

    .atelier-section__detail-img {
        position: absolute;
        top: -30px;
        left: -30px;
        width: 200px;
        height: 260px;
        object-fit: cover;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
        border: 6px solid #fff;
        z-index: 2;
        transition: transform 0.6s ease;
    }

    .atelier-section__images:hover .atelier-section__detail-img {
        transform: translate(10px, 10px);
    }

    .atelier-section__text {
        text-align: right;
    }

    .atelier-section__tag {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        color: #333333;
        margin-bottom: 1.5rem;
        display: block;
    }

    .atelier-section__title {
        font-family: 'Amiri', serif;
        font-size: clamp(2.5rem, 5vw, 3.5rem);
        color: #111;
        line-height: 1.2;
        margin-bottom: 2rem;
    }

    .atelier-section__title span {
        font-weight: 300;
        font-style: italic;
    }

    .atelier-section__desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 1.05rem;
        color: #555;
        line-height: 1.9;
        margin-bottom: 3rem;
    }

    .atelier-features {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .atelier-feature {
        display: flex;
        align-items: flex-start;
        gap: 1.2rem;
        flex-direction: row-reverse;
        text-align: right;
    }

    .atelier-feature__num {
        font-family: 'Amiri', serif;
        font-size: 2rem;
        color: #333333;
        opacity: 0.5;
        line-height: 1;
        min-width: 40px;
        transition: opacity 0.3s;
    }

    .atelier-feature:hover .atelier-feature__num {
        opacity: 1;
    }

    .atelier-feature__title {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #111;
        margin-bottom: 0.4rem;
    }

    .atelier-feature__desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.9rem;
        color: #777;
        line-height: 1.7;
    }

    .atelier-section__cta {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 3rem;
        font-family: 'Tajawal', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: #111;
        text-decoration: none;
        border-bottom: 2px solid rgba(0, 0, 0, 0.2);
        padding-bottom: 0.4rem;
        transition: border-color 0.4s;
    }

    .atelier-section__cta:hover {
        border-color: #333333;
    }

    /* ==========================================
   NEWSLETTER MINIMAL
   ========================================== */
    .newsletter-section {
        padding: 6rem 0;
        background: #111;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .newsletter-section::before {
        content: 'AURILIA';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: 'Amiri', serif;
        font-size: 15rem;
        color: rgba(255, 255, 255, 0.02);
        pointer-events: none;
        letter-spacing: 0.2em;
        white-space: nowrap;
    }

    .newsletter-section__title {
        font-family: 'Amiri', serif;
        font-size: 2.2rem;
        color: #fff;
        margin-bottom: 1rem;
        font-style: italic;
        position: relative;
        z-index: 1;
    }

    .newsletter-section__desc {
        font-family: 'Tajawal', sans-serif;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 2.5rem;
        letter-spacing: 0.05em;
        position: relative;
        z-index: 1;
    }

    .newsletter-section__btn {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        padding: 1rem 3rem;
        background: transparent;
        border: 1px solid rgba(0, 0, 0, 0.2);
        color: #333333;
        font-family: 'Tajawal', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        text-decoration: none;
        transition: all 0.4s;
        position: relative;
        z-index: 1;
    }

    .newsletter-section__btn:hover {
        background: #333333;
        color: #111;
        border-color: #333333;
    }

    /* ==========================================
   RESPONSIVE
   ========================================== */
    @media (max-width: 992px) {
        .hero-home {
            min-height: auto;
            padding-top: 5rem;
        }

        .hero-home__container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
            padding: 0 1.5rem 4rem;
        }

        .hero-home__content {
            text-align: center;
            order: 2;
            background-color: var(--glass-bg);
            backdrop-filter: blur(var(--glass-blur));
            -webkit-backdrop-filter: blur(var(--glass-blur));
            padding: 2.5rem 1.5rem;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: var(--shadow-lg);
            margin: -4rem 1rem 0;
            z-index: 10;
            position: relative;
        }

        .hero-home__visual {
            order: 1;
            width: 100%;
        }

        .hero-home__title {
            font-size: clamp(2rem, 10vw, 3.5rem);
            margin-bottom: 1.5rem;
        }

        .hero-home__desc {
            font-size: 0.95rem;
            margin: 0 auto 2.5rem;
            line-height: 1.7;
        }

        .hero-home__actions {
            flex-direction: column;
            gap: 1rem;
        }

        .hero-home__top-cta {
            width: 100%;
            padding: 1.1rem;
            font-size: 0.7rem;
            background: var(--clr-black);
            color: var(--clr-white);
            border: none;
        }

        .products-section__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            padding: 0 1rem;
        }

        .product-card-lux {
            border-radius: 16px;
            background: var(--glass-bg);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .product-card-lux__image-wrap {
            border-radius: 16px 16px 0 0;
        }

        .atelier-section__inner {
            grid-template-columns: 1fr;
            gap: 4rem;
            padding: 0 1.5rem;
        }

        .atelier-section__text {
            text-align: center;
        }

        .atelier-feature {
            flex-direction: column;
            align-items: center;
            text-align: center;
            background: #fbfbfb;
            padding: 2rem;
            border-radius: 20px;
        }

        .atelier-section__detail-img {
            display: none;
        }

        .atelier-hero {
            height: 50vh;
        }
    }

    @media (max-width: 576px) {
        .trust-marquee {
            padding: 1.2rem 0;
        }

        .trust-marquee__item {
            font-size: 0.6rem;
            gap: 0.5rem;
        }

        .hero-home__container {
            padding: 0 1rem 3rem;
        }

        .hero-home__content {
            margin: -3rem 0.5rem 0;
            padding: 2rem 1rem;
        }

        .products-section__grid {
            gap: 0.75rem;
            padding: 0 0.75rem;
        }

        .product-card-lux__info {
            padding: 1.2rem 0.75rem;
        }

        .product-card-lux__name {
            font-size: 0.9rem;
        }

        .product-card-lux__name-fr {
            font-size: 0.65rem;
        }

        .hero-home__scroll,
        .atelier-hero__scroll {
            display: none;
        }

        .product-card-lux__add {
            margin-top: 1rem;
            width: 100%;
            background: var(--clr-black);
            color: #fff;
            border: none;
            padding: 0.8rem;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .product-card-lux__add:hover {
            background: var(--clr-gold-dark);
        }
    }

    /* Desktop version of the button */
    .product-card-lux__add {
        margin-top: 1.5rem;
        width: 100%;
        background: transparent;
        color: var(--clr-black);
        border: 1px solid var(--clr-black);
        padding: 0.9rem;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        opacity: 0;
        transform: translateY(10px);
    }

    .product-card-lux:hover .product-card-lux__add {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card-lux__add:hover {
        background: var(--clr-black);
        color: #fff;
    }

/* ==========================================
   UX IMPROVEMENTS (TOASTS & QUANTITY)
   ========================================== */
.toast-container { 
    position: fixed; 
    top: 120px; /* Below the header */
    right: 30px; 
    z-index: 10000; 
    pointer-events: none; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
}

.toast { 
    background: rgba(12, 12, 12, 0.9); 
    color: #fff; 
    padding: 18px 30px; 
    border-radius: 4px; /* Minimalist square look */
    font-family: 'Tajawal', sans-serif; 
    font-size: 0.8rem; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    gap: 15px; 
    box-shadow: 0 15px 45px rgba(0,0,0,0.2); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 4px solid var(--clr-gold);
    min-width: 320px;
    letter-spacing: 0.05em;
    transform: translateX(110%);
    opacity: 0;
}

.toast.show { 
    transform: translateX(0);
    opacity: 1;
}

.toast--error { 
    border-left-color: #ff4444; 
}

.toast-icon { 
    font-size: 1.2rem; 
    color: var(--clr-gold);
}

.toast--error .toast-icon {
    color: #ff4444;
}

.qty-selector { display: flex; align-items: center; border: 1px solid #eee; border-radius: 50px; width: fit-content; overflow: hidden; background: #fff; }
.qty-btn { background: none; border: none; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.3s; font-size: 1.2rem; color: #111; }
.qty-btn:hover { background: #f9f9f9; }
.qty-input { width: 50px; text-align: center; border: none; font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 1rem; -moz-appearance: textfield; appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; appearance: none; margin: 0; }


/* =========================================
   CART DRAWER (LUXURY)
   ========================================= */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1000;
    visibility: hidden;
    transition: visibility 0.4s;
}

.cart-drawer.active {
    visibility: visible;
}

.cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-drawer.active .cart-drawer__overlay {
    opacity: 1;
}

.cart-drawer__container {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[dir="rtl"] .cart-drawer__container {
    right: auto;
    left: 0;
    transform: translateX(-100%);
}

.cart-drawer.active .cart-drawer__container {
    transform: translateX(0);
}

.cart-drawer__header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
}

.cart-drawer__title {
    font-family: 'Newsreader', serif;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #111;
}

.cart-drawer__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s;
}

.cart-drawer__close:hover {
    transform: rotate(90deg);
}

.cart-drawer__content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.cart-drawer__empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #999;
    gap: 1.5rem;
}

.cart-drawer__empty span {
    font-size: 4rem;
    opacity: 0.3;
}

.cart-drawer__footer {
    padding: 1.5rem 2rem 2.5rem;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #111;
}
.cart-drawer__total-amount {
    font-family: 'Newsreader', serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #d4af37;
}

.cart-drawer__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.cart-drawer__actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: all 0.3s ease;
}
.cart-drawer__actions .btn-gold,
.cart-drawer__actions .btn-outline {
    touch-action: manipulation;
    background: #111;
    color: #fff;
    border: 1px solid #111;
}
.cart-drawer__actions .btn-outline {
    background: transparent;
    color: #111;
}

@media (hover: hover) {
    .cart-drawer__actions .btn-outline:hover {
        background: #111;
        color: #fff;
    }
    .cart-drawer__actions .btn-gold:hover {
        background: #333;
        border-color: #333;
    }
}

/* Item Styling */
.cart-drawer-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f9f9f9;
}

.cart-drawer-item__img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    background: #fafafa;
    flex-shrink: 0;
}

.cart-drawer-item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-drawer-item__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cart-drawer-item__name {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #111;
    line-height: 1.4;
    max-width: 180px;
}

.cart-drawer-item__price {
    font-family: 'Newsreader', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #d4af37;
}

.cart-drawer-item__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.cart-drawer-item__remove {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
}

.cart-drawer-item__remove:hover {
    color: #111;
    border-bottom-color: #111;
}

.cart-drawer-qty {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    height: 32px;
}

.cart-drawer-qty button {
    background: none;
    border: none;
    width: 28px;
    height: 100%;
    cursor: pointer;
    font-size: 14px;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-drawer-qty button:hover {
    background: #f5f5f5;
}

.cart-drawer-qty span {
    width: 32px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   AURILIA HOMEPAGE REDESIGN v2 — MAISON EDITORIAL
   ========================================================================== */

/* ── HERO ── */
.au-hero{position:relative;min-height:100vh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:#000}
.au-hero__swiper{width:100%;height:100vh}
.au-hero__slide{position:relative;width:100%;height:100%;display:flex;align-items:center;justify-content:center}
.au-hero__slide-bg,.au-hero__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;transition:transform 8s ease}
.swiper-slide-active .au-hero__slide-bg{transform:scale(1.06)}
.au-hero__slide-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.55) 0%,rgba(0,0,0,.15) 40%,rgba(0,0,0,.25) 100%);z-index:1}
.au-hero__slide-content{position:relative;z-index:2;text-align:center;color:#fff;max-width:900px;padding:0 2rem;opacity:0;transform:translateY(40px);animation:auFadeUp 1s .5s forwards}
.swiper-slide-active .au-hero__slide-content{opacity:1;transform:translateY(0)}
.au-hero__eyebrow{display:inline-block;font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.4em;color:rgba(255,255,255,.7);margin-bottom:1.5rem;border:1px solid rgba(255,255,255,.2);padding:.5rem 1.6rem;border-radius:50px}
.au-hero__title{font-family:'Amiri',serif;margin-bottom:2rem;line-height:1.05}
.au-hero__title-main{display:block;font-size:clamp(3rem,10vw,7.5rem);font-weight:700;text-shadow:0 4px 40px rgba(0,0,0,.3)}
.au-hero__title-accent{display:block;font-size:clamp(2.5rem,8vw,6rem);font-style:italic;font-weight:300;color:#d4c1a3}
.au-hero__desc{font-family:'Tajawal',sans-serif;font-size:1.1rem;color:rgba(255,255,255,.85);max-width:550px;margin:0 auto 2.5rem;line-height:1.9}
.au-hero__cta{display:inline-flex;align-items:center;gap:.8rem;padding:1.1rem 3rem;background:rgba(255,255,255,.12);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(255,255,255,.25);border-radius:50px;color:#fff;font-family:'Tajawal',sans-serif;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.25em;text-decoration:none;transition:all .4s cubic-bezier(.16,1,.3,1)}
.au-hero__cta:hover{background:#fff;color:#111;border-color:#fff;transform:scale(1.04)}
.au-hero__cta .material-symbols-outlined{font-size:1rem;transition:transform .3s}
.au-hero__cta:hover .material-symbols-outlined{transform:translateX(4px)}

/* Hero Nav */
.au-hero__nav{position:absolute;bottom:3rem;left:50%;transform:translateX(-50%);z-index:10;display:flex;align-items:center;gap:1.5rem}
.au-hero__nav-btn{background:rgba(255,255,255,.1);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.15);color:#fff;width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s}
.au-hero__nav-btn:hover{background:rgba(255,255,255,.25)}
.au-hero__nav-btn .material-symbols-outlined{font-size:1.1rem}
.au-hero__nav .swiper-button-next,.au-hero__nav .swiper-button-prev{position:static;margin:0;width:auto;height:auto}
.au-hero__nav .swiper-button-next::after,.au-hero__nav .swiper-button-prev::after{display:none}
.au-hero__pagination.swiper-pagination{position:static;display:flex;gap:.5rem}
.au-hero__pagination .swiper-pagination-bullet{background:#fff;opacity:.35;width:8px;height:8px;transition:all .4s}
.au-hero__pagination .swiper-pagination-bullet-active{opacity:1;width:28px;border-radius:4px}

/* Hero Stats */
.au-hero__stats{position:absolute;bottom:3rem;right:3rem;z-index:10;display:flex;align-items:center;gap:1.5rem;background:rgba(255,255,255,.08);backdrop-filter:blur(25px);-webkit-backdrop-filter:blur(25px);border:1px solid rgba(255,255,255,.12);padding:1rem 2rem;border-radius:16px}
.au-hero__stat{text-align:center}
.au-hero__stat-num{display:block;font-family:'Amiri',serif;font-size:1.6rem;color:#fff;font-weight:700}
.au-hero__stat-label{font-family:'Tajawal',sans-serif;font-size:.6rem;color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:.15em}
.au-hero__stat-divider{width:1px;height:35px;background:rgba(255,255,255,.15)}

/* Hero Scroll */
.au-hero__scroll{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);z-index:5;display:flex;flex-direction:column;align-items:center;gap:.8rem;opacity:0;animation:auFadeUp 1s 1.5s forwards}
.au-hero__scroll-text{font-family:'Tajawal',sans-serif;font-size:.55rem;text-transform:uppercase;letter-spacing:.35em;color:rgba(255,255,255,.5);writing-mode:vertical-rl;font-weight:600}
.au-hero__scroll-line{width:1px;height:50px;background:linear-gradient(to bottom,rgba(255,255,255,.5),transparent);animation:auScrollLine 2s ease-in-out infinite}

@keyframes auFadeUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}
@keyframes auScrollLine{0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}51%{transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom}}

/* ── MARQUEE ── */
.au-marquee{padding:1.6rem 0;background:#0c0c0c;overflow:hidden;position:relative}
.au-marquee__track{display:flex;gap:2.5rem;animation:auMarquee 30s linear infinite;width:max-content}
.au-marquee__item{display:flex;align-items:center;gap:.7rem;white-space:nowrap;font-family:'Tajawal',sans-serif;font-size:.68rem;font-weight:600;text-transform:uppercase;letter-spacing:.2em;color:rgba(255,255,255,.55)}
.au-marquee__item .material-symbols-outlined{font-size:.9rem;color:#d4c1a3}
.au-marquee__divider{color:#d4c1a3;font-size:.5rem;opacity:.4}
@keyframes auMarquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ── STORY SECTION ── */
.au-story{padding:8rem 0;background:#fff;overflow:hidden}
.au-story__inner{max-width:1300px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.au-story__tag{font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.4em;color:#a69076;margin-bottom:1.5rem;display:block}
.au-story__heading{font-family:'Amiri',serif;font-size:clamp(2.5rem,5vw,4rem);color:#111;line-height:1.15;margin-bottom:2rem}
.au-story__heading em{font-weight:300;color:#d4c1a3}
.au-story__desc{font-family:'Tajawal',sans-serif;font-size:1.05rem;color:#555;line-height:1.9;margin-bottom:3rem}
.au-story__counters{display:flex;gap:3rem}
.au-story__counter{text-align:center}
.au-story__counter-num{font-family:'Amiri',serif;font-size:2.8rem;color:#111;font-weight:700}
.au-story__counter-suffix{font-family:'Amiri',serif;font-size:1.8rem;color:#d4c1a3}
.au-story__counter-label{display:block;font-family:'Tajawal',sans-serif;font-size:.65rem;text-transform:uppercase;letter-spacing:.15em;color:#888;margin-top:.3rem}

/* Story Visual */
.au-story__visual{position:relative}
.au-story__img-stack{position:relative}
.au-story__img-main{width:100%;aspect-ratio:4/5;object-fit:cover;filter:brightness(.97);transition:filter .5s}
.au-story__img-main:hover{filter:brightness(1.02)}
.au-story__img-float{position:absolute;bottom:-30px;left:-30px;width:180px;height:240px;object-fit:cover;box-shadow:0 20px 50px rgba(0,0,0,.1);border:5px solid #fff;z-index:2;transition:transform .6s cubic-bezier(.16,1,.3,1)}
.au-story__visual:hover .au-story__img-float{transform:translate(8px,8px)}
.au-story__img-badge{position:absolute;top:1.5rem;right:1.5rem;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);padding:.7rem 1.2rem;display:flex;align-items:center;gap:.5rem;font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.15em;color:#111;z-index:3;border-radius:8px}
.au-story__img-badge .material-symbols-outlined{font-size:.9rem;color:#d4c1a3}

/* ── PRODUCTS ── */
.au-products{padding:7rem 0 5rem;background:#fafafa}
.au-products__header{text-align:center;margin-bottom:4rem}
.au-products__tag{font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.4em;color:#a69076;margin-bottom:1rem;display:block}
.au-products__title{font-family:'Amiri',serif;font-size:clamp(2.2rem,5vw,3.5rem);color:#111;margin-bottom:1.2rem;font-style:italic}
.au-products__line{width:60px;height:1px;background:linear-gradient(90deg,transparent,#d4c1a3,transparent);margin:0 auto 1.5rem}
.au-products__desc{font-family:'Tajawal',sans-serif;font-size:1rem;color:#555;max-width:550px;margin:0 auto;line-height:1.8}
.au-products__grid{max-width:1300px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:repeat(3,1fr);gap:2.5rem}
.au-products__more{text-align:center;margin-top:4rem}
.au-products__more-btn{display:inline-flex;align-items:center;gap:.8rem;padding:1.1rem 3.5rem;background:transparent;border:1.5px solid #111;color:#111;font-family:'Tajawal',sans-serif;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.22em;text-decoration:none;position:relative;overflow:hidden;transition:color .4s,border-color .4s}
.au-products__more-btn::before{content:'';position:absolute;inset:0;background:#111;transform:scaleX(0);transform-origin:right;transition:transform .5s cubic-bezier(.16,1,.3,1);z-index:0}
.au-products__more-btn:hover::before{transform:scaleX(1);transform-origin:left}
.au-products__more-btn:hover{color:#fff;border-color:#111}
.au-products__more-btn span{position:relative;z-index:1}

/* ── CINEMA ── */
.au-cinema{position:relative;width:100%;height:70vh;overflow:hidden;background:#000;display:flex;align-items:center;justify-content:center}
.au-cinema video{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);min-width:100%;min-height:100%;object-fit:cover;opacity:.8}
.au-cinema__overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.45) 0%,transparent 35%,transparent 65%,rgba(0,0,0,.5) 100%);z-index:1}
.au-cinema__content{position:relative;z-index:2;text-align:center;padding:0 2rem}
.au-cinema__tag{font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.4em;color:rgba(255,255,255,.7);margin-bottom:1rem;display:block}
.au-cinema__title{font-family:'Amiri',serif;font-size:clamp(3rem,7vw,5.5rem);color:#fff;line-height:1.1}
.au-cinema__title em{font-weight:300;color:#d4c1a3}
.au-cinema__scroll-hint{position:absolute;bottom:2.5rem;left:50%;transform:translateX(-50%);z-index:5}
.au-cinema__scroll-bar{width:1px;height:50px;background:linear-gradient(to bottom,rgba(255,255,255,.4),transparent)}

/* ── CRAFTSMANSHIP ── */
.au-craft{padding:8rem 0;background:#fff;overflow:hidden}
.au-craft__inner{max-width:1300px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:center}
.au-craft__images{position:relative}
.au-craft__img-main{width:100%;aspect-ratio:4/5;object-fit:cover;filter:grayscale(20%);transition:filter 1.5s}
.au-craft__images:hover .au-craft__img-main{filter:grayscale(0)}
.au-craft__img-detail{position:absolute;top:-30px;left:-30px;width:200px;height:260px;object-fit:cover;box-shadow:0 20px 50px rgba(0,0,0,.08);border:6px solid #fff;z-index:2;transition:transform .6s}
.au-craft__images:hover .au-craft__img-detail{transform:translate(10px,10px)}
.au-craft__tag{font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.4em;color:#a69076;margin-bottom:1.5rem;display:block}
.au-craft__title{font-family:'Amiri',serif;font-size:clamp(2.5rem,5vw,3.5rem);color:#111;line-height:1.2;margin-bottom:2rem}
.au-craft__title em{font-weight:300;font-style:italic;color:#d4c1a3}
.au-craft__desc{font-family:'Tajawal',sans-serif;font-size:1.05rem;color:#555;line-height:1.9;margin-bottom:3rem}
.au-craft__text{text-align:right}
.au-craft__features{display:flex;flex-direction:column;gap:2rem}
.au-craft__feature{display:flex;align-items:flex-start;gap:1.2rem;flex-direction:row-reverse;text-align:right;padding:1.5rem;border-radius:12px;transition:background .3s}
.au-craft__feature:hover{background:#f8f7f5}
.au-craft__feature-num{font-family:'Amiri',serif;font-size:2rem;color:#d4c1a3;opacity:.6;line-height:1;min-width:40px;transition:opacity .3s}
.au-craft__feature:hover .au-craft__feature-num{opacity:1}
.au-craft__feature-title{font-family:'Tajawal',sans-serif;font-size:.85rem;font-weight:700;text-transform:uppercase;letter-spacing:.15em;color:#111;margin-bottom:.4rem}
.au-craft__feature-desc{font-family:'Tajawal',sans-serif;font-size:.9rem;color:#777;line-height:1.7}
.au-craft__cta{display:inline-flex;align-items:center;gap:.6rem;margin-top:3rem;font-family:'Tajawal',sans-serif;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.2em;color:#111;text-decoration:none;border-bottom:2px solid rgba(0,0,0,.15);padding-bottom:.4rem;transition:border-color .4s,gap .3s}
.au-craft__cta:hover{border-color:#d4c1a3;gap:1rem}
.au-craft__cta .material-symbols-outlined{font-size:1rem;transition:transform .3s}

/* ── NEWSLETTER ── */
.au-newsletter{padding:6rem 2rem;background:#0c0c0c;position:relative;overflow:hidden}
.au-newsletter::before{content:'AURILIA';position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-family:'Amiri',serif;font-size:15rem;color:rgba(255,255,255,.015);pointer-events:none;letter-spacing:.2em;white-space:nowrap}
.au-newsletter__inner{max-width:700px;margin:0 auto;text-align:center}
.au-newsletter__glass{background:rgba(255,255,255,.04);backdrop-filter:blur(30px);-webkit-backdrop-filter:blur(30px);border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:4rem 3rem}
.au-newsletter__icon{display:block;font-size:1.5rem;color:#d4c1a3;margin-bottom:1.5rem;opacity:.7}
.au-newsletter__title{font-family:'Amiri',serif;font-size:2.2rem;color:#fff;margin-bottom:1rem;font-style:italic}
.au-newsletter__desc{font-family:'Tajawal',sans-serif;font-size:.9rem;color:rgba(255,255,255,.5);margin-bottom:2.5rem;letter-spacing:.05em}
.au-newsletter__btn{display:inline-flex;align-items:center;gap:.8rem;padding:1rem 3rem;background:transparent;border:1px solid rgba(255,255,255,.2);color:#fff;font-family:'Tajawal',sans-serif;font-size:.75rem;font-weight:700;text-transform:uppercase;letter-spacing:.2em;text-decoration:none;border-radius:50px;transition:all .4s}
.au-newsletter__btn:hover{background:#fff;color:#111;border-color:#fff}

/* ── HIGHLIGHTS ── */
.au-highlights{padding:4rem 0;background:#fafafa;border-top:1px solid rgba(0,0,0,.04)}
.au-highlights__grid{max-width:1100px;margin:0 auto;padding:0 2rem;display:flex;justify-content:center;flex-wrap:wrap;gap:3rem}
.au-highlights__item{display:flex;flex-direction:column;align-items:center;gap:.7rem;min-width:160px}
.au-highlights__icon{font-size:1.4rem;color:#d4c1a3}
.au-highlights__text{font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.2em;color:#333;text-align:center}

/* ── RESPONSIVE ── */
@media(max-width:992px){
    .au-hero__stats{display:none}
    .au-hero__scroll{display:none}
    .au-story__inner{grid-template-columns:1fr;gap:3rem}
    .au-story__text{text-align:center}
    .au-story__counters{justify-content:center}
    .au-story__img-float{display:none}
    .au-products__grid{grid-template-columns:repeat(2,1fr);gap:1rem;padding:0 1rem}
    .au-cinema{height:50vh}
    .au-craft__inner{grid-template-columns:1fr;gap:3rem}
    .au-craft__text{text-align:center}
    .au-craft__feature{flex-direction:column;align-items:center;text-align:center;background:#f8f7f5;border-radius:16px;padding:2rem}
    .au-craft__img-detail{display:none}
    .au-newsletter__glass{padding:3rem 2rem}
}
@media(max-width:576px){
    .au-hero__title-main{font-size:clamp(2.2rem,12vw,3.5rem)}
    .au-hero__title-accent{font-size:clamp(1.8rem,10vw,2.8rem)}
    .au-hero__cta{padding:.9rem 2rem;font-size:.7rem}
    .au-story__counters{flex-direction:column;gap:1.5rem}
    .au-story__counter-num{font-size:2.2rem}
    .au-products__grid{gap:.75rem;padding:0 .75rem}
    .au-highlights__grid{gap:2rem}
    .au-newsletter__glass{padding:2.5rem 1.5rem;border-radius:16px}
}


/* ==========================================================================
   SPLIT HERO — EDITORIAL (REFERENCE DESIGN)
   ========================================================================== */
.au-hero-split{background:#f5f4f0;min-height:calc(100vh - var(--header-height));display:flex;flex-direction:column;overflow:hidden}
.au-hero-split__inner{flex:1;max-width:1440px;margin:0 auto;width:100%;display:grid;grid-template-columns:1fr 1fr;align-items:center;padding:2rem 3rem;gap:3rem}
.au-hero-split__text{padding:2rem 0;opacity:0;animation:auSplitFadeIn 1s .3s forwards}
.au-hero-split__eyebrow{display:block;font-family:'Tajawal',sans-serif;font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.35em;color:#a69076;margin-bottom:1.5rem}
.au-hero-split__title{font-family:'Amiri',serif;font-size:clamp(2.5rem,5vw,4.5rem);color:#111;line-height:1.08;margin-bottom:1.8rem;font-weight:700}
.au-hero-split__title em{display:block;font-style:italic;font-weight:300;color:#888}
.au-hero-split__desc{font-family:'Tajawal',sans-serif;font-size:1rem;color:#666;line-height:1.8;max-width:480px;margin-bottom:2.5rem}
.au-hero-split__actions{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.au-hero-split__btn-primary{display:inline-flex;align-items:center;gap:.7rem;padding:1rem 2.2rem;background:#111;color:#fff;border-radius:50px;font-family:'Tajawal',sans-serif;font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.15em;text-decoration:none;transition:all .4s cubic-bezier(.16,1,.3,1)}
.au-hero-split__btn-primary:hover{background:#333;transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,0,0,.15)}
.au-hero-split__btn-primary .material-symbols-outlined{font-size:1rem;transition:transform .3s}
.au-hero-split__btn-primary:hover .material-symbols-outlined{transform:translateX(4px)}
.au-hero-split__btn-secondary{display:inline-flex;align-items:center;gap:.8rem;font-family:'Tajawal',sans-serif;font-size:.85rem;font-weight:600;color:#333;text-decoration:none;transition:color .3s}
.au-hero-split__btn-secondary:hover{color:#111}
.au-hero-split__play-icon{width:40px;height:40px;border-radius:50%;border:1.5px solid rgba(0,0,0,.15);display:flex;align-items:center;justify-content:center;transition:all .3s}
.au-hero-split__play-icon .material-symbols-outlined{font-size:1.1rem;margin-left:2px}
.au-hero-split__btn-secondary:hover .au-hero-split__play-icon{border-color:#111;background:rgba(0,0,0,.04)}
.au-hero-split__visual{position:relative;display:flex;flex-direction:column;gap:1.5rem;opacity:0;animation:auSplitScaleIn 1s .5s forwards}
.au-hero-split__img-wrap{position:relative;border-radius:20px;overflow:hidden;aspect-ratio:4/5;max-height:550px;background:#eae8e3}
.au-hero-split__shape{position:absolute;top:10%;right:-10%;width:70%;height:80%;background:linear-gradient(135deg,#e8e5df 0%,#d5d0c8 100%);border-radius:50%;filter:blur(0);opacity:.5;z-index:0}
.au-hero-split__img{position:relative;z-index:1;width:100%;height:100%;object-fit:cover;object-position:center;transition:transform 1.2s cubic-bezier(.16,1,.3,1)}
.au-hero-split__img-wrap:hover .au-hero-split__img{transform:scale(1.04)}
.au-hero-split__swiper{width:100%;height:100%;position:relative;z-index:1}
.au-hero-split__swiper .swiper-slide{overflow:hidden}
.au-hero-split__swiper .swiper-slide img{width:100%;height:100%;object-fit:cover}
.au-hero-split__badge{position:absolute;top:1.5rem;left:1.5rem;z-index:5;background:rgba(255,255,255,.92);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-radius:14px;padding:1rem 1.3rem;display:flex;align-items:flex-start;gap:.8rem;max-width:220px;box-shadow:0 8px 30px rgba(0,0,0,.06);opacity:0;animation:auSplitFadeIn 1s 1.2s forwards}
.au-hero-split__badge .material-symbols-outlined{font-size:1.3rem;color:#a69076;margin-top:2px;flex-shrink:0}
.au-hero-split__badge strong{display:block;font-family:'Tajawal',sans-serif;font-size:.78rem;font-weight:700;color:#111;margin-bottom:2px}
.au-hero-split__badge small{font-family:'Tajawal',sans-serif;font-size:.68rem;color:#888;line-height:1.4}
.au-hero-split__nav{display:flex;align-items:center;justify-content:flex-end;gap:1.5rem;padding-right:.5rem}
.au-hero-split__counter{display:flex;flex-direction:column;align-items:center;gap:.2rem}
.au-hero-split__counter-current{font-family:'Amiri',serif;font-size:1.4rem;font-weight:700;color:#111}
.au-hero-split__counter-total{font-family:'Amiri',serif;font-size:.9rem;color:#bbb;position:relative;padding-top:.4rem}
.au-hero-split__counter-total::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:12px;height:1px;background:#ccc}
.au-hero-split__arrows{display:flex;gap:.5rem}
.au-hero-split__arrow{width:44px;height:44px;border-radius:50%;border:1.5px solid rgba(0,0,0,.12);background:#fff;color:#111;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .3s}
.au-hero-split__arrow:hover{background:#111;color:#fff;border-color:#111}
.au-hero-split__arrow .material-symbols-outlined{font-size:1.1rem}
.au-hero-split__arrow.swiper-button-next,.au-hero-split__arrow.swiper-button-prev{position:static;margin:0;width:44px;height:44px}
.au-hero-split__arrow.swiper-button-next::after,.au-hero-split__arrow.swiper-button-prev::after{display:none}
.au-hero-split__trust{display:flex;justify-content:space-around;align-items:center;padding:1.8rem 3rem;border-top:1px solid rgba(0,0,0,.06);background:rgba(255,255,255,.6);backdrop-filter:blur(10px)}
.au-hero-split__trust-item{display:flex;align-items:center;gap:.8rem}
.au-hero-split__trust-item .material-symbols-outlined{font-size:1.4rem;color:#a69076;font-weight:300}
.au-hero-split__trust-item strong{display:block;font-family:'Tajawal',sans-serif;font-size:.78rem;font-weight:700;color:#111}
.au-hero-split__trust-item small{display:block;font-family:'Tajawal',sans-serif;font-size:.68rem;color:#999}
@keyframes auSplitFadeIn{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
@keyframes auSplitScaleIn{from{opacity:0;transform:scale(.95)}to{opacity:1;transform:scale(1)}}
@media(max-width:992px){
    .au-hero-split__inner{grid-template-columns:1fr;gap:2rem;padding:1.5rem}
    .au-hero-split__text{text-align:center;order:2}
    .au-hero-split__desc{margin-left:auto;margin-right:auto}
    .au-hero-split__actions{justify-content:center}
    .au-hero-split__visual{order:1}
    .au-hero-split__img-wrap{max-height:400px;border-radius:16px}
    .au-hero-split__trust{flex-wrap:wrap;gap:1.5rem;padding:1.5rem;justify-content:center}
    .au-hero-split__nav{justify-content:center;padding:0}
}
@media(max-width:576px){
    .au-hero-split__inner{padding:1rem}
    .au-hero-split__title{font-size:clamp(2rem,8vw,3rem)}
    .au-hero-split__img-wrap{max-height:320px;border-radius:12px}
    .au-hero-split__trust{gap:1rem;padding:1rem}
    .au-hero-split__trust-item{flex:1;min-width:140px}
    .au-hero-split__badge{padding:.8rem 1rem;max-width:180px;border-radius:10px}
}

/* Product Page Gallery Dots */
.pdp-mobile-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.pdp-mobile-dot.active {
    background: #fff;
    transform: scale(1.4);
}

