/* =====================
   RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================
   ROOT (LIGHT MODE)
===================== */
:root {
    --gold: #C9A96E;
    --gold-light: #D4B87A;

    --white: #FFFFFF;
    --cream: #F5F0E8;

    --dark: #1A1A1A;
    --darker: #0D0D0D;

    --gray: #8A8A8A;
    --light-gray: #E8E4DC;

    /* Navbar */
    --nav-bg: rgba(13, 13, 13, 0.35);
    --nav-text: rgba(255, 255, 255, 0.85);
    --nav-hover: var(--gold);
    --logo-color: var(--dark);
    --hamburger-color: var(--dark);
}

/* =====================
   DARK MODE
===================== */
body.dark-mode {
    --white: #0E0E0E;
    --cream: #151515;

    --dark: #FFFFFF;
    --darker: #000000;

    --gray: #BBBBBB;
    --light-gray: #1F1F1F;

    --nav-bg: rgba(0, 0, 0, 0.65);
    --nav-text: rgba(255, 255, 255, 0.9);
    --logo-color: #FFFFFF;
    --hamburger-color: #FFFFFF;
}

/* =====================
   GLOBAL
===================== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

/* Smooth transitions */
* {
    transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* =====================
   SECTIONS
===================== */
.section,
.products-section,
.testimonials-section,
.instagram-section,
.newsletter,
.lookbook {
    background: var(--cream);
    color: var(--dark);
}

body.dark-mode .section,
body.dark-mode .products-section,
body.dark-mode .testimonials-section,
body.dark-mode .instagram-section,
body.dark-mode .newsletter,
body.dark-mode .lookbook {
    background: var(--darker);
    color: var(--white);
}

/* =====================
   CARDS & COMPONENTS
===================== */
.product-card,
.testimonials-container {
    background: var(--white);
    color: var(--dark);
}

body.dark-mode .product-card,
body.dark-mode .testimonials-container {
    background: #1a1a1a;
    color: var(--white);
}

.product-image-wrapper {
    background: var(--light-gray);
}

body.dark-mode .product-image-wrapper {
    background: #1a1a1a;
}

/* =====================
   TEXT
===================== */
.section-title,
.product-name,
.product-brand,
.testimonial-quote {
    color: var(--dark);
}

body.dark-mode .section-title,
body.dark-mode .product-name,
body.dark-mode .product-brand,
body.dark-mode .testimonial-quote {
    color: #ffffff;
}

/* Softer text */
body.dark-mode .section-tag,
body.dark-mode .testimonial-role {
    color: #bbbbbb;
}

/* FORCE ALL TEXT WHITE (final override) */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode span,
body.dark-mode a,
body.dark-mode li {
    color: #ffffff !important;
}

/* =====================
   NAVIGATION
===================== */
.nav-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--nav-bg);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrapper.scrolled {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

/* Nav links */
.nav-left a {
    color: var(--nav-text);
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.nav-left a:hover {
    color: var(--nav-hover);
}

/* Logo */
.logo-main {
    color: var(--logo-color);
    font-family: 'Playfair Display', serif;
    letter-spacing: 6px;
}

.logo-sub {
    color: var(--gold);
    letter-spacing: 8px;
}

/* Icons */
.nav-right a {
    color: var(--nav-text);
}

.nav-right a:hover {
    color: var(--gold);
}

/* Hamburger */
.hamburger span {
    background: var(--hamburger-color);
}

/* =====================
   UI ELEMENTS
===================== */
.cart-count {
    background: var(--gold);
    color: #111;
}

#themeToggle {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--gold);
    border-radius: 30px;
    cursor: pointer;
}

body.dark-mode #themeToggle {
    border-color: rgba(255,255,255,0.4);
}

/* =====================
   FOOTER & MISC
===================== */
footer {
    background: var(--cream);
}

body.dark-mode footer {
    background: #000;
}

.mobile-menu {
    background: var(--white);
}

body.dark-mode .mobile-menu {
    background: #000;
}

.newsletter {
    background: var(--cream);
}

