:root {
    /* RELAXING CASHMERE SAND LUXURY PALETTE (MODE NHAR - مريح للعين) */
    --bg-main: #FAF8F5;
    --bg-surface: #FFFFFF;
    --bg-subtle: #F3EFEA;
    --text-primary: #181512;
    --text-secondary: #3D352E;
    --text-muted: #4B4339;
    --gold: #7A5518;
    --gold-light: #FBF6EC;
    --gold-border: #C8B48D;
    --border-subtle: #E2D8C7;
    --border-card: #DECFA8;
    --header-bg: rgba(250, 248, 245, 0.96);
    --card-bg: #FFFFFF;
    --drawer-bg: #FFFFFF;
    --footer-bg: #FFFFFF;
    --bottom-bar-bg: rgba(250, 248, 245, 0.98);
    --success: #15803D;
    --font-ar: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-en: 'Montserrat', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    --shadow-sm: 0 2px 8px rgba(60, 45, 20, 0.04);
    --shadow-card: 0 10px 25px -4px rgba(60, 45, 20, 0.06), 0 2px 6px -1px rgba(60, 45, 20, 0.03);
    --shadow-hover: 0 16px 32px -4px rgba(60, 45, 20, 0.1), 0 4px 12px -2px rgba(60, 45, 20, 0.05);
}

[data-theme="dark"] {
    /* VELVET OBSIDIAN NOIR & GLOWING AMBER GOLD (MODE NUIT - وضع ليلي فاخر) */
    --bg-main: #0B0D12;
    --bg-surface: #131722;
    --bg-subtle: #1A1F2E;
    --text-primary: #F8FAFC;
    --text-secondary: #E2E8F0;
    --text-muted: #A0AEC0;
    --gold: #F3CF82;
    --gold-light: rgba(243, 207, 130, 0.15);
    --gold-border: rgba(243, 207, 130, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.12);
    --border-card: rgba(243, 207, 130, 0.3);
    --header-bg: rgba(11, 13, 18, 0.96);
    --card-bg: #131722;
    --drawer-bg: #131722;
    --footer-bg: #0B0D12;
    --bottom-bar-bg: rgba(11, 13, 18, 0.98);
    --success: #22C55E;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.65);
    --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.85);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-ar);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    padding-bottom: 0;
    transition: background-color 0.25s ease, color 0.25s ease;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
}

/* 60FPS / 120FPS MOBILE HARDWARE ACCELERATION */
.comparison-wrapper, .drawer-sheet, .boutique-entrance-wrap, .cat-card-item, .floating-cart-pill, .comp-handle, .comp-layer, .rublis-ai-trigger-btn {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
}

.container {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 20px;
}
@media (min-width: 1400px) {
    .container {
        max-width: 1560px;
        padding: 0 28px;
    }
}

/* MODERN ULTRA-LUXURY MINIMALIST HEADER */
.main-luxury-header, header {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.22);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 4px 28px rgba(15, 23, 42, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
[data-theme="dark"] .main-luxury-header, [data-theme="dark"] header {
    background: rgba(10, 13, 22, 0.95);
    border-bottom: 1px solid rgba(197, 160, 89, 0.28);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}
.header-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.header-logo-img {
    height: 76px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    display: block;
    transform: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.05));
}
.header-logo-img:hover {
    transform: scale(1.04);
}
@media (max-width: 991px) {
    .header-logo-img {
        height: 52px;
        max-width: 200px;
    }
}
@media (max-width: 480px) {
    .header-logo-img {
        height: 44px;
        max-width: 160px;
    }
}
.logo-wrap {
    text-decoration: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 2px 0;
}

/* MINIMALIST LUXURY DESKTOP NAVIGATION (CAPSULE BAR) */
.desktop-main-nav {
    display: none;
    align-items: center;
    gap: 4px;
    justify-content: center;
    flex: 1;
    margin: 0 auto;
    padding: 4px 6px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 40px;
    max-width: fit-content;
}
[data-theme="dark"] .desktop-main-nav {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.22);
}
@media (min-width: 992px) {
    .desktop-main-nav {
        display: flex;
    }
    .header-menu-btn {
        display: none !important;
    }
}
.nav-desktop-item {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 7px 13px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-desktop-item:hover {
    color: var(--gold);
    background: rgba(155, 120, 62, 0.08);
}
.nav-desktop-item.active {
    color: #FFFFFF !important;
    background: linear-gradient(135deg, #9B783E 0%, #C5A059 100%) !important;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(155, 120, 62, 0.35);
}
.nav-desktop-item.nav-gold-highlight {
    color: #854d0e;
    background: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 100%);
    border: 1px solid rgba(212, 175, 55, 0.45);
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}
[data-theme="dark"] .nav-desktop-item.nav-gold-highlight {
    background: rgba(197, 160, 89, 0.15);
    color: #F5D78E;
    border-color: rgba(197, 160, 89, 0.45);
}

/* LUXURY LANGUAGE SELECTOR */
.lang-selector-wrap {
    position: relative;
    display: inline-block;
}
.lang-select-btn {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    color: var(--text-primary);
    padding: 7px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.lang-select-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 155px;
    background: var(--bg-surface);
    border: 1.5px solid var(--gold-border);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 6px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
[dir="rtl"] .lang-dropdown-menu {
    left: auto;
    right: 0;
}
.lang-dropdown-menu.show {
    display: flex;
    animation: dropdownFadeIn 0.2s ease;
}
@keyframes dropdownFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.lang-option-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-align: start;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
    width: 100%;
}
.lang-option-btn:hover {
    background: rgba(155, 120, 62, 0.12);
    color: var(--gold);
}
.lang-option-btn.active {
    background: linear-gradient(135deg, #9B783E 0%, #C5A059 100%);
    color: #FFFFFF !important;
    font-weight: 800;
}

/* LTR GLOBAL ADJUSTMENTS */
[dir="ltr"] {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
[dir="ltr"] .header-logo-section {
    transform-origin: left center;
}
[dir="ltr"] .cat-title {
    direction: ltr;
    text-align: left;
}
[dir="ltr"] .cat-desc {
    text-align: left;
}
[dir="ltr"] .footer-about-text,
[dir="ltr"] .footer-contact-info p {
    text-align: left;
}
[dir="ltr"] .hero-clean-title {
    letter-spacing: -0.5px;
}

/* LEFT ACTIONS GROUP */
.header-actions-section {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.btn-desktop-quote {
    display: none;
    background: linear-gradient(135deg, #9B783E 0%, #C5A059 100%);
    color: #FFFFFF !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(155, 120, 62, 0.3);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
@media (min-width: 992px) {
    .btn-desktop-quote {
        display: inline-flex;
    }
}
.btn-desktop-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(155, 120, 62, 0.5);
    color: #FFFFFF;
}

.theme-toggle-btn {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    color: var(--gold);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.theme-toggle-btn:hover {
    transform: scale(1.08);
    border-color: var(--gold);
    background: var(--gold-light);
}

.header-cart-btn {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    color: var(--text-primary);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}
.header-cart-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.08);
}
.cart-header-badge {
    position: absolute;
    top: -4px;
    left: -4px;
    background: var(--gold);
    color: #000000;
    font-size: 0.65rem;
    font-weight: 900;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* HAMBURGER MENU BUTTON & SIDE NAVIGATION DRAWER */
.header-menu-btn {
    background: var(--bg-surface);
    border: 1.5px solid var(--gold-border);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.header-menu-btn:hover {
    background: var(--gold);
    color: #FFFFFF;
}

#navDrawerModal {
    position: fixed; inset: 0; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 3000; display: none; align-items: stretch; justify-content: flex-start;
}
.nav-drawer-content {
    width: 100%; max-width: 320px; height: 100%; background: var(--bg-surface);
    box-shadow: -10px 0 35px rgba(0,0,0,0.35); display: flex; flex-direction: column;
    border-left: 1.5px solid var(--gold-border); animation: slideInNav 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto; scrollbar-width: none;
}
@keyframes slideInNav {
    0% { transform: translateX(100%); }
    100% { transform: translateX(0); }
}
.nav-drawer-header {
    padding: 16px 18px; border-bottom: 1.5px solid var(--gold-border);
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, rgba(155,120,62,0.08) 0%, transparent 100%);
}
.nav-drawer-close {
    width: 34px; height: 34px; border-radius: 50%; background: var(--bg-subtle);
    border: 1px solid var(--border-subtle); color: var(--text-primary);
    display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
    cursor: pointer; transition: 0.2s;
}
.nav-drawer-close:hover { background: var(--gold); color: #FFF; }
.nav-drawer-body { padding: 14px 12px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.nav-drawer-section-label {
    font-size: 0.68rem; font-weight: 900; color: var(--gold); text-transform: uppercase;
    letter-spacing: 1px; padding: 8px 12px 2px; margin-top: 6px;
}
.nav-drawer-link {
    display: flex; align-items: center; justify-content: space-between; padding: 10px 14px;
    border-radius: var(--radius-sm); color: var(--text-primary); text-decoration: none;
    font-size: 0.86rem; font-weight: 800; transition: 0.2s; cursor: pointer;
}
.nav-drawer-link:hover { background: rgba(155,120,62,0.08); color: var(--gold); transform: translateX(-3px); }
.nav-drawer-link i.link-icon { color: var(--gold); font-size: 1rem; margin-inline-end: 10px; width: 22px; text-align: center; }
.nav-drawer-link span.link-tag { font-size: 0.66rem; background: var(--gold-light); color: var(--gold); padding: 2px 8px; border-radius: var(--radius-pill); font-weight: 900; }

.nav-drawer-footer {
    padding: 14px 16px; border-top: 1px solid var(--border-card); background: var(--bg-subtle);
    display: flex; flex-direction: column; gap: 8px;
}
    justify-content: center;
}
.header-cart-btn:hover .cart-header-badge {
    background: #000000;
    color: var(--gold);
}

.btn-header-wa {
    background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%); color: #FFFFFF;
    padding: 8px 16px; border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 800;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: 0.2s;
    box-shadow: 0 4px 14px rgba(155, 120, 62, 0.35); border: 1px solid rgba(255,255,255,0.2);
}
.btn-header-wa:hover { background: linear-gradient(135deg, #B8924E 0%, #C5A059 100%); transform: translateY(-1px); }

/* ==========================================
   🎬 GRAND CINEMATIC HERO SLIDER (PC & MOBILE)
   ========================================== */
.hero-section {
    padding: 16px 0 20px;
}
.hero-slider-wrap {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid var(--gold-border);
    background: #0A0D14;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 580px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(155, 120, 62, 0.15);
}

/* 💎 LUXURY TEMPERED GLASS OVERLAY & GLOSS SHEEN (JAJA KATEBERI) */
.hero-slider-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 25%, transparent 55%, rgba(212, 175, 55, 0.08) 100%);
    pointer-events: none;
    z-index: 4;
    border-radius: 24px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.45), inset 0 -2px 10px rgba(0, 0, 0, 0.3);
}

/* ⚡ DYNAMIC GLASS GLEAM / SHINE BEAM ANIMATION */
.hero-slider-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 45%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.28) 50%, transparent 100%);
    transform: skewX(-25deg);
    z-index: 6;
    pointer-events: none;
    animation: glassGleam 5s infinite ease-in-out;
}
@keyframes glassGleam {
    0%, 65% { left: -120%; opacity: 0; }
    70% { opacity: 1; }
    85% { left: 220%; opacity: 1; }
    100% { left: 220%; opacity: 0; }
}

