/* ===== شركة الساعات الايقونية – Modern 2026 (RTL) ===== */
:root {
    /* Elegant Light Theme (Default) */
    --color-bg: #f8fafc;
    --color-text: #0f172a;
    --color-text-muted: #64748b;
    --color-link: #0f172a;
    --color-link-hover: #b48a3d;
    --color-accent: #b48a3d;
    --color-accent-light: var(--luxury-gold);
    --color-btn-dark: #e2e8f0;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-card-bg: #ffffff;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

    --luxury-gold: #c5a059;

    --font-ar: 'IBM Plex Sans Arabic', 'Segoe UI', sans-serif;
    --navbar-h: 72px;
    --container-max: 1280px;
    --radius: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* 2026 Fluid Spacing System (Mobile-First) */
    --space-xs: clamp(0.5rem, 2vw, 0.75rem);
    --space-sm: clamp(0.75rem, 3vw, 1rem);
    --space-md: clamp(1rem, 4vw, 1.5rem);
    --space-lg: clamp(1.5rem, 5vw, 2.5rem);
    --space-xl: clamp(2rem, 6vw, 4rem);
    --space-2xl: clamp(3rem, 8vw, 6rem);

    /* Touch-Friendly Targets */
    --tap-target-min: 44px;

    /* Standardized Breakpoints */
    --bp-sm: 480px;
    --bp-md: 768px;
    --bp-lg: 1024px;
    --bp-xl: 1280px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: clamp(14px, 2.5vw, 16px);
    /* Fluid base size for mobile-first */
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-ar);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: 80px;
    /* Space for the fixed luxury-header */
}

.site-main {
    flex: 1;
}

/* ----- Smart Header (Vision 2026 Refined) ----- */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--color-card-bg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, background 0.4s ease;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* State: Scrolled (keep it consistent but maybe add shadow) */
.luxury-header.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* State: Hidden (Scroll Down) */
.luxury-header.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-inner {
    width: 100%;
    height: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* For absolute centering on mobile */
}

.navbar-logo {
    flex-shrink: 0;
    text-decoration: none;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.15rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.navbar-logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.navbar-logo:hover {
    color: var(--color-link-hover);
}

.navbar-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px 20px;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    text-decoration: none;
    color: var(--color-link);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px;
    white-space: nowrap;
    border-radius: 30px;
    transition: all var(--transition);
}

.nav-list a:hover {
    color: #fff !important;
    background: var(--luxury-gold);
}

.nav-list .arrow {
    font-size: 0.6em;
    opacity: 0.7;
    margin-right: 2px;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-align: right;
}

/* Brands Grid Dropdown */
.brands-dropdown-grid {
    min-width: 440px;
    right: 50%;
    transform: translate(50%, 10px);
    padding: 16px !important;
}

.has-dropdown:hover .brands-dropdown-grid {
    transform: translate(50%, 0);
}

.brands-grid-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dropdown-brand-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    height: 70px;
    padding: 10px !important;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: var(--radius);
    transition: all 0.2s ease !important;
}

.dropdown-brand-item:hover {
    background: #fff !important;
    border-color: var(--color-accent) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.dropdown-brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.dropdown-brand-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.dropdown-all-brands {
    display: block !important;
    text-align: center;
    font-weight: 700 !important;
    color: var(--color-accent) !important;
    padding: 12px !important;
}

.dropdown-all-brands:hover {
    text-decoration: underline;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--color-accent);
}

.dropdown-divider {
    height: 1px;
    background: var(--color-border);
    margin: 8px 0;
}

.navbar-actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--color-text);
    text-decoration: none;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
    position: relative;
}

.navbar-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    border: 2px solid white;
}

.icon-btn:hover {
    background: var(--color-border);
    color: var(--color-link-hover);
}


/* ----- Hero ----- */
/* ----- Vision 2026: Z-Space Hero ----- */
.hero-2026 {
    position: relative;
    width: 100%;
    height: auto;
    /* Dynamic height */
    background: var(--color-bg);
    overflow: hidden;
}

.hero-slide-2026 {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide-2026.active {
    position: relative;
    /* Only active slide pushes height */
    opacity: 1;
    visibility: visible;
}

.hero-layer {
    position: absolute;
    inset: 0;
}

.hero-layer-bg {
    background: var(--color-bg);
    /* Use theme background */
    z-index: 1;
}

/* Mesh Gradient for 2026 Feel - Softened */
.hero-layer-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 80% 20%, rgba(197, 160, 89, 0.08) 0px, transparent 50%),
        radial-gradient(at 10% 80%, rgba(99, 102, 241, 0.05) 0px, transparent 50%);
    filter: blur(80px);
}

.hero-layer-grain {
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    z-index: 2;
    pointer-events: none;
}

.hero-layer-foreground {
    position: relative;
    /* Hero image will define the height */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.hero-watch-img {
    width: 100%;
    max-height: none;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.2));
    transform: scale(0.9);
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-slide-2026.active .hero-watch-img {
    transform: scale(1);
}

.hero-layer-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.hero-text-wrap-2026 {
    text-align: center;
    color: #fff;
}

.hero-title-2026 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
    margin-bottom: 30px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.hero-slide-2026.active .hero-title-2026 {
    opacity: 1;
    transform: translateY(0);
}

.hero-cta-2026 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: #fff;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-cta-2026::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: var(--luxury-gold);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    z-index: -1;
}

.hero-cta-2026:hover {
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
}

.hero-cta-2026:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.hero-cta-2026 i {
    transition: transform 0.3s ease;
}

.hero-cta-2026:hover i {
    transform: translateX(-8px);
}

/* Slow Parallax Depth */
.hero-slide-2026.active .hero-watch-img {
    animation: floatingHero 6s ease-in-out infinite;
}

@keyframes floatingHero {

    0%,
    100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.02) translateY(-15px);
    }
}

.hero-cta-2026:hover {
    background: #fff;
    color: #000;
}

.hero-fallback-2026 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
}

.hero-title-fallback {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
    text-align: center;
}

/* ----- luxury-hero content (Lavender Style) ----- */
.hero-overlay-luxury {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-content-luxury {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 24px;
}

.hero-text-wrap {
    max-width: 800px;
}

.hero-title-luxury {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-gold-line {
    width: 80px;
    height: 2px;
    background: var(--luxury-gold);
    margin: 0 auto 40px;
}

.hero-cta-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--luxury-gold);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--luxury-gold);
}

.hero-cta-btn:hover {
    background: transparent;
    color: var(--luxury-gold);
    transform: translateY(-3px);
}