body.dark-mode .newsletter {
    background: #000;
}

/* =====================
   LOOKBOOK
===================== */
.lookbook-card {
    background: var(--white);
}

body.dark-mode .lookbook-card {
    background: #111;
}

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        .preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-text {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--gold);
            letter-spacing: 15px;
            animation: preloaderPulse 1.5s ease-in-out infinite;
        }

        @keyframes preloaderPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* Announcement Bar */
        .announcement-bar {
            background: var(--darker);
            color: var(--gold);
            text-align: center;
            padding: 10px 20px;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 400;
        }

        /* Navigation */
        .nav-wrapper {
            position: sticky;
            top: 0;
            z-index: 1000;

            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);

            border-bottom: 1px solid rgba(255,255,255,0.08);
            transition: all 0.4s ease;
        }

        .nav-wrapper.scrolled {
            background: rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 8px 60px;
            max-width: 1600px;
            margin: 0 auto;
            
        }
        

        .nav-left {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .nav-left a {
            text-decoration: none;
            color: rgba(255,255,255,0.85);
            font-size: 0.7rem;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-left a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-left a:hover {
            color: var(--gold);
        }

        .nav-left a:hover::after {
            width: 100%;
        }

        .logo {
            text-align: center;
            flex-shrink: 0;
        }

        .logo-main {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: var(--dark);
            text-decoration: none;
            display: block;
            line-height: 1;
        }

        .logo-sub {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            letter-spacing: 8px;
            text-transform: uppercase;
            color: goldenrod;
            font-weight: 1000;
            margin-top: 4px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-right a {
            color: rgba(255,255,255,0.85);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .nav-right a:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .cart-icon {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background: var(--gold);
            color: var(--white);
            font-size: 0.55rem;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            z-index: 1001;
            margin-left: -20px;
            margin-right: 20px;
            margin-bottom: 20px;
        }

        .hamburger span {
            width: 24px;
            height: 1.5px;
            background: var(--dark);
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background-color: var(--gold-light);
        }

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

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            overflow: hidden;
        }

        .hero-slider {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1.05);
            transition: transform 8s ease;
        }

        .hero-slide.active .hero-slide-bg {
            transform: scale(1);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(13, 13, 13, 0.75) 0%,
                rgba(13, 13, 13, 0.4) 50%,
                rgba(13, 13, 13, 0.2) 100%
            );
        }

        .hero-content {
            position: absolute;
            top: 30%;
            left: 100px;
            transform: translateY(-50%);
            max-width: 650px;
            z-index: 10;
        }

        .hero-tag {
            font-size: 0.7rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 25px;
            font-weight: 400;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease 0.5s forwards;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 4.5rem;
            font-weight: 700;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 25px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease 0.7s forwards;
        }

        .hero-title em {
            color: var(--gold);
            font-style: italic;
        }

        .hero-desc {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 40px;
            font-weight: 300;
            max-width: 480px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease 0.9s forwards;
        }

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 25px;

    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease 1.1s forwards;
}

/* PRIMARY BUTTON (Luxury filled) */
.btn-primary {
    padding: 14px 28px;
    background: #ffffff;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

/* hover glow + lift */
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,255,255,0.15);
}

/* SECONDARY BUTTON (outline luxury) */
.btn-secondary {
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.6);
    letter-spacing: 0.5px;

    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

/* hover effect */
.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
    border-color: #fff;
}