@media (max-width: 991px) {
    .hero-slider-wrap {
        aspect-ratio: 16 / 9;
        border-radius: 16px;
    }
    .hero-slider-wrap::after {
        border-radius: 16px;
    }
}
@media (max-width: 600px) {
    .hero-slider-wrap {
        aspect-ratio: 16 / 10;
    }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0A0D14;
    filter: brightness(0.96) contrast(1.03);
    transition: transform 6s ease-out;
}
@media (min-width: 992px) {
    .hero-slide-bg {
        object-fit: cover;
    }
}
.hero-slide.active .hero-slide-bg {
    transform: scale(1.02);
}

/* CLEAN DIRECT TEXT WITH NO FOG / NO BLUR */
.hero-slide-content-clean {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90%;
    max-width: 880px;
    padding: 0;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    pointer-events: none;
    animation: fadeInHeroClean 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-clean-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.32;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.98), 0 2px 8px rgba(0, 0, 0, 0.95), 0 0 35px rgba(0, 0, 0, 0.9);
    margin: 0;
    letter-spacing: 0.3px;
}
@media (max-width: 991px) {
    .hero-clean-title {
        font-size: 1.45rem;
    }
}
@media (max-width: 600px) {
    .hero-clean-title {
        font-size: 1.15rem;
    }
}

@keyframes fadeInHeroClean {
    0% { opacity: 0; transform: translate(-50%, -44%) scale(0.96); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.slider-dots { position: absolute; top: 12px; left: 14px; z-index: 10; display: flex; gap: 6px; }
.slider-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.3s; }
.slider-dot.active { width: 22px; border-radius: 5px; background: var(--gold); }

/* 4 PILLARS (AI 3D ASSETS) */
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
@media(min-width: 850px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
.pillar-card {
    background: var(--bg-surface); border: 1px solid var(--border-card); border-radius: var(--radius-md);
    padding: 12px 10px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm);
}
.pillar-img-badge {
    width: 42px; height: 42px; border-radius: var(--radius-sm); object-fit: cover;
    flex-shrink: 0; box-shadow: 0 3px 8px rgba(15F, 23, 42, 0.08); border: 1px solid var(--border-subtle);
}
.pillar-card strong { display: block; font-size: 0.8rem; color: var(--text-primary); }
.pillar-card span { font-size: 0.68rem; color: var(--text-muted); }

/* HERO LUXURY QUICK ACTIONS */
.hero-desktop-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin: 20px auto 0;
    max-width: 960px;
}
.hero-cta-btn {
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.94rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.btn-hero-gold {
    background: linear-gradient(135deg, #9B783E 0%, #D4AF37 50%, #C5A059 100%);
    color: #000000;
    font-weight: 900;
    box-shadow: 0 8px 30px rgba(155, 120, 62, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}
.btn-hero-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    animation: goldSheen 4s infinite ease-in-out;
}
@keyframes goldSheen {
    0%, 100% { left: -60%; }
    50% { left: 160%; }
}
.btn-hero-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(155, 120, 62, 0.65);
    color: #000000;
}
.btn-hero-outline {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1.5px solid var(--gold-border);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}
.btn-hero-outline:hover {
    background: var(--bg-surface);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 120, 62, 0.25);
}
.btn-hero-phone {
    background: var(--bg-surface);
    color: var(--text-secondary);
    border: 1.5px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}
.btn-hero-phone:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* LUXURY SEGMENTED CONTROL / CATEGORY FILTER BAR */
.catalog-filter-chips-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    padding: 6px;
    margin: 16px auto 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    background: rgba(15, 23, 42, 0.04);
    border: 1.5px solid rgba(155, 120, 62, 0.22);
    border-radius: var(--radius-pill);
    max-width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03), inset 0 1px 2px rgba(255, 255, 255, 0.6);
}
.catalog-filter-chips-wrap::-webkit-scrollbar {
    display: none;
}
[data-theme="dark"] .catalog-filter-chips-wrap {
    background: rgba(30, 41, 59, 0.55);
    border-color: rgba(184, 146, 78, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 2px rgba(255, 255, 255, 0.05);
}
@media (max-width: 991px) {
    .catalog-filter-chips-wrap {
        max-width: 100%;
        border-radius: var(--radius-pill);
        padding: 6px 8px;
        justify-content: flex-start;
    }
}
.filter-chip-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
    box-shadow: none;
}
.filter-chip-btn:hover {
    color: var(--gold);
    background: rgba(155, 120, 62, 0.08);
}
.filter-chip-btn.active {
    background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 14px rgba(155, 120, 62, 0.4) !important;
    transform: scale(1.02);
}

/* LIVE VIEWERS TICKER & URGENCY SOCIAL PROOF */
.live-activity-ticker-wrap {
    margin: 14px auto 0;
    background: rgba(15, 23, 42, 0.04);
    border: 1.5px solid rgba(155, 120, 62, 0.3);
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 780px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}
[data-theme="dark"] .live-activity-ticker-wrap {
    background: rgba(30, 41, 59, 0.65);
    border-color: rgba(184, 146, 78, 0.35);
}
.live-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #15803D;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 800;
    flex-shrink: 0;
}
[data-theme="dark"] .live-pulse-badge {
    color: #4ADE80;
    background: rgba(34, 197, 94, 0.22);
}
.live-pulse-ring {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseLiveGreen 1.8s infinite;
}
@keyframes pulseLiveGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.live-activity-message {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.live-activity-message strong {
    color: var(--gold);
    font-weight: 900;
}
.live-activity-city {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
@media(max-width: 640px) {
    .live-activity-ticker-wrap {
        padding: 6px 12px;
        gap: 8px;
        border-radius: var(--radius-md);
    }
    .live-activity-city { display: none; }
    .live-activity-message { font-size: 0.76rem; }
}

/* SECTION BASE */
.section-wrap { padding: 36px 0; }
.section-header { text-align: center; margin-bottom: 20px; }
.section-tag { font-size: 0.74rem; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; display: block; }
.section-title { font-size: 1.45rem; font-weight: 900; color: var(--text-primary); margin-bottom: 4px; }
@media(min-width: 768px) { .section-title { font-size: 1.85rem; } }
.section-desc { font-size: 0.86rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ==========================================
   ✨ INTERACTIVE BEFORE/AFTER TRANSFORMATION SLIDER
   ========================================== */
.comparison-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.comp-tabs-scroll-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 14px auto 16px;
    max-width: 900px;
    position: relative;
}

.comp-tabs-track {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    padding: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.comp-tabs-track::-webkit-scrollbar {
    display: none;
}

.comp-scroll-arrow {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    color: var(--gold);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.comp-scroll-arrow:hover {
    background: var(--gold);
    color: #FFFFFF;
}

.comp-tab-btn {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    color: var(--text-secondary);
    padding: 9px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: all 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.comp-tab-btn i {
    color: var(--gold);
    font-size: 0.95rem;
}

.comp-tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.comp-tab-btn.active {
    background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%) !important;
    color: #FFFFFF !important;
    border-color: var(--gold) !important;
    box-shadow: 0 4px 15px rgba(155, 120, 62, 0.4) !important;
    transform: scale(1.03);
}

.comp-tab-btn.active i {
    color: #FFFFFF !important;
}

.comparison-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    height: 480px;
    margin: 18px auto 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid var(--gold-border);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    background: #0A0D14;
    user-select: none;
    touch-action: pan-y;
}

@media (max-width: 768px) {
    .comparison-wrapper {
        height: 380px;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 480px) {
    .comparison-wrapper {
        height: 300px;
    }
}

.comp-layer {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
}

.after-layer {
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.before-layer {
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
    border-right: 2.5px solid #FFFFFF;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.5);
}

.comp-img-real {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.before-layer .comp-img-real {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
    max-width: none;
}

/* BADGES ON COMPARISON LAYERS */
.comp-badge-tag {
    position: absolute;
    top: 14px;
    z-index: 5;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    pointer-events: none;
}

.before-tag {
    left: 14px;
    background: rgba(15, 23, 42, 0.85);
    color: #F8FAFC;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.after-tag {
    right: 14px;
    background: linear-gradient(135deg, rgba(155, 120, 62, 0.92) 0%, rgba(197, 160, 89, 0.95) 100%);
    color: #000000;
    font-weight: 900;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 18px rgba(155, 120, 62, 0.4);
}

/* DRAG HANDLE */
.comp-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #FFFFFF;
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.6);
}

.comp-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E5C378 0%, #B8924E 100%);
    border: 3px solid #FFFFFF;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(229, 195, 120, 0.6);
    cursor: grab;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.comp-handle:active .comp-handle-button {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.12);
}

/* MAIN CATEGORY CARDS (WITH 3D CARD FLIP) */
.category-cards-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 14px; align-items: stretch; }
@media(min-width: 768px) { .category-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 1100px) { .category-cards-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.cat-card-static,
.cat-card-flip-wrap {
    height: 530px;
    width: 100%;
    position: relative;
    border-radius: var(--radius-md);
    box-sizing: border-box;
}
@media (max-width: 600px) {
    .cat-card-static,
    .cat-card-flip-wrap {
        height: 490px;
    }
    .cat-media-box {
        height: 180px !important;
    }
}

.cat-card-static {
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid var(--border-card);
    background: var(--bg-surface);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.25s;
    cursor: pointer;
}
.cat-card-static:hover {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.cat-card-flip-wrap {
    perspective: 1200px;
}

.cat-card-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.34, 1.25, 0.64, 1);
    border-radius: var(--radius-md);
}
.cat-card-flip-wrap.flipped .cat-card-flip-inner {
    transform: rotateY(180deg);
}

.cat-card-front, .cat-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1.5px solid var(--border-card);
    background: var(--bg-surface);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.cat-card-front {
    z-index: 2;
    transform: rotateY(0deg);
    transition: border-color 0.25s, box-shadow 0.25s;
}
.cat-card-flip-wrap:hover .cat-card-front {
    border-color: var(--gold-border);
    box-shadow: var(--shadow-hover);
}

.flip-hint-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.88);
    border: 1.5px solid var(--gold-border);
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: 0.25s ease;
    user-select: none;
}
.flip-hint-badge:hover {
    background: var(--gold);
    color: #0F172A;
    transform: scale(1.06);
}