/* ----- Category filters (black buttons) ----- */
/* Improved Slider Fluidity */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    transform: scale(1.1);
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 1;
}

.hero-indicator {
    width: 30px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: var(--luxury-gold);
    width: 50px;
}

/* Hero Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
    width: 70px;
}

@media (max-width: 768px) {
    .hero-arrow {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.9rem !important;
    }
}

.hero-prev {
    left: 0;
    border-radius: 0 4px 4px 0;
}

.hero-next {
    right: 0;
    border-radius: 4px 0 0 4px;
}

/* Section Reveals */
/* Gradient Transitions */
.section-gradient-transition {
    position: relative;
    z-index: 10;
}

.section-gradient-transition::after {
    content: '';
    position: absolute;
    bottom: -80px;
    /* Overlap next section */
    left: 0;
    width: 100%;
    height: 160px;
    /* Gradient height */
    z-index: 20;
    pointer-events: none;
}

/* Gradient White to Black */
.gradient-white-to-black::after {
    background: linear-gradient(to bottom, transparent, #000);
}

/* Gradient Black to White */
.gradient-black-to-white::after {
    background: linear-gradient(to bottom, #000, transparent);
    top: 0;
    bottom: auto;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Immersive Promo Banner (Vision 2026) */
.immersive-promo {
    background: #000;
    padding: 140px 0;
    margin: 120px 0;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-radius: 0;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .immersive-promo {
        padding: 60px 0;
        margin: 40px 0;
        flex-direction: column-reverse;
        /* Text above image */
        text-align: center;
    }
}

.immersive-promo::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    perspective: 1000px;
}

.promo-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.promo-visual::after {
    content: '';
    position: absolute;
    bottom: -10px;
    width: 200px;
    height: 40px;
    background: rgba(197, 160, 89, 0.2);
    filter: blur(25px);
    border-radius: 50%;
    z-index: 1;
}

.promo-pedestal {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    position: relative;
    z-index: 2;
    animation: floatPromo 4s ease-in-out infinite;
}

@keyframes floatPromo {

    0%,
    100% {
        transform: translateY(0) scale(1) rotateY(-5deg) rotateX(2deg);
    }

    50% {
        transform: translateY(-20px) scale(1.05) rotateY(5deg) rotateX(-2deg);
    }
}

.promo-content {
    flex: 1;
    text-align: right;
}

.promo-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(to bottom, #fff 50%, rgba(255, 255, 255, 0.4));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 60px;
    background: var(--luxury-gold);
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-radius: 60px;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
}

.promo-cta:hover {
    transform: translateY(-5px) scale(1.05);
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.category-filters {
    padding: 60px 0;
    border-bottom: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: rgba(0, 0, 0, 0.03);
    padding: 10px;
    border-radius: 60px;
    width: fit-content;
    margin: 0 auto;
    flex-wrap: wrap;
    max-width: 100%;
}

.filter-btn {
    padding: 15px 35px;
    background: transparent;
    color: #666;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--luxury-gold);
    color: #000;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.3);
    transform: translateY(-2px);
}

.filt.hero-indicator.active {
    background: var(--luxury-gold);
    width: 50px;
}

.filter-btn:hover {
    color: #fff;
}

/* Mobile filter buttons */
@media (max-width: 768px) {
    .category-filters {
        padding: 30px 0;
    }

    .filter-buttons {
        gap: 8px;
        padding: 8px;
        border-radius: 16px;
        width: 100%;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
        border-radius: 12px;
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .filter-buttons {
        gap: 6px;
        padding: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        flex-wrap: nowrap;
    }

    .filter-buttons::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* ----- Products section ----- */
.products-section {
    padding: 48px 0 64px;
}

.section-title {
    margin: 0 0 24px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: right;
    color: var(--color-text);
}

/* ----- luxury-product-card (Lavender Style) ----- */

/* ----- Vision 2026: Section Backgrounds ----- */
.products-section,
.brands-section {
    padding: 120px 0;
    position: relative;
    background: var(--color-bg);
    overflow: hidden;
}

.products-section::before,
.brands-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(at 100% 0%, rgba(197, 160, 89, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(99, 102, 241, 0.03) 0px, transparent 50%);
    z-index: 0;
}

.products-section>.container,
.brands-section>.container {
    position: relative;
    z-index: 1;
}

/* ----- Vision 2026: Glass Vault Product Card ----- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 columns */
    gap: 15px;
    /* Tighter gap for mobile */
}

@media (min-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 50px;
    }
}

/* ----- Vision 2026: Premium Product Card ----- */
.product-card-luxury {
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-luxury:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.product-card-luxury-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #fdfdfd;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 30px;
}

.product-card-luxury-image {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(0.92);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-luxury:hover .product-card-luxury-image {
    transform: scale(1.05);
}

/* Quick Add Overlay */
.product-card-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 10px 20px 20px;
    /* Add padding for spacing */
    background: #ffffff;
    /* Solid background as requested */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-luxury:hover .product-card-quick-add {
    opacity: 1;
    transform: translateY(0);
}

.quick-add-btn {
    position: relative;
    width: 60px;
    /* Start as a circle/square icon */
    height: 60px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    /* Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin: 0 auto;
    /* Center it */
}

.quick-add-btn span {
    display: block;
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
}

.product-card-luxury:hover .quick-add-btn {
    width: 100%;
    /* Stretch to full width */
    border-radius: 16px;
    /* Turn into a rounded button */
    background: var(--luxury-gold);
    color: #000;
    gap: 12px;
}

.product-card-luxury:hover .quick-add-btn span {
    max-width: 200px;
    opacity: 1;
}

.quick-add-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.quick-add-btn:hover i {
    transform: scale(1.1);
}

/* Body Info */
.product-card-luxury-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-luxury-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-luxury:hover .product-card-luxury-title {
    color: var(--luxury-gold);
}

.product-card-luxury-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.price-old {
    font-size: 0.95rem;
    font-weight: 400;
    color: #ef4444;
    text-decoration: line-through;
    opacity: 0.8;
}

/* Badge Styling */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    background: #000;
    color: #fff;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    pointer-events: none;
}

.badge-new {
    background: var(--luxury-gold);
    color: #000;
}

/* ----- Vision 2026: Premium Shopping Cart ----- */
.cart-page-2026 {
    padding: 140px 0 100px;
}

.cart-header {
    margin-bottom: 50px;
    text-align: right;
}

.cart-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 10px;
}

.cart-grid-2026 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: flex-start;
}

/* Items List */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card-2026 {
    display: grid;
    grid-template-columns: 120px 1fr 180px;
    gap: 25px;
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    align-items: center;
}

.cart-item-card-2026:hover {
    border-color: rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.cart-item-img-wrap {
    width: 120px;
    height: 120px;
    background: #fdfdfd;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cart-item-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-info {
    margin-bottom: 15px;
}

.item-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.item-name:hover {
    color: var(--luxury-gold);
}

.item-brand {
    color: #999;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.item-actions-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Quantity Control */
.quantity-control-2026 {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 4px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover:not(:disabled) {
    background: #000;
    color: #fff;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.item-price-unit {
    color: #666;
    font-size: 0.95rem;
}

.remove-btn {
    background: transparent;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    color: #ff4d4d;
    transform: scale(1.1);
}

.cart-item-total-col {
    text-align: left;
}

.row-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

/* Summary Sidebar */
.cart-summary-sidebar {
    position: sticky;
    top: 120px;
}

.summary-card-2026 {
    background: #000;
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: right;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 1rem;
}

.free-badge {
    color: #4cd137;
    font-weight: 600;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.total-row {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.total-amount {
    color: var(--luxury-gold);
}

.btn-checkout-2026 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: 60px;
    background: #fff;
    color: #000;
    border-radius: 18px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-checkout-2026::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(0, 0, 0, 0.05),
            transparent);
    transition: 0.5s;
}

.btn-checkout-2026:hover {
    transform: translateY(-4px) scale(1.01);
    background: var(--luxury-gold);
    color: #fff;
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.3);
}

.btn-checkout-2026:hover::after {
    left: 100%;
    transition: 0.6s;
}

.btn-checkout-2026 i {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-checkout-2026:hover i {
    transform: translateX(-8px);
}

.summary-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.btn-continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.btn-continue-shopping:hover {
    color: #000;
}

/* Empty State */
.empty-cart-state {
    text-align: center;
    padding: 100px 0;
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    opacity: 0.1;
}

.empty-cart-state h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.empty-cart-state p {
    color: #666;
    margin-bottom: 40px;
}

.btn-primary-2026 {
    display: inline-block;
    padding: 16px 40px;
    background: #000;
    color: #fff;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-2026:hover {
    background: var(--luxury-gold);
    color: #000;
}

/* Responsive */
@media (max-width: 1200px) {
    .cart-grid-2026 {
        grid-template-columns: 1fr;
    }

    .cart-summary-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .cart-grid-2026 {
        display: flex;
        flex-direction: column;
        padding-bottom: 40px;
        /* Reduced padding, no sticky space needed */
    }

    /* Reverting to stacked/default layout but ensuring it fits */
    .cart-item-card-2026 {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .cart-item-img-wrap {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .cart-item-details {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .item-actions-row {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .quantity-control-2026 {
        margin: 0 auto;
    }

    .cart-item-total-col {
        width: 100%;
        text-align: center;
        border-top: 1px solid #f5f5f5;
        padding-top: 15px;
        margin-top: 10px;
    }

    .cart-summary-sidebar {
        position: static;
        /* No longer fixed/sticky */
        width: 100%;
        margin-top: 20px;
        z-index: 1;
        padding: 0;
    }

    .summary-card-2026 {
        border-radius: 24px;
        /* All corners rounded */
        padding: 24px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        /* Softer shadow */
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    /* Reveal all details */
    .summary-title {
        display: block;
        font-size: 1.25rem;
        margin-bottom: 15px;
        text-align: center;
        /* Added for consistency with other mobile elements */
    }

    .summary-row,
    .summary-divider {
        display: flex;
        /* Or block/flex as defined in desktop */
    }

    .summary-divider {
        height: 1px;
        background: rgba(0, 0, 0, 0.05);
        margin: 15px 0;
    }

    .summary-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 15px;
        font-size: 0.9rem;
        color: #666;
    }

    .total-row {
        margin-bottom: 0;
        justify-content: space-between;
        align-items: center;
        order: 0;
        /* Natural order */
        font-size: 1.2rem;
        font-weight: 700;
    }

    .btn-checkout-2026 {
        height: 50px;
        font-size: 1rem;
        width: 100%;
    }

    .btn-continue-shopping {
        display: flex;
        /* Show continue shopping button on mobile too if desired, or keep hidden */
        justify-content: center;
        margin-top: 15px;
    }

    .mobile-payment-text {
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: #666;
        margin-top: 10px;
    }
}

/* Desktop payment text hidden */
.mobile-payment-text {
    display: none;
}

/* Cart Benefits Section */
.cart-benefits-section-2026 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-color: rgba(197, 160, 89, 0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--luxury-gold);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Upselling Section */
.cart-upsell-section-2026 {
    margin-top: 100px;
}

.upsell-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: right;
    position: relative;
    padding-right: 25px;
}

.upsell-title::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: var(--luxury-gold);
    border-radius: 10px;
}

.product-grid-refined {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: var(--space-md);
}

@media (min-width: 480px) {
    .product-grid-refined {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (min-width: 1024px) {
    .product-grid-refined {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-grid-refined {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* Responsive Cart Enhancements */
@media (max-width: 992px) {
    .cart-benefits-section-2026 {
        grid-template-columns: 1fr;
    }
}

/* ----- Brands section ----- */
.brands-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #f9f9f9 0%, #ffffff 100%);
}

.brands-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: var(--space-lg);
}

@media (min-width: 480px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }
}

/* Mobile Brands Scroll */
@media (max-width: 768px) {
    .brands-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        /* Space for scroll */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Firefox */
    }

    .brands-grid::-webkit-scrollbar {
        display: none;
        /* Safari and Chrome */
    }

    .brand-card {
        flex: 0 0 140px;
        /* Fixed width for items */
        scroll-snap-align: start;
        height: 140px;
        /* Smaller height for mobile */
        padding: 20px;
    }
}

.brand-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 40px;
    text-decoration: none;
    color: var(--color-text);
    transition: all var(--transition);
    background: var(--color-card-bg);
}

.brand-card:hover {
    border-color: var(--luxury-gold);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-name {
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
}

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

.link-more {
    display: inline-block;
    margin-top: 60px;
    padding: 16px 40px;
    background: #fff;
    color: var(--luxury-gold);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    border: 1px solid var(--luxury-gold);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.link-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--luxury-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.link-more:hover {
    color: #fff;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.link-more:hover::before {
    left: 0;
}

/* ----- Product filters & pagination ----- */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.filters-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.filters-form select,
.filters-form button {
    padding: 8px 12px;
    font-family: var(--font-ar);
}

.display-toggle {
    margin-right: auto;
}

.display-btn {
    padding: 8px 12px;
    text-decoration: none;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    margin-right: 4px;
}

.display-btn.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 8px 14px;
    text-decoration: none;
    color: var(--color-link);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.pagination-link.active {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

/* ----- Product detail ----- */
.product-detail-page {
    padding: 24px 0 48px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--color-link);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 80px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.product-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.product-thumb {
    padding: 4px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    background: none;
}

.product-thumb.active,
.product-thumb:hover {
    border-color: var(--color-accent);
}

.product-thumb img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    display: block;
}

.product-info {
    text-align: right;
}

.product-title {
    margin: 0 0 8px;
    font-size: 1.5rem;
}

.product-ref,
.product-category {
    color: var(--color-text-muted);
    margin: 4px 0;
}

.product-prices {
    margin: 16px 0;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent);
}

.product-old-price {
    margin-right: 12px;
    color: var(--color-text-muted);
}

.product-description,
.product-specs {
    margin-top: 24px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.specs-table th,
.specs-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--color-border);
}

.specs-table th {
    font-weight: 600;
    width: 40%;
}

.product-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.product-actions input[type="number"] {
    width: 80px;
    padding: 10px;
}

.btn-add-cart {
    padding: 12px 24px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-ar);
    font-weight: 600;
    cursor: pointer;
}

.out-of-stock {
    color: var(--color-text-muted);
    font-weight: 600;
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }
}

/* ----- Help / Contact ----- */
.help-page {
    padding: 24px 0 48px;
    max-width: 640px;
}

.help-section {
    margin-bottom: 32px;
}

.help-section h2 {
    margin: 0 0 16px;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: right;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    font-family: var(--font-ar);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
}

.contact-form button {
    padding: 12px 24px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-ar);
    font-weight: 600;
    cursor: pointer;
    align-self: flex-end;
}

.message-success {
    color: green;
}

.message-error {
    color: red;
}

/* ----- Auth (login / register) ----- */
.auth-page {
    padding: 48px 24px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 50vh;
}

.auth-box {
    width: 100%;
    max-width: 400px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.auth-title {
    margin: 0 0 24px;
    font-size: 1.5rem;
    text-align: center;
}

.auth-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.auth-success {
    color: #065f46;
    margin-bottom: 16px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
}

.auth-form label {
    font-weight: 600;
}

.auth-form input {
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-ar);
}

.auth-form .btn-primary {
    padding: 12px 24px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-ar);
    font-weight: 600;
    cursor: pointer;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer a {
    color: var(--color-link);
}

/* ----- Account (compte) ----- */
/* ----- Account (compte) ----- */
.account-page {
    padding: 40px 0 80px;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.1), transparent 40%);
}

.account-page .page-title {
    margin: 0 0 40px;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-text), var(--color-text-muted));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.account-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