/* smooth fade animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

        .btn-primary {
            display: inline-block;
            padding: 16px 45px;
            background: var(--gold);
            color: var(--white);
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            transition: all 0.4s ease;
            border: 2px solid var(--gold);
        }

        .btn-primary:hover {
            background: transparent;
            color: var(--gold);
        }

        .btn-secondary {
            display: inline-block;
            padding: 16px 45px;
            background: transparent; 
            color: var(--white);
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            font-weight: 600;
            border: 2px solid rgba(255,255,255,0.4);
            transition: all 0.4s ease;
        }

        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .hero-indicators {
            position: absolute;
            bottom: 50px;
            left: 60px;
            display: flex;
            gap: 12px;
            z-index: 10;
        }

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

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

        .hero-scroll {
            position: absolute;
            bottom: 50px;
            right: 60px;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.5);
            font-size: 0.6rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
        }

        .hero-scroll-line {
            width: 1px;
            height: 50px;
            background: rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
        }

        .hero-scroll-line::after {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gold);
            animation: scrollLine 2s ease infinite;
        }
        .hero-content {
    position: absolute;
    z-index: 2;
    color: white;
    bottom: 20%;
    left: 10%;
    max-width: 500px;
    opacity: 0;
    transform: translateY(40px);
}

/* Animate only active slide text */
.hero-slide.active .hero-content {
    animation: textFadeSlide 1s ease forwards;
    animation-delay: 0.3s;
}

@keyframes textFadeSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.85;
    margin-bottom: 20px;
}

.hero-btn {
    display: inline-block;
    padding: 10px 25px;
    background: white;
    color: black;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.hero-btn:hover {
    transform: scale(1.05);
}

        @keyframes scrollLine {
            0% { top: -100%; }
            100% { top: 100%; }
        }

        /* Section Styles */
        .section {
            padding: 120px 60px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            font-size: 0.65rem;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 18px;
            font-weight: 500;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-line {
            width: 60px;
            height: 1px;
            background: var(--gold);
            margin: 0 auto;
        }

        /* Categories */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .category-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 3/4;
            group: true;
        }

        .category-card:first-child {
            grid-row: span 2;
            aspect-ratio: auto;
        }

        .category-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s ease;
        }

        .category-card:hover .category-img {
            transform: scale(1.08);
        }

        .category-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, rgba(13,13,13,0.1) 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 35px;
            transition: background 0.4s ease;
        }

        .category-card:hover .category-overlay {
            background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.2) 60%);
        }

        .category-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 8px;
        }

        .category-count {
            font-size: 0.7rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 400;
        }

        .category-arrow {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 0.8rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease;
        }

        .category-card:hover .category-arrow {
            opacity: 1;
            transform: translateY(0);
        }

        /* Featured Products */
        .products-section {
            background: var(--cream);
        }
        .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* CARD */
.product-card {
    width: 280px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    /* optimized shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    /* smoother performance */
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

/* IMAGE (GPU optimized) */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 320px;
    object-fit: cover;

    /* faster than heavy scale + blur combos */
    transition: transform 0.35s ease;
    transform: translateZ(0);
}

.product-card:hover .product-img {
    transform: scale(1.06) translateZ(0);
}

/* BADGE (lighter animation) */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, gold, #ffcc70);
    color: #111;
    padding: 5px 10px;
    font-size: 10px;
    font-weight: 700;
    border-radius: 30px;
}

/* ACTION BUTTONS (NO BLUR = BIG SPEED BOOST) */
.product-actions {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-actions button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;

    background: rgba(0,0,0,0.4);
    color: #fff;

    transition: 0.2s ease;
}

.product-actions button:hover {
    background: gold;
    color: #111;
    transform: scale(1.08);
}

/* TEXT */
.product-info {
    padding: 14px;
}

.product-brand {
    font-size: 11px;
    opacity: 0.6;
    letter-spacing: 1.5px;
}

.product-name {
    font-size: 15px;
    margin: 4px 0;
    font-weight: 600;
}

.product-price {
    color: gold;
    font-size: 16px;
    font-weight: 700;
}