.cat-card-back {
    transform: rotateY(180deg);
    z-index: 3;
    background: radial-gradient(circle at 50% 20%, #1E293B 0%, #0F172A 100%);
    color: #FFFFFF;
    border: 1.5px solid var(--gold-border);
    padding: 22px 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.55), inset 0 0 25px rgba(155,120,62,0.18);
}

.flip-back-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(229,195,120,0.25);
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.flip-back-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-flip-close {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #F8FAFC;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: 0.2s;
}
.btn-flip-close:hover {
    background: var(--gold);
    color: #0F172A;
    transform: scale(1.1);
}
.flip-features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 14px;
}
.flip-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #E2E8F0;
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
    font-weight: 700;
}
.flip-feature-item i {
    color: var(--gold);
    font-size: 0.95rem;
    flex-shrink: 0;
}
.flip-actions-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}
.btn-flip-maquette-wa {
    background: #22C55E;
    color: #FFFFFF;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
    transition: 0.2s;
    border: none;
    cursor: pointer;
}
.btn-flip-maquette-wa:hover {
    background: #16A34A;
    transform: translateY(-1px);
}
.btn-flip-open-drawer {
    background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%);
    color: #FFFFFF;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(155,120,62,0.25);
    transition: 0.2s;
}
.btn-flip-open-drawer:hover {
    background: linear-gradient(135deg, #B8924E 0%, #C5A059 100%);
    transform: translateY(-1px);
}

.cat-media-box {
    width: 100%;
    height: 195px;
    background: #F8FAFC;
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.cat-card-img { width: 100%; height: 100%; object-fit: cover; }
.cat-empty-placeholder { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--text-muted); padding: 15px; text-align: center; }
.cat-empty-placeholder i { font-size: 2rem; color: var(--gold); }
.cat-empty-placeholder span { font-size: 0.76rem; font-weight: 700; }

.cat-card-body {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}
.cat-badge { font-size: 0.72rem; color: var(--gold); font-weight: 800; }
.cat-title {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.35;
    margin: 2px 0 4px;
    min-height: 40px;
    max-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    direction: rtl;
    unicode-bidi: isolate;
}
.cat-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.45;
    min-height: 44px;
    max-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: auto;
}

.btn-view-sizes {
    background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%);
    color: #FFFFFF;
    height: 44px;
    min-height: 44px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
    margin-bottom: 0;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 4px 14px rgba(155, 120, 62, 0.3);
    flex-shrink: 0;
    white-space: nowrap;
    box-sizing: border-box;
}
.btn-view-sizes:hover {
    background: linear-gradient(135deg, #B8924E 0%, #C5A059 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(155, 120, 62, 0.45);
}

/* FOCUSED PRODUCT HUB DRAWER (PER-CATEGORY COMPLETE EXPERIENCE) */
#pricingDrawerModal {
    position: fixed; inset: 0; background: rgba(28, 22, 12, 0.75); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    z-index: 2000; display: none; align-items: flex-end; justify-content: center;
}
@media(min-width: 768px) { #pricingDrawerModal { align-items: center; padding: 20px; } }

.drawer-sheet {
    background: var(--bg-surface); color: var(--text-primary); width: 100%; max-width: 720px; max-height: 92vh;
    border-radius: 24px 24px 0 0; overflow-y: auto; padding: 24px 18px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.45); display: flex; flex-direction: column; gap: 18px;
    animation: slideDrawerUp 0.35s ease; border: 1.5px solid var(--border-card);
}
@media(min-width: 768px) { .drawer-sheet { border-radius: var(--radius-lg); max-height: 88vh; padding: 28px; } }
@keyframes slideDrawerUp { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } }

.drawer-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-subtle); padding-bottom: 12px; }
.drawer-title { font-size: 1.25rem; font-weight: 900; color: var(--text-primary); }
.btn-close-drawer {
    background: var(--bg-subtle); border: 1px solid var(--border-subtle); width: 34px; height: 34px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-primary); font-size: 1rem;
    transition: 0.2s;
}
.btn-close-drawer:hover { background: var(--gold); color: #FFFFFF; }

.drawer-section-title {
    font-size: 0.86rem; font-weight: 800; color: var(--text-primary); margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
}

.size-pills-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.size-pills-row::-webkit-scrollbar { display: none; }
.size-pill-btn {
    background: var(--bg-subtle); border: 1.5px solid var(--border-subtle); padding: 8px 14px;
    border-radius: var(--radius-pill); font-size: 0.8rem; font-weight: 800; cursor: pointer; white-space: nowrap;
    color: var(--text-primary); transition: 0.2s;
}
.size-pill-btn.active { background: linear-gradient(135deg, #9B783E 0%, #85632E 100%); color: #FFFFFF; border-color: #9B783E; box-shadow: 0 4px 12px rgba(155,120,62,0.35); }

.usecase-btn {
    background: var(--bg-subtle); border: 1.5px solid var(--border-subtle); border-radius: var(--radius-sm);
    padding: 8px 10px; font-size: 0.76rem; font-weight: 700; color: var(--text-primary);
    cursor: pointer; display: flex; align-items: center; gap: 6px; transition: 0.2s;
    text-align: right;
}
.usecase-btn:hover, .usecase-btn.active {
    border-color: var(--gold); background: var(--gold-light); color: var(--gold);
    transform: translateY(-1px);
}

.qty-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; margin: 8px 0; }
.qty-card-choice {
    background: var(--bg-subtle); border: 2px solid var(--border-subtle); border-radius: var(--radius-md);
    padding: 12px 10px; text-align: center; cursor: pointer; transition: 0.2s; display: flex; flex-direction: column; gap: 4px;
}
.qty-card-choice.active { border-color: var(--gold); background: var(--gold-light); transform: scale(1.02); }
.qty-label { font-size: 0.82rem; font-weight: 800; color: var(--text-primary); }
.qty-unit-price { font-size: 1.05rem; font-family: var(--font-en); font-weight: 900; color: var(--gold); }
.qty-total-price { font-size: 0.74rem; color: var(--text-muted); font-weight: 700; }

.drawer-total-box {
    background: linear-gradient(135deg, #1C160C 0%, #2E2412 100%); color: #FFFFFF; border-radius: var(--radius-md);
    padding: 16px; display: flex; justify-content: space-between; align-items: center; border: 1.5px solid var(--gold);
}

.btn-confirm-wa {
    background: #22C55E; color: #FFFFFF; font-weight: 900; font-size: 0.95rem;
    padding: 14px 20px; border-radius: var(--radius-pill); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.35); transition: 0.2s;
}
.btn-confirm-wa:hover { background: #16A34A; }

/* STATS COUNTERS BANNER (LUXURY GOLD) */
.stats-banner-wrap {
    background: var(--bg-surface); border: 1px solid var(--border-card); border-radius: var(--radius-lg);
    padding: 24px 16px; margin: 20px 0 10px; box-shadow: var(--shadow-sm);
}
.stats-grid-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center;
}
@media(max-width: 768px) {
    .stats-grid-row { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
    .stats-banner-wrap { padding: 20px 12px; margin: 16px 0 8px; }
}
.stat-item-box { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.stat-number {
    font-family: var(--font-serif); font-size: 2.5rem; font-weight: 900; color: var(--gold);
    line-height: 1.1; display: inline-block; letter-spacing: -0.5px;
}
@media(max-width: 480px) { .stat-number { font-size: 2.1rem; } }
.stat-label { font-size: 0.82rem; font-weight: 700; color: #475569; margin-top: 4px; }
/* INTERACTIVE BEFORE/AFTER REAL PHOTO COMPARISON SLIDER */
.comparison-section { padding: 24px 0 16px; }

/* LUXURY COMPACT HORIZONTAL STORY SCROLL FOR COMPARISON TABS (0ms LAG • MOBILE FIRST) */
.comp-tabs-scroll-wrap {
    position: relative; width: 100%; max-width: 600px; margin: 0 auto 18px;
    display: flex; align-items: center; gap: 6px;
}
.comp-tabs-track {
    display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch; padding: 6px 14px; width: 100%;
    scroll-snap-type: x mandatory;
}
.comp-tabs-track::-webkit-scrollbar { display: none; }

.comp-tab-btn {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1.5px solid var(--border-subtle);
    padding: 9px 16px; border-radius: var(--radius-pill);
    font-size: 0.82rem; font-weight: 800; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px; transition: 0.2s;
    box-shadow: var(--shadow-sm); white-space: nowrap; flex-shrink: 0;
    scroll-snap-align: center;
}
.comp-tab-btn i { font-size: 0.9rem; color: var(--gold); }
.comp-tab-btn.active i { color: #FFFFFF !important; }
.comp-tab-btn:hover {
    border-color: var(--gold); transform: translateY(-1px);
}
.comp-tab-btn.active {
    background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%) !important;
    color: #FFFFFF !important;
    border-color: var(--gold) !important;
    box-shadow: 0 4px 14px rgba(155, 120, 62, 0.4);
}
.comp-scroll-arrow {
    width: 32px; height: 32px; border-radius: 50%; background: var(--bg-surface);
    border: 1.5px solid var(--gold-border); color: var(--gold);
    display: flex; align-items: center; justify-content: center; font-size: 0.75rem;
    cursor: pointer; flex-shrink: 0; box-shadow: var(--shadow-sm); z-index: 2;
    transition: 0.2s;
}
.comp-scroll-arrow:hover { background: var(--gold); color: #FFFFFF; }
@media(max-width: 580px) {
    .comp-scroll-arrow { display: none; }
    .comp-tabs-track { padding: 4px 16px; }
}
@media(min-width: 650px) {
    .comp-tabs-track { justify-content: center; flex-wrap: wrap; }
    .comp-scroll-arrow { display: none; }
}
.comparison-wrapper {
    position: relative; width: 100%; max-width: 540px; height: 540px;
    margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden;
    border: 2.5px solid var(--gold-border); box-shadow: 0 16px 36px rgba(0,0,0,0.25);
    user-select: none; touch-action: pan-y; background: #000000;
}
@media(max-width: 580px) { .comparison-wrapper { max-width: 100%; height: 380px; } }
@media(max-width: 400px) { .comparison-wrapper { height: 330px; } }

.comp-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
}
.comp-layer.after-layer {
    z-index: 1;
}
.comp-layer.before-layer {
    z-index: 2; width: 50%;
    border-left: 2.5px solid var(--gold);
    box-shadow: 4px 0 15px rgba(0,0,0,0.5);
}

.comp-img-real {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; object-fit: cover;
    display: block; pointer-events: none;
}
.comp-layer.before-layer .comp-img-real {
    width: 100%; height: 100%; max-width: none;
}

.comp-badge-tag {
    position: absolute; top: 14px; padding: 6px 14px;
    border-radius: var(--radius-pill); font-size: 0.76rem; font-weight: 800;
    z-index: 5; backdrop-filter: blur(8px);
}
.comp-badge-tag.before-tag {
    right: 14px; background: rgba(28,22,12,0.85); color: #E2E8F0;
    border: 1px solid rgba(229,195,120,0.4);
}
.comp-badge-tag.after-tag {
    left: 14px; background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%); color: #ffffff;
    border: 1px solid #FFFFFF; box-shadow: 0 2px 14px rgba(155,120,62,0.5);
}

.comp-handle {
    position: absolute; top: 0; bottom: 0; left: 50%; width: 4px;
    background: var(--gold); cursor: ew-resize; z-index: 10;
    transform: translateX(-50%); box-shadow: 0 0 18px rgba(212,175,55,0.9);
}
.comp-handle-button {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #9B783E 0%, #85632E 100%);
    border: 2.5px solid #FFFFFF; color: #FFFFFF;
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6), 0 0 14px rgba(212,175,55,0.7);
    pointer-events: none;
}

/* DEDICATED CATEGORY MEDIA & PROOF BLOCKS INSIDE DRAWER */
.drawer-dedicated-video-box {
    border-radius: var(--radius-md); overflow: hidden; height: 210px; background: #1C160C;
    border: 1px solid var(--gold-border); position: relative; display: flex; align-items: center; justify-content: center;
}
.drawer-dedicated-video-box video { width: 100%; height: 100%; object-fit: cover; }

/* LUXURY INTERACTIVE VOICE NOTE PLAYER */
.vn-card {
    background: var(--bg-surface); border: 1.5px solid var(--gold-border); border-radius: var(--radius-md);
    padding: 14px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm);
}
.vn-header { display: flex; justify-content: space-between; align-items: center; }
.vn-author-tag { font-size: 0.78rem; font-weight: 800; color: var(--gold); display: flex; align-items: center; gap: 6px; }
.vn-quote { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.4; }

.vn-player-bar {
    background: var(--gold-light); border: 1px solid var(--gold-border); border-radius: var(--radius-pill);
    padding: 6px 12px; display: flex; align-items: center; gap: 10px; direction: ltr;
}
.vn-play-btn {
    width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%); color: #FFFFFF;
    border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: 0.95rem; flex-shrink: 0; transition: 0.2s; box-shadow: 0 2px 8px rgba(155,120,62,0.3);
}
.vn-play-btn:hover { background: var(--gold); }
.vn-play-btn.playing { background: #22C55E; box-shadow: 0 0 12px rgba(34, 197, 94, 0.4); }

.vn-progress-wrap { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.vn-track { width: 100%; height: 6px; background: rgba(0,0,0,0.08); border-radius: 3px; position: relative; overflow: hidden; cursor: pointer; }
.vn-fill { height: 100%; width: 0%; background: var(--gold); border-radius: 3px; transition: width 0.1s linear; }
.vn-time-text { font-size: 0.68rem; font-family: var(--font-en); font-weight: 700; color: var(--text-muted); text-align: right; }

.drawer-samples-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; }
.drawer-sample-thumb {
    width: 100px; height: 100px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0;
    border: 1px solid var(--border-subtle); background: #F1F5F9;
}

/* 5 GUARANTEES (AI 3D ASSETS) */
.guarantees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; margin-top: 14px; }
.guarantee-card {
    background: var(--bg-surface); border: 1px solid var(--border-card); border-radius: var(--radius-md);
    padding: 16px 12px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px;
    box-shadow: var(--shadow-sm);
}
.guarantee-img-badge {
    width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
    border: 1.5px solid var(--gold-border); box-shadow: 0 4px 10px rgba(155,120,62,0.15);
}
.guarantee-card strong { font-size: 0.86rem; color: var(--text-primary); font-weight: 800; }
.guarantee-card p { font-size: 0.74rem; color: var(--text-secondary); line-height: 1.4; margin: 0; }

/* SOCIAL PROOF & LUXURY REVIEWS WALL */
.reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px; margin-top: 20px;
}
.review-card {
    background: var(--card-bg); border: 1.5px solid var(--border-card); border-radius: var(--radius-md);
    padding: 18px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px;
    position: relative; transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.review-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(155,120,62,0.12); border-color: var(--gold-border); }