/* Account Navigation */
.account-nav {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.account-nav nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.account-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    transition: var(--transition);
}

.account-nav-link:hover,
.account-nav-link.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--color-accent);
}

.account-nav-link.active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #fff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.account-nav-link.active i {
    color: #fff;
}

/* Account Content */
.account-content {
    min-width: 0;
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    animation: fadeInUp 0.5s ease-out;
}

/* Forms */
.account-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
}

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

.account-form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.account-form input,
.account-form textarea,
.account-form select {
    padding: 14px 18px;
    background: var(--color-btn-dark);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    font-family: var(--font-ar);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.account-form input:focus,
.account-form textarea:focus,
.account-form select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
    outline: none;
    transform: translateY(-1px);
}

/* Buttons */
.btn-primary {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-ar);
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    border-radius: 12px;
    font-family: var(--font-ar);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-border);
    transform: translateY(-1px);
}

/* Orders Table */
.order-table-container {
    overflow-x: auto;
}

.order-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    margin-top: 1rem;
}

.order-table th {
    text-align: right;
    padding: 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.order-table tbody tr {
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

/* Welcome Section (Vision 2026) */
.welcome-section-2026 {
    padding: 80px 0;
    text-align: center;
    background: #fff;
}

.welcome-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 50px;
    color: var(--luxury-gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.welcome-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    max-width: 800px;
    margin: 0;
}

.welcome-gold-line {
    width: 60px;
    height: 3px;
    background: var(--luxury-gold-gradient);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .welcome-section-2026 {
        padding: 60px 0 40px;
    }

    .welcome-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

.order-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.005);
}

.order-table td {
    padding: 1.25rem 1rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.order-table td:first-child {
    border-right: 1px solid var(--color-border);
    border-radius: 0 12px 12px 0;
}

.order-table td:last-child {
    border-left: 1px solid var(--color-border);
    border-radius: 12px 0 0 12px;
}

/* Status Badges */
.badge {
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: #fbbf24;
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.badge-danger {
    background: rgba(244, 63, 94, 0.15);
    color: #f43f5e;
}

/* Flashes */
.flash {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.flash-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #34d399;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.btn-small {
    padding: 6px 14px;
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    /* Subtle dark mode bg */
    border: 1px solid var(--color-border);
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-ar);
    color: var(--color-text-muted);
    transition: var(--transition);
}

.btn-small:hover {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
    /* Danger color on hover */
    border-color: rgba(244, 63, 94, 0.2);
}

/* Fix lint */
.account-page .page-title {
    /* ... previous styles ... */
    background-clip: text;
    /* standard property */
    -webkit-background-clip: text;
}


.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}


.wishlist-form-inline {
    display: inline;
}

/* ===== All Products Page Redesign (Vision 2026) ===== */
.products-layout-2026 {
    display: flex;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 80px;
    align-items: flex-start;
}

/* Sidebar Filters */
.filters-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: auto;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-form-2026 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.filter-accordion {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 15px;
}

.filter-accordion:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 0;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--luxury-gold);
}