.original {
    text-decoration: line-through;
    font-size: 13px;
    color: gray;
    margin-left: 8px;
}

        .products-section .section {
            padding: 120px 60px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 35px;
        }

        .product-card {
            background: var(--white);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .product-card:hover {
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transform: translateY(-8px);
        }

        .product-image-wrapper {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
            background: #f9f7f4;
        }

        .product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

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

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--dark);
            color: var(--gold);
            font-size: 0.55rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 14px;
            font-weight: 600;
        }

        .product-actions {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%) translateY(20px);
            display: flex;
            gap: 10px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .product-card:hover .product-actions {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }

        .product-action-btn {
            width: 42px;
            height: 42px;
            background: var(--white);
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 0.85rem;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .product-action-btn:hover {
            background: var(--dark);
            color: var(--gold);
        }

        .product-info {
            padding: 22px;
        }

        .product-brand {
            font-size: 0.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 8px;
            font-weight: 500;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            color: var(--dark);
            margin-bottom: 10px;
            font-weight: 500;
        }

        .product-price {
            font-size: 0.9rem;
            color: var(--dark);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .product-price .original {
            text-decoration: line-through;
            color: var(--gray);
            font-weight: 400;
            margin-left: 10px;
            font-size: 0.8rem;
        }

        /* Lookbook / Editorial Section */
        .editorial {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
        }

        .editorial-image {
            position: relative;
            overflow: hidden;
        }

        .editorial-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .editorial-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 80px 100px;
            background: var(--darker);
        }

        .editorial-content .section-tag {
            text-align: left;
            margin-bottom: 25px;
        }

        .editorial-content .section-title {
            color: var(--white);
            font-size: 3.2rem;
            text-align: left;
            margin-bottom: 25px;
        }

        .editorial-desc {
            color: rgba(255,255,255,0.6);
            font-size: 0.95rem;
            line-height: 1.9;
            font-weight: 300;
            margin-bottom: 45px;
            max-width: 450px;
        }

        /* Testimonials */
        .testimonials-section {
    background: linear-gradient(180deg, var(--cream), #f8f5f0);
    padding: 140px 60px;
    position: relative;
    overflow: hidden;
}

/* soft glow */
.testimonials-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,169,110,0.15), transparent);
    top: -150px;
    right: -150px;
    filter: blur(90px);
}

.testimonials-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 60px 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.testimonials-container:hover {
    transform: translateY(-5px);
}

.quote-mark {
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -40px;
    left: 30px;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    margin-bottom: 35px;
    transition: opacity 0.5s ease;
}

.testimonial-author {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 600;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
}
.instagram-section {
    padding: 120px 0 40px;
    background: var(--white);
}

.instagram-section .section-header {
    padding: 0 60px;
    margin-bottom: 60px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    padding: 0 20px;
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    border-radius: 12px;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

/* hover zoom + dim */
.insta-item:hover img {
    transform: scale(1.12);
    filter: brightness(0.8);
}

/* luxury glow overlay */
.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 1.6rem;
    color: var(--gold);
    transform: scale(0.8);
    transition: 0.3s ease;
}

.insta-item:hover .insta-overlay i {
    transform: scale(1);
}
.newsletter {
    padding: 140px 60px;
    text-align: center;
    background: linear-gradient(135deg, #0D0D0D, #111);
    position: relative;
    overflow: hidden;
}

/* glow effect */
.newsletter::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201,169,110,0.2), transparent);
    top: -200px;
    left: -200px;
    filter: blur(100px);
}

.newsletter-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.newsletter-form input {
    flex: 1;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--white);
    outline: none;
}

.newsletter-form button {
    padding: 20px 45px;
    background: var(--gold);
    border: none;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}
        /* Footer */
        footer {
    background: linear-gradient(180deg, #0D0D0D, #050505);
    color: rgba(255,255,255,0.6);
    padding: 90px 60px 30px;
    position: relative;
    overflow: hidden;
}

/* subtle glow background */
footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,169,110,0.15), transparent);
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

/* grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1600px;
    margin: 0 auto 70px;
}

/* brand */
.footer-brand .logo-main {
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.footer-brand .logo-sub {
    margin-bottom: 20px;
    color: var(--gold);
    letter-spacing: 3px;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.9;
    font-weight: 300;
    max-width: 300px;
}

/* social icons (glass + glow) */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.35s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201,169,110,0.4);
}

/* columns */
.footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
}

/* gold underline animation */
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 60px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 300;
    transition: all 0.3s ease;
    position: relative;
}

/* hover slide effect */
.footer-col a::before {
    content: "→";
    position: absolute;
    left: -18px;
    opacity: 0;
    transition: 0.3s;
    color: var(--gold);
}