.review-card.user-submitted {
    border: 1.5px solid var(--gold);
    background: linear-gradient(180deg, var(--card-bg) 0%, rgba(229,195,120,0.04) 100%);
}
.review-header { display: flex; align-items: center; justify-content: space-between; }
.review-client-info { display: flex; align-items: center; gap: 12px; }

/* REAL LUXURY 3D STOREFRONT SIGNBOARD BADGE (PANNEAU ENSEIGNE 3D) */
.review-brand-badge {
    width: 48px; height: 48px; border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #2A3245 0%, #131722 65%, #080B12 100%);
    border: 2px solid #E5C378;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 0.96rem; font-weight: 900; color: #F5E0A3;
    box-shadow: 0 6px 18px rgba(0,0,0,0.6), inset 0 2px 4px rgba(255,255,255,0.35), inset 0 -2px 5px rgba(0,0,0,0.8), 0 0 14px rgba(229,195,120,0.35);
    flex-shrink: 0; position: relative; font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 8px rgba(229,195,120,0.6);
}
.review-brand-badge svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.85)) drop-shadow(0 0 6px rgba(229,195,120,0.5));
}
.review-brand-badge::after {
    content: '★'; position: absolute; top: -3px; right: -2px;
    font-size: 0.52rem; color: #F59E0B; background: #0F172A;
    border-radius: 50%; width: 13px; height: 13px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid var(--gold);
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}
.review-name { font-size: 0.92rem; font-weight: 800; color: var(--text-primary); }
.review-city { font-size: 0.72rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.review-stars { color: #F59E0B; font-size: 0.82rem; letter-spacing: 1px; }
.review-bubble {
    background: var(--gold-light); border: 1px solid var(--gold-border); border-radius: 12px;
    padding: 14px; font-size: 0.84rem; color: var(--text-primary); line-height: 1.65;
    position: relative;
}
.review-meta-bar {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.72rem; border-top: 1px dashed var(--border-subtle);
    padding-top: 10px; margin-top: 2px;
}
.review-badge-verified {
    font-size: 0.72rem; font-weight: 800; color: var(--success);
    display: inline-flex; align-items: center; gap: 5px;
}
.review-date-text { color: var(--text-muted); font-size: 0.7rem; }
.review-like-btn {
    background: transparent; border: 1px solid var(--border-subtle);
    border-radius: 15px; padding: 3px 9px; font-size: 0.7rem;
    color: var(--text-secondary); cursor: pointer; display: inline-flex;
    align-items: center; gap: 4px; transition: 0.2s;
}
.review-like-btn:hover, .review-like-btn.liked {
    color: #EF4444; border-color: rgba(239,68,68,0.4); background: rgba(239,68,68,0.08);
}

/* REVIEW SUBMISSION MODAL */
#reviewSubmissionModal {
    position: fixed; inset: 0; background: rgba(15,23,42,0.85); backdrop-filter: blur(8px);
    z-index: 10002; display: none; align-items: center; justify-content: center; padding: 16px;
}
.review-modal-box {
    background: var(--card-bg); width: 100%; max-width: 520px;
    border-radius: var(--radius-lg); border: 1.5px solid var(--gold-border);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); overflow: hidden;
    animation: slideUpAiChat 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.review-modal-header {
    background: linear-gradient(135deg, #1C160C 0%, #2A2010 100%);
    padding: 16px 20px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1.5px solid var(--gold); color: #FFFFFF;
}
.review-modal-body {
    padding: 20px; display: flex; flex-direction: column; gap: 14px;
}
.review-input-group {
    display: flex; flex-direction: column; gap: 6px;
}
.review-input-group label {
    font-size: 0.8rem; font-weight: 800; color: var(--text-primary);
}
.review-input-field {
    width: 100%; background: var(--bg-surface); border: 1px solid var(--border-card);
    border-radius: var(--radius-sm); padding: 10px 14px; color: var(--text-primary);
    font-size: 0.85rem; outline: none; transition: 0.2s;
}
.review-input-field:focus {
    border-color: var(--gold); box-shadow: 0 0 0 2px rgba(229,195,120,0.2);
}
.star-rating-selector {
    display: flex; gap: 8px; font-size: 1.5rem; color: #CBD5E1; cursor: pointer;
}
.star-rating-selector .star-item {
    background: transparent; border: none; font-size: 1.5rem; cursor: pointer; color: #CBD5E1; transition: 0.2s;
}
.star-rating-selector .star-item.active {
    color: #F59E0B;
}

/* ==========================================================================
   OUR STORY / ABOUT RUBLIS - LUXURY INTERACTIVE ACCORDION / TEASER
   ========================================================================== */
.story-teaser-card {
    background: linear-gradient(135deg, rgba(28,22,12,0.95) 0%, rgba(18,14,8,0.98) 100%);
    border: 1.5px solid rgba(229,195,120,0.35);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    user-select: none;
    max-width: 860px;
    margin: 0 auto;
}
.story-teaser-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9B783E, #E5C378, #D4AF37, #C5A059);
}
.story-teaser-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(229,195,120,0.2);
}
.story-teaser-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.story-teaser-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229,195,120,0.2) 0%, rgba(212,175,55,0.08) 100%);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(212,175,55,0.25);
}
.story-teaser-info {
    flex: 1;
}
.story-teaser-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.story-teaser-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #FFFFFF;
    margin: 0 0 3px;
    line-height: 1.3;
}
.story-teaser-hook {
    font-size: 0.82rem;
    color: #94A3B8;
    margin: 0;
    line-height: 1.45;
}
.story-teaser-action {
    flex-shrink: 0;
}
.btn-story-toggle {
    background: linear-gradient(135deg, #9B783E 0%, #D4AF37 100%);
    color: #1A140B;
    border: none;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 900;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(212,175,55,0.4);
    transition: 0.25s ease;
    pointer-events: none;
}
.story-teaser-card:hover .btn-story-toggle {
    transform: scale(1.03);
    box-shadow: 0 6px 24px rgba(212,175,55,0.6);
}
.story-toggle-icon {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.85rem;
}
.story-teaser-card.is-open .story-toggle-icon {
    transform: rotate(180deg);
}

/* EXPANDABLE CONTAINER WITH SMOOTH ANIMATION */
.story-expandable-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
    overflow: hidden;
    max-width: 860px;
    margin: 0 auto;
}
.story-expandable-wrap.is-open {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 16px;
}
.story-expandable-wrap > .story-manifesto-card {
    min-height: 0;
    margin-top: 0;
}