.accordion-header i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.filter-accordion.open .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 5px;
}

.filter-accordion.open .accordion-body {
    display: flex;
}

.brand-list-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Custom Checkbox/Radio */
.custom-checkbox,
.custom-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #475569;
    transition: color 0.2s;
}

.custom-checkbox:hover,
.custom-radio:hover {
    color: var(--color-text);
}

.custom-checkbox input,
.custom-radio input {
    display: none;
    /* Hide default */
}

.checkmark,
.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    background: #fff;
}

.radio-mark {
    border-radius: 50%;
}

.custom-checkbox input:checked~.checkmark,
.custom-radio input:checked~.radio-mark {
    background: var(--luxury-gold);
    border-color: var(--luxury-gold);
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none;
    z-index: 2;
}

.radio-mark::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 2;
}

.custom-checkbox input:checked~.checkmark::after,
.custom-radio input:checked~.radio-mark::after {
    display: block;
}

/* Custom Switch */
.custom-switch {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.custom-switch input {
    display: none;
}

.slider {
    position: relative;
    width: 40px;
    height: 24px;
    background-color: #cbd5e1;
    transition: .4s;
    border-radius: 34px;
    border: 1px solid #94a3b8;
    /* Border for visibility */
}

.slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    /* Shadow for depth */
}