.footer-col a:hover {
    color: var(--gold);
    transform: translateX(10px);
}

.footer-col a:hover::before {
    opacity: 1;
}

/* bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* payment icons glow */
.footer-payments {
    display: flex;
    gap: 15px;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.3);
}

.footer-payments i {
    transition: 0.3s;
}

.footer-payments i:hover {
    color: var(--gold);
    transform: scale(1.2);
}

/* responsive */
@media(max-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    footer {
        padding: 70px 25px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
        /* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--darker);

    z-index: 2000; /* FIXED */

    padding: 100px 40px 40px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

        .mobile-menu.open {
            right: 0;
        }

        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .mobile-menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            display: block;
            color: var(--white);
            text-decoration: none;
            font-size: 1.2rem;
            font-family: 'Playfair Display', serif;
            padding: 15px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            transition: color 0.3s ease;
        }

        .mobile-menu a:hover {
            color: var(--gold);
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .category-card:first-child {
                grid-row: span 1;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            nav {
                padding: 18px 30px;
            }

            .section {
                padding: 80px 30px;
            }
        }

        @media (max-width: 992px) {
            .nav-left {
                display: none;
            }

            .hamburger {
                display: flex;
            }

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

            .hero-content {
                left: 30px;
                right: 30px;
            }

            .editorial {
                grid-template-columns: 1fr;
            }

            .editorial-content {
                padding: 60px 30px;
            }

            .editorial-content .section-title {
                font-size: 2.2rem;
            }

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

            .instagram-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        

        @media (max-width: 768px) {
            @media (max-width: 768px) {
    .nav-right a:nth-child(2), /* user */
    .nav-right a.cart-icon {
        display: none;
    }
}
            .hero-title {
                font-size: 2.2rem;
            }

            .hero-desc {
                font-size: 0.85rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 12px;
            }
        

            .hero-buttons a {
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
            }

            .categories-grid {
                grid-template-columns: 1fr;
            }

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

            .newsletter-form {
                flex-direction: column;
                border: none;
            }

            .newsletter-form input {
                border: 1px solid rgba(255,255,255,0.2);
                margin-bottom: 10px;
            }

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

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

            .testimonial-quote {
                font-size: 1.3rem;
            }

            .hero-indicators, .hero-scroll {
                display: none;
            }
        }

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

            .logo-main {
                font-size: 1.1rem;
                letter-spacing: 3px;
            }

            .logo-sub {
                font-size: 0.45rem;
                letter-spacing: 5px;
            }

            .instagram-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Back to Top */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background: var(--dark);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 0.9rem;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
                #themeToggle {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--gold);
            font-size: 0.9rem;
            padding: 6px 10px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #themeToggle:hover {
            background: var(--gold);
            color: black;
            border-color: var(--gold);
        }

        .back-to-top:hover {
            background: var(--gold);
            color: var(--white);
        }
  .lookbook {
    width: 100%;
    height: 100vh;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

/* hide scrollbar */
.lookbook::-webkit-scrollbar {
    display: none;
}

.lookbook-track {
    display: flex;
    height: 100%;
}

/* each page */
.page {
    min-width: 100vw;
    height: 100vh;
    position: relative;
    scroll-snap-align: start;
    overflow: hidden;
}

/* image */
.page img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transform: scale(1.1);
    animation: zoomIn 12s ease-in-out infinite alternate;
}

/* overlay text */
.overlay {
    position: absolute;
    bottom: 10%;
    left: 8%;
    color: white;
    max-width: 500px;
    animation: fadeUp 1.2s ease forwards;
}

.overlay h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 16px;
    opacity: 0.8;
}

/* animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

/* mobile */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 28px;
    }
}
        /* Custom Cursor (desktop only) */
        @media (min-width: 992px) {
            .custom-cursor {
                width: 12px;
                height: 12px;
                border: 1.5px solid var(--gold);
                border-radius: 50%;
                position: fixed;
                pointer-events: none;
                z-index: 9999;
                transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
                transform: translate(-50%, -50%);
            }
        }