.story-manifesto-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border-card);
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}
.story-manifesto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #9B783E, #E5C378, #D4AF37, #C5A059);
}
.story-manifesto-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}
.manifesto-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229,195,120,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}
.manifesto-title {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 8px;
    line-height: 1.35;
}
.manifesto-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}
.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.manifesto-p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.95;
    margin: 0;
}
.manifesto-highlight-box {
    background: linear-gradient(135deg, rgba(229,195,120,0.14) 0%, rgba(212,175,55,0.05) 100%);
    border-inline-start: 4px solid var(--gold);
    border-radius: 0 16px 16px 0;
    padding: 18px 22px;
    margin: 6px 0;
    position: relative;
}
.manifesto-highlight-box p {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.85;
    margin: 0;
}
.manifesto-footer-seal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    margin-top: 10px;
    border-top: 1px solid var(--border-subtle);
    flex-wrap: wrap;
    gap: 14px;
}
.seal-signature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.seal-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(229,195,120,0.15);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.seal-info strong {
    display: block;
    font-size: 0.92rem;
    color: var(--gold);
    font-weight: 900;
}
.seal-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
}
.manifesto-cta {
    padding: 12px 24px;
    font-size: 0.88rem;
    font-weight: 900;
    border-radius: var(--radius-pill);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(155,120,62,0.35);
}
.btn-story-close-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
    padding: 10px 18px;
    font-size: 0.82rem;
    font-weight: 800;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-story-close-pill:hover {
    background: rgba(229,195,120,0.15);
    color: var(--gold);
    border-color: var(--gold);
}

@media (max-width: 768px) {
    .story-teaser-card {
        padding: 16px 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        border-radius: 16px;
    }
    .story-teaser-left {
        gap: 12px;
    }
    .story-teaser-icon {
        width: 42px;
        height: 42px;
        font-size: 1.15rem;
    }
    .story-teaser-title {
        font-size: 1.02rem;
    }
    .story-teaser-hook {
        font-size: 0.78rem;
    }
    .btn-story-toggle {
        width: 100%;
        justify-content: center;
        padding: 11px 16px;
        font-size: 0.84rem;
    }
    .story-manifesto-card {
        padding: 24px 18px;
        border-radius: 18px;
    }
    .manifesto-title {
        font-size: 1.25rem;
    }
    .manifesto-p {
        font-size: 0.88rem;
        line-height: 1.8;
    }
    .manifesto-highlight-box {
        padding: 14px 16px;
    }
    .manifesto-highlight-box p {
        font-size: 0.9rem;
        line-height: 1.75;
    }
    .manifesto-footer-seal {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 16px;
    }
    .seal-signature {
        justify-content: center;
    }
    .manifesto-cta {
        width: 100%;
        justify-content: center;
    }
    .btn-story-close-pill {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ ACCORDION */
.faq-wrap { max-width: 800px; margin: 20px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--card-bg); border: 1px solid var(--border-card); border-radius: var(--radius-md);
    overflow: hidden; transition: 0.2s;
}
.faq-question {
    padding: 16px 20px; font-weight: 800; font-size: 0.92rem; color: var(--text-primary);
    display: flex; align-items: center; justify-content: space-between; cursor: pointer;
    user-select: none;
}
.faq-question i { transition: transform 0.3s ease; color: var(--gold); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 0.84rem; color: var(--text-secondary); line-height: 1.7;
    padding: 0 20px; background: var(--bg-main);
}
.faq-item.active .faq-answer {
    max-height: 300px; padding: 14px 20px 18px; border-top: 1px solid var(--border-subtle);
}

/* DEVIS PROFORMA MODAL & PRINT */
#devisModal {
    position: fixed; inset: 0; background: rgba(28,22,12,0.8); backdrop-filter: blur(6px);
    z-index: 10000; display: none; align-items: center; justify-content: center; padding: 16px;
}
.devis-paper {
    background: var(--card-bg); width: 100%; max-width: 650px; max-height: 90vh; overflow-y: auto;
    border-radius: var(--radius-md); padding: 24px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    font-family: var(--font-ar); color: var(--text-primary); position: relative; border: 2px solid var(--gold-border);
}
.devis-header-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    border-bottom: 2px solid var(--gold); padding-bottom: 14px; margin-bottom: 16px;
}
.devis-table {
    width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.82rem;
}
.devis-table th {
    background: linear-gradient(135deg, #9B783E 0%, #85632E 100%); color: #FFFFFF; padding: 10px; text-align: right; font-weight: 800;
}
.devis-table td {
    padding: 10px; border-bottom: 1px solid var(--border-subtle); color: var(--text-primary);
}
.devis-stamp-box {
    display: inline-block; border: 2px solid #9B783E; color: #9B783E; border-radius: 8px;
    padding: 6px 14px; font-weight: 900; text-align: center; transform: rotate(-5deg);
    font-size: 0.78rem; margin-top: 10px;
}
@media print {
    body * { visibility: hidden; }
    #devisModal, #devisPaperArea, #devisPaperArea * { visibility: visible; }
    #devisModal { position: absolute; left: 0; top: 0; background: transparent; padding: 0; display: block !important; }
    .devis-paper { max-height: none; max-width: 100%; border: none; box-shadow: none; }
    .devis-actions-bar { display: none !important; }
}

/* 📱 ULTRA-LIGHTWEIGHT ZERO-LAG MOBILE STYLES (60-120 FPS TURBO) */
@media(max-width: 768px) {
    *, header, #rublisAiChatModal, #cartDrawerModal, #devisModal, .boutique-entrance-wrap {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    header { background: var(--header-bg) !important; }
}

@media(max-width: 600px) {
    .container { padding: 0 10px; }
    header { padding: 6px 0; }
    .header-content { gap: 6px; }
    .header-logo-img { height: 40px !important; max-width: 120px !important; transform: none !important; }
    .theme-toggle-btn, .header-cart-btn, .header-menu-btn { width: 32px; height: 32px; font-size: 0.8rem; }
    .nav-studio-header-btn { display: none !important; }
    .btn-header-wa { padding: 6px 11px !important; font-size: 0.74rem !important; gap: 4px !important; flex-shrink: 0; }
    
    /* HERO & SLIDER */
    .hero-section { padding: 8px 0 4px; }
    .hero-slider-wrap { min-height: 220px; aspect-ratio: 16/10; border-radius: 14px; }
    .hero-slide-title { font-size: 1.15rem; line-height: 1.25; }

    /* 4 PILLARS */
    .pillars-grid { gap: 6px; margin-top: 8px; }
    .pillar-card { padding: 8px; gap: 8px; border-radius: 10px; }
    .pillar-img-badge { width: 34px; height: 34px; }
    .pillar-card strong { font-size: 0.74rem; }
    .pillar-card span { font-size: 0.62rem; }

    /* STATS COUNTERS */
    .stats-banner-wrap { padding: 14px 8px; margin: 10px 0 6px; border-radius: 14px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.7rem; margin-top: 2px; }

    /* COMPARISON SLIDER */
    .comparison-section { padding: 14px 0 8px; }
    .comparison-wrapper { max-width: 100%; height: 300px; border-radius: 14px; }
    .comp-tab-btn { padding: 6px 12px; font-size: 0.74rem; }
    .comp-badge-tag { top: 8px; padding: 4px 10px; font-size: 0.68rem; }
    .comp-badge-tag.before-tag { right: 8px; }
    .comp-badge-tag.after-tag { left: 8px; }
    .comp-handle-button { width: 36px; height: 36px; font-size: 0.85rem; }

    /* SECTION TITLES */
    .section-wrap { padding: 20px 0; }
    .section-header { margin-bottom: 12px; }
    .section-tag { font-size: 0.68rem; }
    .section-title { font-size: 1.25rem; }
    .section-desc { font-size: 0.76rem; }

    /* CATEGORY FILTER CHIPS (MOBILE OPTIMIZATION) */
    .catalog-filter-chips-wrap {
        margin: 10px auto 16px;
        padding: 5px 8px;
        gap: 5px;
        border-radius: var(--radius-pill);
        -webkit-overflow-scrolling: touch;
    }
    .filter-chip-btn {
        padding: 6px 13px;
        font-size: 0.78rem;
    }
    .catalog-search-wrap {
        margin-bottom: 16px !important;
    }

    /* CATEGORY CARDS */
    .category-cards-grid { gap: 12px; }
    .cat-card-body { padding: 12px; gap: 6px; }
    .cat-title { font-size: 1.05rem; }
    .cat-desc { font-size: 0.76rem; line-height: 1.4; }
    .btn-view-sizes { padding: 9px 12px; font-size: 0.8rem; border-radius: 8px; }

    /* GUARANTEES */
    .guarantees-grid { gap: 8px; }
    .guarantee-card { padding: 12px 8px; border-radius: 10px; }
    .guarantee-img-badge { width: 40px; height: 40px; }
    .guarantee-card strong { font-size: 0.78rem; }
    .guarantee-card p { font-size: 0.68rem; }

    /* DRAWER MODAL */
    .drawer-sheet { padding: 16px 12px; border-radius: 18px 18px 0 0; gap: 12px; }
    .drawer-title { font-size: 1.1rem; }
    .size-pill-btn { padding: 6px 12px; font-size: 0.74rem; }
    .usecase-btn { padding: 6px 8px; font-size: 0.72rem; }
    .qty-card-choice { padding: 8px 6px; }
    .qty-unit-price { font-size: 0.95rem; }
    .drawer-total-box { padding: 12px 14px; }
    .btn-confirm-wa, .btn-add-cart { padding: 10px 12px; font-size: 0.84rem; }
}

.mobile-fixed-bottom { display: none !important; }

/* FOOTER */
footer { background: var(--footer-bg); border-top: 1px solid var(--border-subtle); padding: 30px 0 20px; text-align: center; }
.footer-legal { font-size: 0.74rem; color: var(--text-muted); margin-top: 8px; }

/* SHOPPING CART STYLES */
.header-cart-btn {
    position: relative; background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%); color: #FFFFFF; border: none;
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: 0.2s; box-shadow: 0 4px 12px rgba(155,120,62,0.35);
    border: 1px solid rgba(255,255,255,0.2);
}
.header-cart-btn:hover { transform: scale(1.06); background: linear-gradient(135deg, #B8924E 0%, #C5A059 100%); }
.cart-header-badge {
    position: absolute; top: -4px; right: -4px; background: #EF4444; color: #FFFFFF;
    font-size: 0.66rem; font-weight: 900; width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; border: 2px solid #FFFFFF;
}

/* FLOATING CART PILL - HIDDEN BY DEFAULT UNTIL CLIENT ADDS A PRODUCT */
.floating-cart-pill {
    position: fixed;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99998;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    padding: 9px 18px;
    border-radius: 40px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.65), 0 0 16px rgba(229, 195, 120, 0.35);
    border: 1.5px solid var(--gold);
    display: none;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}
.floating-cart-pill.active {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: slideInPillCenter 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes slideInPillCenter {
    0% { transform: translateX(-50%) translateY(45px) scale(0.85); opacity: 0; }
    100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
}
.floating-cart-pill:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.03);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.75), 0 0 24px rgba(229, 195, 120, 0.55);
}
.cart-pill-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(229, 195, 120, 0.15);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
}
.cart-pill-badge {
    position: absolute;
    top: -5px;
    right: -7px;
    background: #EF4444;
    color: #FFF;
    font-size: 0.65rem;
    font-weight: 900;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #0F172A;
}
.cart-pill-info { display: flex; flex-direction: column; text-align: right; }
.cart-pill-title { font-size: 0.72rem; color: #CBD5E1; font-weight: 700; line-height: 1.2; }
.cart-pill-total { font-size: 0.95rem; color: var(--gold); font-weight: 900; font-family: var(--font-en); line-height: 1.2; }
.cart-pill-action-badge {
    background: var(--gold);
    color: #0F172A;
    font-size: 0.76rem;
    font-weight: 900;
    padding: 4px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(229, 195, 120, 0.4);
}

/* CART BUMP ANIMATION */
@keyframes cartBadgeBump {
    0% { transform: scale(1); }
    30% { transform: scale(1.4); }
    60% { transform: scale(0.92); }
    100% { transform: scale(1); }
}
.cart-bump-anim {
    animation: cartBadgeBump 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* CART SUCCESS TOAST */
.cart-success-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF;
    padding: 10px 16px;
    border-radius: 40px;
    border: 1.5px solid var(--gold);
    box-shadow: 0 12px 35px rgba(0,0,0,0.65), 0 0 20px rgba(229,195,120,0.3);
    z-index: 100005;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    max-width: 90vw;
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}
.cart-success-toast.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.toast-cart-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.2);
    border: 1.5px solid #22C55E;
    color: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.toast-cart-body { display: flex; flex-direction: column; text-align: right; }