input:checked+.slider {
    background-color: var(--luxury-gold);
    border-color: var(--luxury-gold);
}

input:checked+.slider::before {
    transform: translateX(16px);
    background-color: white;
    /* Ensure knob stays white */
}

/* Price Range */
.price-range-inputs {
    display: flex;
    gap: 10px;
}

.price-field {
    flex: 1;
}

.price-field label {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 4px;
}

.price-field input {
    width: 100%;
    padding: 8px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.btn-apply-price {
    width: 100%;
    padding: 10px;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-apply-price:hover {
    background: var(--luxury-gold);
}

.btn-reset-filters {
    text-align: center;
    display: block;
    color: #ef4444;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #fef2f2;
    transition: background 0.2s;
}

.btn-reset-filters:hover {
    background: #fee2e2;
}

/* Mobile Sidebar Trigger */
.mobile-filter-trigger {
    display: none;
    width: 100%;
    padding: 15px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    cursor: pointer;
}

.sidebar-header-mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.sidebar-header-mobile button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Products Content */
.products-grid-container {
    flex: 1;
}

.products-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.products-count h1 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    display: inline-block;
}

.products-count span {
    color: #94a3b8;
    margin-right: 10px;
    font-weight: 500;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select {
    padding: 10px 30px 10px 15px;
    /* RTL padding adjustment */
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    min-width: 160px;
}

.display-toggle-modern {
    display: flex;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.toggle-btn {
    width: 44px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
}

.toggle-btn.active {
    background: #000;
    color: #fff;
}

/* Vision Grid - Mobile-First Responsive */
.vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    /* Mobile: 1 column */
    gap: var(--space-md);
    position: relative;
}

/* Tablet: 2 columns */
@media (min-width: 480px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Laptop: 3 columns */
@media (min-width: 1024px) {
    .vision-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop: 4 columns */
@media (min-width: 1280px) {
    .vision-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

/* List View Override */
.vision-grid.list-view {
    grid-template-columns: 1fr;
}

.vision-grid.list-view .product-card-luxury {
    flex-direction: row;
    align-items: center;
    height: auto;
}

.vision-grid.list-view .product-card-luxury-img-wrap {
    width: 200px;
    aspect-ratio: 1;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    /* RTL separation */
}

.vision-grid.list-view .product-card-quick-add {
    display: none;
    /* Hide quick add in list view for simplicity or adjust styling */
}

/* Empty State */
.empty-results {
    text-align: center;
    padding: 80px 0;
    color: #64748b;
}

.empty-results i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

/* Pagination Modern */
.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.overlay-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay-backdrop.active {
    display: block;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .products-layout-2026 {
        flex-direction: column;
    }

    .filters-sidebar {
        position: fixed;
        right: -300px;
        /* Off-canvas start */
        top: 0;
        height: 100vh;
        max-height: 100vh;
        z-index: 1100;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        width: 300px;
        border-radius: 20px 0 0 20px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    .filters-sidebar.active {
        right: 0;
    }

    .sidebar-header-mobile {
        display: flex;
    }

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

@media (max-width: 640px) {
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-top-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .products-controls {
        justify-content: space-between;
    }

    .sort-select {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .vision-grid {
        grid-template-columns: 1fr;
    }
}

.btn-wishlist {
    padding: 10px 16px;
    background: var(--color-border);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: var(--font-ar);
}

/* Order Stepper */
.order-stepper {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    position: relative;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--color-card-bg);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    transition: var(--transition);
    font-size: 1.2rem;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: var(--transition);
    text-align: center;
}

.step-line {
    position: absolute;
    top: 25px;
    right: 50%;
    width: 100%;
    height: 3px;
    background: var(--color-border);
    z-index: -1;
    transition: var(--transition);
}

/* Active State */
.step.active .step-icon {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(99, 102, 241, 0.2);
}

.step.active .step-label {
    color: var(--color-accent);
    font-weight: 700;
}

/* Completed State */
.step.completed .step-icon {
    background: var(--color-accent-light);
    border-color: var(--color-accent-light);
    color: #fff;
}

.step.completed .step-label {
    color: var(--color-text);
}

.step.completed .step-line {
    background: var(--color-accent-light);
}

/* Responsive Stepper */
@media (max-width: 768px) {
    .step-label {
        font-size: 0.8rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-line {
        top: 20px;
    }
}


.btn-wishlist.in-wishlist {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.product-cart-form {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

@media (max-width: 768px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Footer ----- */
.site-footer {
    margin-top: auto;
    padding: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
    .navbar-inner {
        flex-wrap: wrap;
        padding: 12px 16px;
        height: auto;
        min-height: var(--navbar-h);
    }

    .navbar-nav {
        order: 3;
        width: 100%;
    }

    .nav-list {
        justify-content: flex-end;
        gap: 4px 12px;
    }
}

@media (max-width: 600px) {
    .navbar-logo {
        font-size: 1rem;
    }

    .nav-list {
        font-size: 0.9rem;
        gap: 2px 8px;
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 60px 16px 48px;
        min-height: 320px;
    }
}

/* ===== Brands Page Vision 2026 ===== */
.brands-page-2026 {
    background-color: #f8fafc;
    min-height: 100vh;
    padding-bottom: 100px;
    padding-top: 140px;
    /* Fix Navbar Conflict */
}

/* Hero Section */
.brands-hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: white;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.brands-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.brands-hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Section */
.brands-grid-2026 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.brand-card-2026 {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 28px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.brand-logo-wrapper img {
    max-width: 140px;
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: grayscale(100%);
    opacity: 0.8;
}

.brand-name-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Hover Effects */
.brand-card-2026:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(197, 160, 89, 0.2);
}

.brand-card-2026:hover .brand-logo-wrapper img {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

.brand-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.brand-card-2026:hover .brand-hover-overlay {
    opacity: 1;
    transform: translateY(0);
}

.view-collection-btn {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--luxury-gold);
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-collection-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.brand-card-2026:hover .view-collection-btn i {
    transform: translateX(-5px);
    /* RTL arrow moves left */
}

/* Grid Variations */
.brand-wide {
    grid-column: span 2;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s constants;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Responsive adjustments for wide cards */
@media (max-width: 640px) {
    .brand-wide {
        grid-column: span 1;
        /* Reset on mobile */
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .brands-grid-2026 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .brand-card-2026 {
        height: 200px;
    }
}

@media (max-width: 640px) {
    .brands-grid-2026 {
        grid-template-columns: 1fr;
    }

    .brands-hero {
        padding: 80px 20px 60px;
    }

    .brands-hero-title {
        font-size: 2.5rem;
    }
}


/* Spotlight Section */
.brand-spotlight {
    margin-bottom: 60px;
}

.spotlight-card {
    background: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    min-height: 300px;
}

.spotlight-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.spotlight-label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--luxury-gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.spotlight-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1;
}

.spotlight-content p {
    color: #94a3b8;
    margin-bottom: 30px;
    max-width: 400px;
    line-height: 1.6;
}

.btn-spotlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--luxury-gold);
    color: black;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-spotlight:hover {
    transform: translateY(-3px);
    background: white;
}

.spotlight-image-placeholder {
    flex: 1;
    background: linear-gradient(45deg, #333, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.1);
}

/* Search Section */
.brands-search-section {
    margin-bottom: 50px;
}

.brands-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 5px;
    display: flex;
    align-items: center;
}

.brands-search-wrapper input {
    width: 100%;
    border: none;
    background: transparent;
    padding: 15px 20px 15px 50px;
    /* Space for icon styling */
    font-size: 1rem;
    outline: none;
    font-weight: 500;
    font-family: inherit;
}

.search-icon {
    position: absolute;
    left: 25px;
    /* RTL position */
    color: #94a3b8;
    font-size: 1.2rem;
}

/* Trust Badges */
.trust-badges {
    margin-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 60px;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: #64748b;
}

.trust-item i {
    font-size: 2rem;
    color: var(--luxury-gold);
}

.trust-item span {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .spotlight-card {
        flex-direction: column;
    }

    .spotlight-content {
        padding: 40px;
        align-items: center;
        text-align: center;
    }

    .spotlight-content h2 {
        font-size: 2rem;
    }

    .spotlight-image-placeholder {
        min-height: 200px;
    }

    .trust-grid {
        gap: 30px;
    }
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 10000;
    /* Extremely high to cover everything */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: min(15vh, 120px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 100%;
    max-width: 900px;
    padding: 0 40px;
    position: relative;
    transform: translateY(-30px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-overlay.active .search-container {
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    /* RTL structure */
    border-bottom: 3px solid var(--color-text);
    padding-bottom: 15px;
}

.search-form input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: clamp(1.2rem, 4vw, 2.8rem);
    /* Reduced mobile size from 1.5rem/5vw */
    font-weight: 700;
    color: var(--color-text);
    outline: none;
    font-family: var(--font-ar);
    text-align: right;
    /* Explicitly right-aligned */
}

.search-form input::placeholder {
    color: #cbd5e1;
}

.search-submit {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 10px;
    order: 2;
    /* Move icon to the side */
}

@media (max-width: 768px) {
    .search-overlay {
        padding-top: 80px;
    }

    .search-container {
        padding: 0 min(5vw, 25px);
    }

    .search-form {
        padding-bottom: 8px;
    }

    .close-search {
        top: -60px;
        left: 0;
        right: 0;
        margin: auto;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--luxury-gold);
        color: #fff;
        border-radius: 50%;
        font-size: 1.5rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

.search-submit .icon {
    width: 32px;
    height: 32px;
}

.close-search {
    position: absolute;
    top: -60px;
    left: 40px;
    /* Close button on the left for RTL */
    background: transparent;
    border: none;
    font-size: 3rem;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

/* ===== Help Page Vision 2026 ===== */
.help-page-2026 {
    padding-top: 140px;
    padding-bottom: 80px;
    background: #f8fafc;
}

.help-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.hero-subtitle {
    color: var(--luxury-gold);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
}

/* Philosophy */
.philosophy-section {
    margin-bottom: 100px;
}

.philosophy-card {
    background: #1a1a1a;
    color: white;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.philosophy-content {
    flex: 1;
    padding: 60px;
}

.philosophy-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--luxury-gold);
}

.philosophy-content p {
    line-height: 1.8;
    color: #cbd5e1;
}

.philosophy-visual {
    width: 30%;
    background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.03);
}

/* Contact Grid */
/* Contact Grid - Updated for Full Width & Equal Columns */
.help-page-full {
    padding-top: 140px;
    padding-bottom: 80px;
    background: #f8fafc;
    width: 100%;
}

.help-page-full .help-hero {
    max-width: 1000px;
    /* Wider hero for full page */
    margin-left: auto;
    margin-right: auto;
}

.contact-map-section {
    padding: 0 40px;
}

.contact-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal columns */
    gap: 40px;
    width: 100%;
}

.contact-card,
.locations-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.section-heading i {
    color: var(--luxury-gold);
}

/* Modern Form */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #475569;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    background: #f8fafc;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--luxury-gold);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: var(--luxury-gold);
    color: black;
    transform: translateY(-3px);
}

/* Branch Switcher */
.branch-switcher {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.branch-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: right;
    font-family: inherit;
}

.branch-btn.active {
    border-color: var(--luxury-gold);
    background: #fffbeb;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.1);
}

.branch-icon {
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--luxury-gold);
}

.branch-meta {
    display: flex;
    flex-direction: column;
}

.branch-meta .name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.branch-meta .status {
    font-size: 0.8rem;
    color: #16a34a;
    font-weight: 600;
}

.map-wrapper {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 2px solid #f1f5f9;
}

#map {
    height: 100%;
    width: 100%;
    z-index: 1;
}

.branch-contacts {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-weight: 600;
}

.contact-item i {
    color: var(--luxury-gold);
    font-size: 1.2rem;
}

@media(max-width: 900px) {
    .contact-map-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .philosophy-card {
        flex-direction: column;
    }

    .philosophy-visual {
        width: 100%;
        height: 150px;
    }
}

/* ----- Rich Footer ----- */
.site-footer {
    background: #0f172a;
    color: #f8fafc;
    padding-top: 5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

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

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
    filter: brightness(1.2);
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    max-width: 300px;
}

.section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 30px;
    color: var(--luxury-deep);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--luxury-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-accent);
    transform: translateX(-5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #94a3b8;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-contact i {
    color: #6366f1;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #6366f1;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.8rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        align-self: center;
    }

    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-bottom-inner {
        justify-content: center;
        text-align: center;
    }
}

/* Additional Theme Refinements */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar {
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.product-card {
    background: var(--color-card-bg) !important;
}

.brands-grid-inner>a {
    background: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
}

.dropdown-brand-item {
    background: var(--color-card-bg) !important;
    border-color: var(--color-border) !important;
}

.dropdown-brand-item:hover {
    background: var(--color-bg) !important;
}

.search-overlay {
    background: var(--color-bg) !important;
}

.search-form input {
    color: var(--color-text) !important;
}

.close-search {
    color: var(--color-text) !important;
}

.exclusive-showcase {
    background: var(--color-bg);
    color: var(--color-text);
}

/* ===== FOOTER 2026 - Modern Premium Design ===== */

.site-footer-2026 {
    background: #1A1A1A;
    color: #FFFFFF;
    padding: 80px 0 0;
    position: relative;
    margin-top: 100px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer-2026.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-main {
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 0;
}

/* Column Styles */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* Branding Column */
.footer-brand .footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 12px;
    filter: brightness(1.1);
}

.footer-tagline {
    color: #C5A059;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-description {
    color: #CBD5E1;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-icon:hover {
    background: rgba(197, 160, 89, 0.15);
    border-color: #C5A059;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.social-icon:hover::before {
    opacity: 1;
}

/* Footer Titles */
.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 12px;
}

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

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    position: relative;
}

.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #C5A059;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #C5A059;
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    width: 8px;
}

/* Newsletter Section */
.footer-newsletter .newsletter-description {
    color: #CBD5E1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.newsletter-form {
    margin-bottom: 25px;
}

.newsletter-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    border-color: #C5A059;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.newsletter-btn {
    padding: 14px 24px;
    background: #C5A059;
    border: none;
    border-radius: 12px;
    color: #1A1A1A;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.newsletter-btn:hover {
    background: #D4B06A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}

.newsletter-btn i {
    transition: transform 0.3s ease;
}

.newsletter-btn:hover i {
    transform: translateX(-3px);
}

.newsletter-message {
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    display: none;
}

.newsletter-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.newsletter-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Contact Info in Newsletter */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #CBD5E1;
    font-size: 0.9rem;
}

.contact-info-item i {
    color: #C5A059;
    font-size: 1rem;
    width: 20px;
}

/* Bottom Bar */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copyright {
    color: #94A3B8;
    font-size: 0.9rem;
    margin: 0;
    transition: color 0.3s ease;
    cursor: default;
}

.footer-copyright:hover {
    color: #C5A059;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-legal a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #C5A059;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.2);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-label {
    color: #94A3B8;
    font-size: 0.85rem;
    margin-left: 8px;
}

.footer-payment i {
    font-size: 1.8rem;
    color: #CBD5E1;
    transition: all 0.3s ease;
}

.footer-payment i:hover {
    color: #C5A059;
    transform: translateY(-2px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #C5A059;
    border: none;
    border-radius: 50%;
    color: #1A1A1A;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: #D4B06A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(197, 160, 89, 0.5);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: rotate(-360deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .site-footer-2026 {
        padding: 60px 0 0;
        margin-top: 60px;
    }

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

        .footer-brand {
            text-align: center;
            grid-column: 1;
        }

        .footer-brand .footer-logo {
            margin-left: auto;
            margin-right: auto;
        }

        .footer-social {
            justify-content: center;
        }

        .footer-title::after {
            right: 50%;
            transform: translateX(50%);
        }

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

        .footer-links a::before {
            display: none;
        }

        .footer-links a:hover {
            transform: none;
        }

        .newsletter-input-wrapper {
            flex-direction: column;
        }

        .newsletter-btn {
            justify-content: center;
        }

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

        .footer-legal {
            order: 2;
        }

        .footer-payment {
            order: 3;
        }

        .scroll-to-top {
            bottom: 20px;
            left: 20px;
            width: 45px;
            height: 45px;
        }
    }

    @media (max-width: 480px) {
        .footer-payment {
            flex-wrap: wrap;
            justify-content: center;
        }

        .payment-label {
            width: 100%;
            text-align: center;
            margin-bottom: 8px;
        }
    }
}

/* Animation Classes */
.fade-in-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ----- Section: Montre du Mois (Vision 2026) ----- */
.watch-month-section {
    background: #111827;
    padding: 120px 0;
    color: #fff;
    overflow: hidden;
    position: relative;
}

.watch-month-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.watch-month-visual {
    flex: 0 0 55%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.watch-month-img {
    width: 100%;
    max-width: 650px;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6));
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.watch-month-section:hover .watch-month-img {
    transform: scale(1.05) rotate(-2deg);
}

.watch-month-content {
    flex: 1;
    text-align: right;
}

.month-label {
    display: inline-block;
    color: var(--luxury-gold);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    position: relative;
}

.month-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--luxury-gold);
}

.month-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.month-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.15rem;
    margin-bottom: 50px;
    line-height: 1.7;
    max-width: 500px;
}

.shimmer-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 50px;
    background: var(--luxury-gold);
    color: #000 !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

.shimmer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.4);
    background: #fff;
}