.toast-cart-title { font-size: 0.82rem; font-weight: 800; color: #FFFFFF; line-height: 1.3; }
.toast-cart-sub { font-size: 0.72rem; color: var(--gold); font-weight: 600; }
.toast-cart-btn {
    background: var(--gold);
    color: #0F172A;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s, background 0.2s;
    font-family: 'Cairo', sans-serif;
    white-space: nowrap;
}
.toast-cart-btn:hover { background: #FDE047; transform: scale(1.05); }
.toast-cart-close {
    background: transparent;
    border: none;
    color: #94A3B8;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 4px;
}

/* CART EXIT INTENT MODAL */
#cartExitIntentModal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100006;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.cart-exit-modal-box {
    background: #0F172A;
    border: 1.5px solid var(--gold);
    border-radius: 24px;
    max-width: 440px;
    width: 100%;
    padding: 26px 20px;
    text-align: center;
    box-shadow: 0 16px 50px rgba(0,0,0,0.7), 0 0 25px rgba(229,195,120,0.25);
    position: relative;
    font-family: 'Cairo', sans-serif;
    color: #FFFFFF;
    direction: rtl;
    animation: zoomInExit 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes zoomInExit {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* CART MODAL DRAWER - MOBILE OPTIMIZED 60FPS SCROLLING */
#cartDrawerModal {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(6px);
    z-index: 100010;
    display: none;
    align-items: flex-end;
    justify-content: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
body.cart-drawer-open .floating-cart-pill {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}
@media(min-width: 640px) {
    #cartDrawerModal {
        align-items: center;
    }
}
.cart-drawer-sheet {
    background: var(--bg-surface);
    color: var(--text-primary);
    width: 100%;
    max-width: 520px;
    height: auto;
    max-height: 92dvh;
    max-height: 92vh;
    border-radius: 22px 22px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    border: 1.5px solid var(--gold-border);
    animation: slideUpSheet 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
@media(min-width: 640px) {
    .cart-drawer-sheet {
        border-radius: 18px;
        max-height: 86vh;
    }
}

.cart-drawer-header {
    flex-shrink: 0;
}

#cartItemsContainer {
    flex: 1 1 auto;
    min-height: 120px;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 14px 16px;
}

#cartFooterSummary {
    flex-shrink: 0;
    background: var(--bg-surface) !important;
    border-top: 1.5px solid var(--border-card) !important;
    padding: 14px 18px !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    position: sticky;
    bottom: 0;
    z-index: 10;
}

/* SECONDARY ACTIONS ROW (CALL & CALLBACK) */
.cart-secondary-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
}

.action-txt-mobile {
    display: none;
}
.action-txt-desktop {
    display: inline;
}

/* DIRECT CALL BUTTON IN CART */
.btn-cart-direct-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius-pill);
    font-size: 0.84rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(229, 195, 120, 0.18);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    margin-bottom: 0;
    white-space: nowrap;
}
.btn-cart-direct-call:hover {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 195, 120, 0.3);
}
.btn-cart-direct-call i {
    font-size: 1rem;
    color: #22C55E;
}

.btn-cart-callback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1.2px dashed rgba(229,195,120,0.45);
    border-radius: var(--radius-pill);
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    font-family: 'Cairo', sans-serif;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    margin-bottom: 0;
    white-space: nowrap;
}
.btn-cart-callback:hover {
    background: rgba(229, 195, 120, 0.12) !important;
    border-color: var(--gold) !important;
    transform: translateY(-2px);
}