.shimmer-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transform: rotate(25deg);
    animation: shimmerEffect 4s infinite;
}

@keyframes shimmerEffect {

    20%,
    100% {
        left: 200%;
    }
}

@media (max-width: 1024px) {
    .watch-month-container {
        flex-direction: column-reverse;
        gap: 50px;
        text-align: center;
    }

    .watch-month-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .month-label::after {
        right: 50%;
        transform: translateX(50%);
    }
}

/* ===== MOBILE NAVIGATION (Vision 2026 Premium) ===== */

/* Hamburger Button (Hidden on Desktop) */
.mobile-hamburger {
    display: none;
    /* Hidden by default */
    flex-direction: column;
    justify-content: space-around;
    width: var(--tap-target-min);
    height: var(--tap-target-min);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-hamburger span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-hamburger:hover span {
    background: var(--luxury-gold);
}

/* Hamburger Animation (Active State) */
.mobile-hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Overlay */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1998;
}

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

/* Mobile Drawer (RTL Slide from Right) */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 400px);
    height: 100vh;
    background: var(--color-bg);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    z-index: 1999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer.active {
    right: 0;
}

/* Drawer Header */
.mobile-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-card-bg);
}

.mobile-drawer-logo {
    height: 40px;
    width: auto;
}

.mobile-drawer-close {
    width: var(--tap-target-min);
    height: var(--tap-target-min);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-drawer-close:hover {
    background: var(--luxury-gold);
    color: #000;
    transform: rotate(90deg);
}

/* Drawer Navigation */
.mobile-drawer-nav {
    flex: 1;
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--color-text);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
}