/* CART FREE SHIPPING PROGRESS BAR */
.cart-shipping-bar-box {
    background: linear-gradient(180deg, rgba(229,195,120,0.12) 0%, rgba(15,23,42,0.03) 100%);
    border-bottom: 1px solid var(--gold-border);
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all 0.3s ease;
}
.shipping-bar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.shipping-bar-title {
    font-size: 0.78rem;
    color: var(--text-primary);
    line-height: 1.4;
    font-weight: 700;
}
.shipping-bar-title strong {
    color: var(--gold);
    font-weight: 900;
}
.shipping-bar-badge {
    font-size: 0.7rem;
    font-weight: 900;
    color: #FFFFFF;
    background: var(--gold);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(155,120,62,0.3);
    transition: 0.3s;
}
.shipping-bar-badge.success {
    background: #16A34A;
    box-shadow: 0 2px 8px rgba(22,163,74,0.35);
}
.shipping-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
[data-theme="dark"] .shipping-progress-track {
    background: rgba(255,255,255,0.1);
}
.shipping-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #9B783E 0%, #E5C378 50%, #FDE047 100%);
    border-radius: 20px;
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(229,195,120,0.5);
}
.shipping-progress-fill.completed {
    background: linear-gradient(90deg, #16A34A 0%, #22C55E 50%, #4ADE80 100%);
    box-shadow: 0 0 12px rgba(34,197,94,0.6);
}
.shipping-progress-glow {
    position: absolute;
    top: 0; bottom: 0; right: 0; width: 25px;
    background: rgba(255,255,255,0.6);
    filter: blur(3px);
    animation: moveShippingGlow 2s infinite linear;
}
@keyframes moveShippingGlow {
    0% { transform: translateX(25px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(-200px); opacity: 0; }
}
.cart-item-card {
    background: var(--bg-subtle); border: 1px solid var(--border-subtle);
    border-radius: 12px; padding: 12px; margin-bottom: 10px;
    display: flex; gap: 12px; align-items: center; position: relative;
}
.cart-item-img {
    width: 50px; height: 50px; border-radius: 8px; object-fit: cover;
    background: #1C160C; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.2rem; flex-shrink: 0; border: 1px solid var(--gold-border);
}
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-title { font-weight: 800; font-size: 0.84rem; color: var(--text-primary); margin-bottom: 2px; }
.cart-item-meta { font-size: 0.74rem; color: var(--text-secondary); }
.cart-item-price { font-weight: 900; color: var(--gold); font-size: 0.9rem; margin-top: 4px; font-family: var(--font-en); }
.cart-item-remove {
    background: transparent; border: none; color: #94A3B8; cursor: pointer;
    padding: 6px; font-size: 0.9rem; transition: color 0.2s;
}
.cart-item-remove:hover { color: #EF4444; }

/* ==========================================
   🇲🇦 MOROCCO LIVE DISPATCH RADAR STYLES
   ========================================== */
.radar-section-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 24px;
}
@media(max-width: 900px) {
    .radar-section-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* BUTTON ADD TO CART IN PRICING DRAWER */
.btn-add-cart {
    width: 100%; background: linear-gradient(135deg, var(--gold) 0%, #B8924E 100%);
    color: #FFFFFF; font-weight: 800; font-size: 0.88rem; padding: 12px;
    border-radius: var(--radius-sm); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    box-shadow: 0 4px 14px rgba(155,120,62,0.3); transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}
.btn-add-cart:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(155,120,62,0.4); }

/* TOAST NOTIFICATION */
.toast-notify {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, #1C160C 0%, #2E2412 100%); color: #FFFFFF; padding: 10px 18px; border-radius: 30px;
    border: 1.5px solid var(--gold); box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 10005; font-size: 0.82rem; font-weight: 800; display: flex; align-items: center;
    gap: 8px; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.toast-notify.show { transform: translateX(-50%) translateY(0); }

/* 🤖 RUBLIS REAL AI CHATBOT WIDGET (100% GEMINI POWERED) */
.rublis-ai-trigger-btn {
    position: fixed; bottom: 22px; left: 24px; z-index: 9999;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #FFFFFF; padding: 11px 20px; border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(229,195,120,0.4);
    border: 2px solid var(--gold); display: flex; align-items: center; gap: 9px;
    cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: aiPulseTrigger 3s infinite;
}
@keyframes aiPulseTrigger {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 18px rgba(229,195,120,0.35); }
    50% { box-shadow: 0 10px 38px rgba(0,0,0,0.65), 0 0 28px rgba(229,195,120,0.75); }
}
.rublis-ai-trigger-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 38px rgba(0,0,0,0.65), 0 0 30px rgba(229,195,120,0.7);
    border-color: #FDE047;
}
.ai-trigger-icon { font-size: 1.25rem; color: var(--gold); animation: aiSparkle 2s ease-in-out infinite; }
@keyframes aiSparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(12deg); }
}
.ai-trigger-text { font-size: 0.86rem; font-weight: 800; color: #FFFFFF; }
.ai-trigger-badge {
    background: #22C55E; color: #FFFFFF; font-size: 0.65rem; font-weight: 900;
    padding: 2px 8px; border-radius: 12px; margin-inline-start: 4px; letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(34,197,94,0.4);
}

/* CHATBOT MODAL WINDOW */
#rublisAiChatModal {
    position: fixed; bottom: 85px; left: 20px; right: auto; width: 380px; max-width: calc(100vw - 32px);
    height: 550px; max-height: calc(100vh - 120px); z-index: 10003;
    background: var(--bg-surface); border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.45); border: 2px solid var(--gold-border);
    display: none; flex-direction: column; overflow: hidden;
    animation: slideUpAiChat 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    backdrop-filter: blur(15px);
}
@keyframes slideUpAiChat {
    0% { transform: translateY(30px) scale(0.92); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
.ai-chat-header {
    background: linear-gradient(135deg, #1C160C 0%, #2A2010 100%);
    padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
    border-bottom: 1.5px solid var(--gold); color: #FFFFFF;
}
.ai-header-info { display: flex; align-items: center; gap: 10px; }
.ai-avatar {
    width: 38px; height: 38px; border-radius: 50%; background: rgba(229,195,120,0.15);
    border: 1.5px solid var(--gold); display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: var(--gold); position: relative;
}
.ai-online-dot {
    position: absolute; bottom: 0; right: 0; width: 10px; height: 10px;
    background: #22C55E; border: 2px solid #1C160C; border-radius: 50%;
}
.ai-chat-body {
    flex: 1; padding: 14px; overflow-y: auto; display: flex; flex-direction: column;
    gap: 12px; background: var(--bg-main); scroll-behavior: smooth;
}
.ai-msg {
    max-width: 88%; padding: 10px 14px; border-radius: 14px; font-size: 0.82rem;
    line-height: 1.55; word-break: break-word; animation: fadeInMsg 0.3s ease;
}
@keyframes fadeInMsg {
    0% { opacity: 0; transform: translateY(6px); }
    100% { opacity: 1; transform: translateY(0); }
}
.ai-msg.bot-msg {
    align-self: flex-start; background: var(--bg-surface); color: var(--text-primary);
    border: 1px solid var(--border-subtle); border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.ai-msg.user-msg {
    align-self: flex-end; background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%);
    color: #FFFFFF; border-bottom-left-radius: 4px; font-weight: 600;
    box-shadow: 0 4px 12px rgba(155,120,62,0.3);
}
.ai-prompt-chips-row {
    display: flex; gap: 6px; overflow-x: auto; padding: 6px 2px 10px;
    scrollbar-width: none;
}
.ai-prompt-chip {
    background: var(--bg-surface); border: 1px solid var(--gold-border);
    color: var(--text-primary); padding: 5px 12px; border-radius: 20px;
    font-size: 0.72rem; font-weight: 700; white-space: nowrap; cursor: pointer;
    transition: 0.2s; flex-shrink: 0;
}
.ai-prompt-chip:hover {
    background: var(--gold); color: #FFFFFF; border-color: var(--gold);
}
.ai-typing-indicator {
    display: none; align-self: flex-start; background: var(--bg-surface);
    padding: 8px 14px; border-radius: 14px; border: 1px solid var(--border-subtle);
    gap: 4px; align-items: center;
}
.ai-typing-dot {
    width: 6px; height: 6px; background: var(--gold); border-radius: 50%;
    animation: aiTypingBounce 1.2s infinite ease-in-out;
}
.ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes aiTypingBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1.1); opacity: 1; }
}
.ai-chat-footer {
    padding: 10px 12px; background: var(--bg-surface); border-top: 1px solid var(--border-subtle);
    display: flex; gap: 8px; align-items: center;
}
.ai-chat-input {
    flex: 1; background: var(--bg-main); border: 1.5px solid var(--border-subtle);
    color: var(--text-primary); padding: 10px 14px; border-radius: 24px; font-size: 0.84rem;
    outline: none; transition: border-color 0.2s;
}
.ai-chat-input:focus { border-color: var(--gold); }
.btn-ai-send {
    width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, #9B783E 0%, #B8924E 100%);
    color: #FFFFFF; border: none; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; transition: transform 0.2s;
}
.btn-ai-send:hover { transform: scale(1.08); }

/* 3D CARD TILT & SPECULAR SHINE */
.cat-card-item {
    transform-style: preserve-3d;
    perspective: 800px;
    transition: transform 0.22s cubic-bezier(0.2, 0, 0.2, 1), box-shadow 0.22s ease;
    position: relative;
}
.cat-card-item:hover {
    box-shadow: 0 16px 36px rgba(155, 120, 62, 0.18), 0 4px 12px rgba(0,0,0,0.06);
}

/* ==========================================
   📞 CALLBACK REQUEST STYLES (DEMANDE DE RAPPEL)
   ========================================== */

/* HEADER CALL BUTTON */
.header-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(229, 195, 120, 0.12);
    border: 1.5px solid var(--gold-border);
    color: var(--gold);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
}
.header-call-btn:hover {
    background: var(--gold);
    color: #FFFFFF;
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(155, 120, 62, 0.25);
}
.header-call-btn i {
    animation: callPulse 2.2s infinite ease-in-out;
}
@keyframes callPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15) rotate(-10deg); }
}

@media (max-width: 600px) {
    .header-call-btn span {
        display: none;
    }
    .header-call-btn {
        padding: 8px 10px;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        justify-content: center;
    }
}

/* CONTEXTUAL DRAWER PROMPT CARD */
.drawer-call-prompt-card {
    background: linear-gradient(135deg, rgba(229, 195, 120, 0.1) 0%, rgba(229, 195, 120, 0.03) 100%);
    border: 1.5px dashed var(--gold-border);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}
.drawer-call-prompt-card:hover {
    background: rgba(229, 195, 120, 0.16);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(155, 120, 62, 0.15);
}
.call-prompt-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(155, 120, 62, 0.3);
}
.btn-call-prompt-action {
    background: #0F172A;
    color: #FFFFFF;
    border: none;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}
[data-theme="dark"] .btn-call-prompt-action {
    background: var(--gold);
    color: #000;
}

/* CALLBACK MODAL */
#callbackRequestModal {
    position: fixed;
    inset: 0;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100002;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.25s ease;
}
#callbackRequestModal.active {
    display: flex;
    opacity: 1;
}
.callback-modal-box {
    background: var(--bg-surface);
    border: 1.5px solid var(--gold-border);
    border-radius: var(--radius-lg);
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.25s ease;
}
#callbackRequestModal.active .callback-modal-box {
    transform: scale(1);
}
.callback-modal-header {
    background: #0F172A;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--gold);
}
.call-modal-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(229, 195, 120, 0.15);
    border: 1.5px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.callback-modal-body {
    padding: 20px;
}
.callback-input-group {
    margin-bottom: 14px;
    text-align: right;
}
.callback-input-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.callback-input-field {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    color: var(--text-primary);
    font-size: 0.92rem;
    outline: none;
    font-family: var(--font-ar);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.callback-input-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(229, 195, 120, 0.18);
}

/* ==========================================
   💬 FLOATING UNIFIED CONTACT HUB (BOTTOM ACTION)
   ========================================== */
.floating-contact-hub {
    position: fixed;
    bottom: 22px;
    right: 18px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none;
}

.floating-contact-trigger,
.floating-contact-popover {
    pointer-events: auto;
}

/* MAIN TRIGGER BUTTON */
.floating-contact-trigger {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border: 2px solid var(--gold);
    color: #FFFFFF;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 18px rgba(229, 195, 120, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.floating-contact-trigger:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5), 0 0 24px rgba(229, 195, 120, 0.5);
}

.floating-contact-trigger .trigger-icons-wrap {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(229, 195, 120, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    position: relative;
}

.floating-contact-trigger .icon-close {
    display: none;
    font-size: 1.05rem;
}

.floating-contact-hub.open .floating-contact-trigger .icon-normal {
    display: none;
}

.floating-contact-hub.open .floating-contact-trigger .icon-close {
    display: block;
}

.floating-contact-hub.open .floating-contact-trigger {
    background: #0F172A;
    border-color: #EF4444;
}

.floating-contact-hub.open .floating-contact-trigger .trigger-icons-wrap {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

/* PULSE RING */
.trigger-pulse-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50px;
    border: 2px solid var(--gold);
    opacity: 0;
    animation: contactHubPulse 2.4s infinite;
    pointer-events: none;
}
@keyframes contactHubPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 0; }
    100% { transform: scale(1.15); opacity: 0; }
}