/* Staggered Animation for Links */
.mobile-drawer.active .mobile-nav-link {
    animation: slideInRight 0.4s ease forwards;
}

.mobile-drawer.active .mobile-nav-link:nth-child(1) {
    animation-delay: 0.05s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(2) {
    animation-delay: 0.1s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(3) {
    animation-delay: 0.15s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(4) {
    animation-delay: 0.2s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(5) {
    animation-delay: 0.25s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(6) {
    animation-delay: 0.3s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(7) {
    animation-delay: 0.35s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(9) {
    animation-delay: 0.4s;
}

.mobile-drawer.active .mobile-nav-link:nth-child(10) {
    animation-delay: 0.45s;
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-nav-link:hover {
    background: rgba(197, 160, 89, 0.1);
    color: var(--luxury-gold);
    transform: translateX(-5px);
}

.mobile-nav-link i {
    font-size: 1.3rem;
    width: 24px;
    text-align: center;
}

.mobile-nav-divider {
    height: 1px;
    background: var(--color-border);
    margin: var(--space-sm) 0;
}

.mobile-nav-logout {
    color: #f43f5e;
}

.mobile-nav-logout:hover {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .mobile-hamburger {
        display: flex;
    }

    .navbar-nav {
        display: none;
    }

    .navbar-inner {
        padding: 0 var(--space-md);
    }

    /* Hide secondary icons on mobile/tablet */
    .hide-on-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .luxury-header {
        height: 60px;
    }

    .site-wrapper {
        padding-top: 60px;
        /* Match reduced header height */
    }

    .navbar-logo img {
        height: 36px !important;
    }

    .icon-btn {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }

    .navbar-inner {
        padding: 0 var(--space-sm);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        /* 3-column layout */
        align-items: center;
    }

    .navbar-logo {
        grid-column: 2;
        /* Center */
        justify-self: center;
        order: 2;
        margin: 0;
    }

    .mobile-hamburger {
        grid-column: 1;
        /* Left */
        justify-self: start;
        order: 1;
        display: flex;
        /* Ensure it stays visible */
    }

    .navbar-actions {
        grid-column: 3;
        /* Right */
        justify-self: end;
        order: 3;
        display: flex;
        gap: 8px;
    }

    .navbar-logo img {
        height: 32px !important;
        width: auto;
    }
}

/* Footer Bottom Refinements */
.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-payment-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-payment-badges {
    display: flex;
    gap: 15px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-payment-badges i {
    transition: all 0.3s ease;
    cursor: default;
}

.footer-payment-badges i:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-payment-notice {
        justify-content: center;
    }

    .footer-payment-badges {
        justify-content: center;
    }
}

/* Final Mobile Refinements (Vision 2026) */
@media (max-width: 768px) {

    /* Homepage Hero */
    .hero-cta-2026 {
        padding: 12px 30px !important;
        font-size: 0.9rem !important;
        gap: 8px !important;
    }

    .hero-arrow {
        width: 44px !important;
        height: 44px !important;
        font-size: 0.9rem !important;
    }

    /* Immersive Promo Stacking (Text above image) */
    .promo-container {
        flex-direction: column-reverse !important;
        text-align: center !important;
        gap: 30px !important;
    }

    .promo-visual {
        margin-top: 2rem !important;
    }

    .promo-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem) !important;
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 1024px) {

    /* Cart Layout Stacking (List above Summary) */
    .cart-grid-2026 {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    .cart-items-list {
        order: 1 !important;
    }

    .cart-summary-sidebar {
        order: 2 !important;
    }

    .cart-header {
        text-align: center;
        margin-bottom: 2rem;
    }
}

/* Mobile Search Form (Drawer) - Refined */
.mobile-search-form {
    position: relative;
    margin-bottom: 25px;
    padding: 0 15px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-search-form input {
    width: 100%;
    padding: 14px 20px;
    padding-left: 50px;
    /* Space for icon */
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    background: #fff !important;
    font-family: var(--font-ar);
    font-size: 0.95rem;
    color: #333 !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    -webkit-appearance: none;
}

.mobile-search-form input:focus {
    background: #fff !important;
    border-color: var(--luxury-gold) !important;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.15) !important;
    outline: none;
}

.mobile-search-form button {
    position: absolute;
    left: 30px;
    top: 38%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.mobile-search-form input:focus+button {
    color: var(--luxury-gold);
    transform: translateY(-50%) scale(1.1);
}

/* Search Page Desktop Fix */
.search-page-layout {
    flex-direction: column !important;
    gap: 60px;
}

.search-brands-section,
.search-products-section {
    width: 100%;
}

/* Immersive Promo & Gradients (Vision 2026) */
.section-gradient-transition {
    position: relative;
    z-index: 2;
}

/* Gradient: White to Black (Promo) */
.gradient-white-to-black {
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 70%, #111 100%);
    padding-bottom: 150px !important;
    /* Extra padding for blend */
    margin-bottom: -1px;
    /* Avoid artifacts */
}

/* Gradient: Black to White (Promo) */
.gradient-black-to-white {
    background: linear-gradient(to bottom, #111 0%, #f9f9f9 30%, #ffffff 100%);
    padding-top: 150px !important;
    margin-top: -1px;
}

/* Gradient: White to Dark Blue (Watch Month Top) */
.gradient-white-to-dark-blue {
    background: linear-gradient(to bottom, #ffffff 0%, #f3f4f6 70%, #111827 100%);
    padding-bottom: 150px !important;
    margin-bottom: -1px;
}

/* Gradient: Dark Blue to White (Watch Month Bottom) */
.gradient-dark-blue-to-white {
    background: linear-gradient(to bottom, #111827 0%, #f3f4f6 30%, #ffffff 100%);
    padding-top: 150px !important;
    margin-top: -1px;
}

.immersive-promo {
    background: #111;
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.promo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.promo-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.promo-pedestal {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(1.02);
    transition: transform 0.7s ease;
}

.immersive-promo:hover .promo-pedestal {
    transform: scale(1.05);
}

.promo-content {
    flex: 1;
    text-align: right;
    z-index: 2;
}

.promo-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Shimmer Button used in Promo */
.shimmer-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--luxury-gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.shimmer-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.6),
            transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.shimmer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}

.shimmer-btn:hover::before {
    left: 150%;
    transition: 0.7s;
}