/* EXPANDABLE POPOVER MENU */
.floating-contact-popover {
    background: var(--bg-surface);
    border: 1.5px solid var(--gold-border);
    border-radius: var(--radius-lg);
    width: 310px;
    max-width: calc(100vw - 36px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(15px) scale(0.94);
    transform-origin: bottom right;
    pointer-events: none;
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

.floating-contact-hub.open .floating-contact-popover {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.contact-popover-header {
    background: #0F172A;
    padding: 12px 16px;
    border-bottom: 2px solid var(--gold);
}

.contact-popover-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-hub-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: var(--radius-md);
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: right;
}

.contact-hub-option:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.contact-hub-option.opt-wa:hover {
    background: rgba(34, 197, 94, 0.08);
    border-color: #22C55E;
}

.contact-hub-option.opt-call:hover {
    background: rgba(229, 195, 120, 0.1);
    border-color: var(--gold);
}

.contact-option-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-option-icon.wa-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.contact-option-icon.call-icon {
    background: rgba(229, 195, 120, 0.18);
    color: var(--gold);
    border: 1px solid var(--gold-border);
}

.contact-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-option-text strong {
    font-size: 0.85rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.contact-option-text span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.option-arrow {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.contact-hub-option:hover .option-arrow {
    transform: translateX(-4px);
    color: var(--gold);
}

@media (max-width: 600px) {
    .floating-contact-hub {
        bottom: 16px;
        right: 14px;
    }
    .floating-contact-trigger .trigger-label {
        font-size: 0.8rem;
    }
    .floating-contact-trigger {
        padding: 9px 14px;
    }
    .rublis-ai-trigger-btn {
        bottom: 16px;
        left: 14px;
        padding: 9px 14px;
    }
    .rublis-ai-trigger-btn .ai-trigger-text {
        display: none;
    }
    .rublis-ai-trigger-btn .ai-trigger-badge {
        display: none;
    }
}

/* ==========================================
   🚀 3-STEP SIMPLE BUYING JOURNEY (PARCOURS 1-2-3)
   ========================================== */
.buying-journey-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 24px;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
}

.journey-step-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-md);
    background: var(--bg-main);
    border: 1px solid var(--border-subtle);
    position: relative;
    transition: transform 0.2s, border-color 0.2s;
}

.journey-step-card:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
}

.journey-step-card.highlight {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.35);
}

.journey-step-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(155, 120, 62, 0.4);
}

.journey-step-card.highlight .journey-step-badge {
    background: var(--success);
}

.journey-step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(229, 195, 120, 0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.journey-step-card.highlight .journey-step-icon {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.journey-step-content {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.journey-step-content strong {
    font-size: 0.82rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.journey-step-content span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 2px;
}

.journey-step-arrow {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.5;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .buying-journey-strip {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }
    .journey-step-card {
        width: 100%;
    }
    .journey-step-arrow {
        display: none;
    }
}

/* ==========================================
   🏛️ LUXURY MEGA FOOTER (DESKTOP & MOBILE)
   ========================================== */
.mega-footer {
    background: var(--bg-surface);
    border-top: 1.5px solid var(--border-card);
    padding: 48px 0 24px;
    margin-top: 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.03);
}
.mega-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 992px) {
    .mega-footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 36px;
    }
}
.footer-col-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 6px;
    width: fit-content;
}
.footer-about-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 12px 0 16px;
}
.footer-social-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.footer-social-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social-badge.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #FFF;
    box-shadow: 0 2px 8px rgba(225, 48, 108, 0.3);
}
.footer-social-badge.wa {
    background: #22C55E;
    color: #FFF;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}
.footer-social-badge:hover {
    transform: translateY(-2px);
}
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links-list li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.footer-links-list li a:hover {
    color: var(--gold);
    transform: translateX(-4px);
}
.footer-contact-info {
    font-size: 0.82rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}
.btn-footer-call {
    background: linear-gradient(135deg, #9B783E 0%, #C5A059 100%);
    color: #FFFFFF;
    border: none;
    border-radius: var(--radius-pill);
    padding: 9px 18px;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(155, 120, 62, 0.3);
    transition: all 0.2s;
}
.btn-footer-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(155, 120, 62, 0.5);
}
.footer-bottom-bar {
    border-top: 1px solid var(--border-subtle);
    margin-top: 32px;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.76rem;
    color: var(--text-muted);
}
@media (max-width: 600px) {
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   🖥️ DESKTOP 4-COLUMN CATALOG RESPONSIVENESS
   ========================================== */
@media (min-width: 1100px) {
    .category-cards-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 16px !important;
    }
    .cat-card-static, .cat-card-flip-wrap {
        height: 460px !important;
    }
}
@media (min-width: 768px) and (max-width: 1099px) {
    .category-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 18px !important;
    }
}

/* 🌐 LTR INTERNATIONALIZATION (FRANÇAIS & ENGLISH) TYPOGRAPHY */
[dir="ltr"] body {
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif !important;
    text-align: left;
}
[dir="ltr"] .section-header,
[dir="ltr"] .hero-slide-content-clean,
[dir="ltr"] .footer-bottom-bar {
    text-align: center;
}
[dir="ltr"] .journey-step-arrow i {
    transform: rotate(180deg);
}
[dir="ltr"] .cat-card-body {
    text-align: left;
}
[dir="ltr"] .cat-badge i,
[dir="ltr"] .btn-view-sizes i {
    margin-left: 0;
    margin-right: 6px;
}
[dir="ltr"] .footer-col {
    text-align: left;
}
[dir="ltr"] .footer-links-list a i {
    transform: rotate(180deg);
    margin-left: 0;
    margin-right: 6px;
}

/* =========================================================
   📱 MOBILE-SPECIFIC ULTRA-COMPACT CART & ACTIONS (نسخة التيلي)
   Keeps the screen clean, uncluttered, and lightweight
   ========================================================= */
@media (max-width: 600px) {
    /* Actions Text Switch: Short text on mobile */
    .action-txt-desktop {
        display: none !important;
    }
    .action-txt-mobile {
        display: inline !important;
    }

    /* Cart Secondary Actions Row (Call & Callback side-by-side) */
    .cart-secondary-actions-row {
        gap: 6px !important;
        margin-top: 6px !important;
        margin-bottom: 6px !important;
    }

    .btn-cart-direct-call,
    .btn-cart-callback {
        padding: 8px 6px !important;
        font-size: 0.74rem !important;
        border-radius: 20px !important;
        gap: 5px !important;
        box-shadow: none !important;
    }
    .btn-cart-direct-call i,
    .btn-cart-callback i {
        font-size: 0.82rem !important;
    }

    /* Primary WhatsApp Button in Cart */
    .btn-confirm-wa {
        padding: 10px 14px !important;
        font-size: 0.86rem !important;
        margin-bottom: 0 !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 14px rgba(34, 197, 94, 0.28) !important;
    }
    .btn-confirm-wa i {
        font-size: 1.15rem !important;
    }

    /* Compact Cart Drawer Footer */
    #cartFooterSummary {
        padding: 9px 14px 10px !important;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.45) !important;
    }

    #cartDrawerTotalText {
        font-size: 1.14rem !important;
    }

    #cartDeliveryStatusText {
        font-size: 0.74rem !important;
    }

    /* Compact Cart Sheet Dimensions */
    .cart-drawer-sheet {
        max-height: 84vh !important;
        max-height: 84dvh !important;
        border-radius: 18px 18px 0 0 !important;
    }

    .cart-drawer-header {
        padding: 10px 14px 8px !important;
    }
    .cart-drawer-header h3 {
        font-size: 0.95rem !important;
    }

    .cart-shipping-bar-box {
        padding: 6px 14px !important;
    }
    #shippingBarMotivationalText {
        font-size: 0.72rem !important;
    }
    .shipping-progress-track {
        height: 5px !important;
    }

    /* Compact Cart Items List on Mobile */
    #cartItemsContainer {
        padding: 8px 12px !important;
        max-height: 40vh !important;
    }

    .cart-item-card {
        padding: 7px 8px !important;
        margin-bottom: 6px !important;
        gap: 8px !important;
        border-radius: 10px !important;
    }

    .cart-item-img {
        width: 40px !important;
        height: 40px !important;
        font-size: 0.95rem !important;
        border-radius: 6px !important;
    }

    .cart-item-title {
        font-size: 0.78rem !important;
        line-height: 1.25 !important;
        margin-bottom: 1px !important;
    }

    .cart-item-meta {
        font-size: 0.68rem !important;
        line-height: 1.2 !important;
    }

    .cart-item-price {
        font-size: 0.82rem !important;
        margin-top: 2px !important;
    }

    .cart-item-remove {
        padding: 4px !important;
        font-size: 0.82rem !important;
    }

    /* COMPACT FLOATING CART PILL ON MOBILE (ABOVE BOTTOM CORNER BUTTONS) */
    .floating-cart-pill {
        bottom: 68px !important;
        padding: 6px 14px !important;
        gap: 7px !important;
        border-radius: 30px !important;
        max-width: calc(100vw - 28px) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 0 14px rgba(229, 195, 120, 0.3) !important;
    }

    .cart-pill-icon {
        width: 25px !important;
        height: 25px !important;
        font-size: 0.75rem !important;
    }

    .cart-pill-badge {
        width: 15px !important;
        height: 15px !important;
        font-size: 0.6rem !important;
        top: -4px !important;
        right: -6px !important;
    }

    .cart-pill-title {
        font-size: 0.64rem !important;
    }

    .cart-pill-total {
        font-size: 0.82rem !important;
    }

    .cart-pill-action-badge {
        font-size: 0.68rem !important;
        padding: 3px 8px !important;
    }

    .cart-pill-action-badge i {
        display: none !important;
    }

    /* Compact Success & Exit Modals on Mobile */
    .cart-exit-modal-box {
        padding: 20px 14px 16px !important;
        border-radius: 18px !important;
        max-width: calc(100vw - 28px) !important;
    }
    .cart-exit-modal-box h3 {
        font-size: 1.05rem !important;
    }

    .cart-success-toast {
        top: 14px !important;
        padding: 7px 12px !important;
        font-size: 0.76rem !important;
        max-width: 94vw !important;
    }
    .toast-cart-btn {
        padding: 4px 10px !important;
        font-size: 0.72rem !important;
    }
}