﻿        :root {
            --primary: #C9A962;
            --primary-dark: #A88B4A;
            --dark: #111111;
            --light: #F9F7F2;
            --white: #FFFFFF;
            --gray: #6b6b6b;
            --shadow: 0 12px 48px rgba(0,0,0,0.08);
        }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(17, 17, 17, 0.08);
}

body {
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
    perspective: 1600px;
    transform-style: preserve-3d;
    position: relative;
}

body::-webkit-scrollbar {
    width: 11px;
}

body::-webkit-scrollbar-track {
    background: rgba(17, 17, 17, 0.05);
}

body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

section {
    scroll-margin-top: 110px;
    position: relative;
    transform-style: preserve-3d;
}

body::before,
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    transition: transform 0.15s linear;
}

body::before {
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 169, 98, 0.22), transparent 20%),
        radial-gradient(circle at 82% 22%, rgba(17, 17, 17, 0.06), transparent 18%),
        radial-gradient(circle at 50% 70%, rgba(201, 169, 98, 0.08), transparent 26%);
    transform: translate3d(calc(var(--scroll-y, 0) * -0.02px), calc(var(--scroll-y, 0) * 0.06px), 0);
    filter: blur(2px);
}

body::after {
    background:
        radial-gradient(circle at 10% 78%, rgba(201, 169, 98, 0.12), transparent 18%),
        radial-gradient(circle at 88% 72%, rgba(201, 169, 98, 0.08), transparent 16%);
    transform: translate3d(calc(var(--scroll-y, 0) * 0.03px), calc(var(--scroll-y, 0) * -0.04px), 0);
    mix-blend-mode: multiply;
}

        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.96);
            backdrop-filter: blur(12px);
            box-shadow: 0 2px 24px rgba(0,0,0,0.04);
            transition: all 0.4s ease;
        }

        header.scrolled {
            padding: 8px 0;
            box-shadow: 0 4px 30px rgba(0,0,0,0.06);
        }

        .nav-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 18px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            gap: 16px;
        }

        .logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo i { color: var(--primary); }
        .logo span { color: var(--primary); }

        .nav-links {
            display: flex;
            gap: 48px;
            list-style: none;
            margin-right: auto;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 15.5px;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px; left: 0;
            width: 0; height: 2.5px;
            background: var(--primary);
            transition: width 0.4s ease;
        }

        .nav-links a:hover,
        .nav-links a.active { color: var(--primary); }
        .nav-links a:hover::after { width: 100%; }

        .header-btn {
            padding: 13px 32px;
            background: var(--dark);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 14.5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            order: 2;
        }

        .header-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201,169,98,0.25);
        }

        #main-header {
            padding: 25px 0;
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            border-bottom: 0;
        }

        #main-header.scrolled {
            padding: 15px 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(201, 169, 98, 0.1);
        }

        #main-header .nav-container {
            max-width: 1300px;
            padding: 0 40px;
        }

        #main-header .nav-links {
            margin-right: 0;
            margin-left: auto;
            gap: 34px;
        }

        #main-header .nav-link-item {
            position: relative;
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        #main-header .nav-link-item::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        #main-header .nav-link-item:hover::after,
        #main-header .nav-link-item.active::after {
            width: 100%;
        }

        #main-header .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        #main-header .header-cart-link,
        #main-header .header-wishlist-link {
            width: auto;
            height: auto;
            min-width: 0;
            border: none;
            background: none;
            border-radius: 0;
            box-shadow: none;
            overflow: visible;
            order: initial;
            padding: 0;
        }

        #main-header .header-cart-link::before,
        #main-header .header-wishlist-link::before {
            display: none;
        }

        #main-header .action-item {
            position: relative;
            cursor: pointer;
            font-size: 20px;
            color: var(--dark);
            transition: transform 0.3s ease, color 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        #main-header .action-item:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        #main-header .action-item:focus-visible {
            outline: none;
            color: var(--primary);
        }

        #main-header .action-item i {
            font-size: 20px;
            color: currentColor;
        }

        #main-header .action-badge {
            position: absolute;
            top: -8px;
            right: -10px;
            background: var(--primary);
            color: white;
            font-size: 10px;
            font-weight: 700;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.95);
            animation: badgePulse 2s infinite;
            box-shadow: 0 8px 16px rgba(201, 169, 98, 0.28);
            opacity: 0;
            transform: scale(0.78);
            transition: opacity 0.2s ease, transform 0.2s ease;
        }

        #main-header .action-badge.has-items {
            opacity: 1;
            transform: scale(1);
        }

        #main-header .header-cart-link.is-current,
        #main-header .header-wishlist-link.is-current {
            color: var(--primary);
        }

        @keyframes badgePulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 98, 0.7); }
            70% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(201, 169, 98, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(201, 169, 98, 0); }
        }

        .header-cart-link,
        .header-wishlist-link {
            width: 58px;
            height: 52px;
            border-radius: 18px;
            border: 1px solid rgba(201, 169, 98, 0.28);
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 242, 227, 0.98));
            color: var(--dark);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
            box-shadow:
                0 14px 28px rgba(17, 17, 17, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.85);
            flex-shrink: 0;
            overflow: hidden;
            order: 3;
        }

        .mobile-menu-btn {
            order: 4;
        }

        .header-cart-link:hover,
        .header-wishlist-link:hover {
            transform: translateY(-2px) scale(1.02);
            border-color: rgba(201, 169, 98, 0.52);
            box-shadow:
                0 18px 32px rgba(201, 169, 98, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }

        .header-cart-link:focus-visible,
        .header-wishlist-link:focus-visible {
            outline: none;
            border-color: rgba(201, 169, 98, 0.7);
            box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.18), 0 14px 28px rgba(201, 169, 98, 0.2);
        }

        .header-cart-link:active,
        .header-wishlist-link:active {
            transform: translateY(1px) scale(0.97);
            box-shadow: 0 8px 18px rgba(17, 17, 17, 0.1);
        }

        .header-cart-link.is-current,
        .header-wishlist-link.is-current {
            background: linear-gradient(145deg, rgba(201, 169, 98, 0.22), rgba(255, 248, 232, 0.98));
            border-color: rgba(201, 169, 98, 0.54);
            color: #8b6822;
            box-shadow: 0 14px 30px rgba(201, 169, 98, 0.18);
        }

        .header-cart-link.is-current i,
        .header-wishlist-link.is-current i {
            transform: translateY(-1px);
        }

        .header-cart-link::before,
        .header-wishlist-link::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 48%, rgba(201, 169, 98, 0.1));
            opacity: 0.8;
            pointer-events: none;
        }

        .header-cart-link i,
        .header-wishlist-link i {
            font-size: 19px;
            position: relative;
            z-index: 1;
            color: #8f6d2c;
        }

        .header-cart-link.is-bump {
            animation: cartBadgeBump 0.55s ease;
        }

        .header-cart-count {
            min-width: 20px;
            height: 20px;
            padding: 0 5px;
            border-radius: 999px;
            background: #111;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            line-height: 20px;
            text-align: center;
            position: absolute;
            top: 6px;
            right: 6px;
            box-shadow: 0 8px 16px rgba(17, 17, 17, 0.18);
            opacity: 0;
            transform: scale(0.7);
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
            z-index: 2;
        }

        .header-cart-count.has-items {
            opacity: 1;
            transform: scale(1);
        }

        .header-wishlist-count {
            min-width: 20px;
            height: 20px;
            padding: 0 5px;
            border-radius: 999px;
            background: #111;
            color: #fff;
            font-size: 11px;
            font-weight: 800;
            line-height: 20px;
            text-align: center;
            position: absolute;
            top: 6px;
            right: 6px;
            box-shadow: 0 8px 16px rgba(17, 17, 17, 0.18);
            opacity: 0;
            transform: scale(0.7);
            transition: opacity 0.2s ease, transform 0.2s ease;
            pointer-events: none;
            z-index: 2;
        }

        .header-wishlist-count.has-items {
            opacity: 1;
            transform: scale(1);
        }

        @keyframes cartBadgeBump {
            0% { transform: rotate(0deg) scale(1); }
            18% { transform: rotate(-11deg) scale(1.03); }
            36% { transform: rotate(9deg) scale(1.05); }
            54% { transform: rotate(-7deg) scale(1.03); }
            72% { transform: rotate(5deg) scale(1.01); }
            100% { transform: rotate(0deg) scale(1); }
        }

        .hero-premium {
            position: relative;
            height: 84vh;
            min-height: 680px;
            width: 100%;
            overflow: hidden;
            background: #050505;
            color: #fff;
            isolation: isolate;
        }

        .hero-premium::after {
            content: '';
            position: absolute;
            inset: auto 0 0;
            height: 180px;
            background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.9));
            z-index: 2;
            pointer-events: none;
        }

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

        .p-slide {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            padding: 0 10%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 1.1s ease, visibility 1.1s ease;
        }

        .p-slide.active {
            opacity: 1;
            visibility: visible;
            z-index: 1;
        }

        .p-slide-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            transform: scale(1.08);
            transition: transform 7s linear;
            z-index: -2;
        }

        .p-slide-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(100deg, rgba(0, 0, 0, 0.8) 16%, rgba(0, 0, 0, 0.38) 56%, rgba(0, 0, 0, 0.6) 100%),
                radial-gradient(circle at 78% 26%, rgba(201, 169, 98, 0.24), transparent 22%);
        }

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

        .p-slide-content {
            position: relative;
            z-index: 3;
            max-width: 700px;
        }

        .p-subtitle {
            display: block;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 0.38em;
            font-size: 0.84rem;
            margin-bottom: 22px;
            transform: translateY(28px);
            opacity: 0;
            transition: transform 0.8s 0.24s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s 0.24s ease;
        }

        .p-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(3.5rem, 7vw, 5.8rem);
            line-height: 1.02;
            margin: 0 0 24px;
            transform: translateY(42px);
            opacity: 0;
            transition: transform 0.85s 0.38s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.85s 0.38s ease;
        }

        .p-title span {
            color: var(--primary);
            font-style: italic;
        }

        .p-desc {
            max-width: 640px;
            font-size: 1.12rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin: 0 0 34px;
            transform: translateY(28px);
            opacity: 0;
            transition: transform 0.8s 0.52s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s 0.52s ease;
        }

        .p-actions {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            transform: translateY(28px);
            opacity: 0;
            transition: transform 0.8s 0.66s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.8s 0.66s ease;
        }

        .p-slide.active .p-subtitle,
        .p-slide.active .p-title,
        .p-slide.active .p-desc,
        .p-slide.active .p-actions {
            transform: translateY(0);
            opacity: 1;
        }

        .p-btn-gold,
        .p-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
            padding: 17px 34px;
            border-radius: 6px;
            font-size: 0.96rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
        }

        .p-btn-gold {
            background: var(--primary);
            color: #111;
            box-shadow: 0 16px 34px rgba(201, 169, 98, 0.24);
        }

        .p-btn-gold:hover {
            transform: translateY(-3px);
            background: #dcc07a;
        }

        .p-btn-outline {
            border: 1px solid rgba(255, 255, 255, 0.7);
            color: #fff;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(8px);
        }

        .p-btn-outline:hover {
            transform: translateY(-3px);
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(255, 255, 255, 0.06);
        }

        .p-slider-nav {
            position: absolute;
            right: 10%;
            bottom: 54px;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 22px;
            color: #fff;
        }

        .nav-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.06);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background-color 0.3s ease;
            backdrop-filter: blur(8px);
        }

        .nav-arrow:hover {
            transform: translateY(-2px);
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(255, 255, 255, 0.12);
        }

        .nav-count {
            min-width: 94px;
            text-align: center;
            letter-spacing: 0.24em;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.78);
        }

        .p-progress-bar {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 4px;
            background: rgba(255, 255, 255, 0.08);
            z-index: 4;
        }

        .p-progress-fill {
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, var(--primary), #e5c77d);
        }

        @media (max-width: 980px) {
            .hero-premium {
                height: 78vh;
                min-height: 620px;
            }

            .p-slide {
                padding: 0 8%;
            }

            .p-title {
                font-size: clamp(3.1rem, 8vw, 4.6rem);
            }

            .p-desc {
                font-size: 1rem;
                max-width: 560px;
            }
        }

        @media (max-width: 768px) {
            .hero-premium {
                height: 74svh;
                min-height: 560px;
            }

            .p-slide {
                padding: 118px 6% 124px;
                align-items: flex-end;
            }

            .p-subtitle {
                font-size: 0.72rem;
                letter-spacing: 0.28em;
                margin-bottom: 16px;
            }

            .p-title {
                font-size: clamp(2.6rem, 12vw, 4rem);
                margin-bottom: 18px;
            }

            .p-desc {
                font-size: 0.96rem;
                line-height: 1.7;
                margin-bottom: 24px;
            }

            .p-actions {
                width: 100%;
                flex-direction: column;
                gap: 14px;
            }

            .p-btn-gold,
            .p-btn-outline {
                width: 100%;
                min-width: 0;
                padding: 15px 24px;
            }

            .p-slider-nav {
                right: 6%;
                left: 6%;
                bottom: 38px;
                justify-content: space-between;
                gap: 12px;
            }

            .nav-arrow {
                width: 44px;
                height: 44px;
            }

            .nav-count {
                min-width: auto;
                font-size: 0.8rem;
                letter-spacing: 0.18em;
            }
        }

        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
            perspective: 1600px;
        }

        .hero-slider {
            display: flex;
            height: 100%;
            transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            padding: 0 8%;
        }

        .hero-slide:nth-child(1) { background: linear-gradient(135deg, #F9F7F2 0%, #EDE8DD 100%); }
        .hero-slide:nth-child(2) { background: linear-gradient(135deg, #1f1f1f 0%, #111 100%); }
        .hero-slide:nth-child(3) { background: linear-gradient(135deg, #e8e2d5 0%, #d8d0bd 100%); }

        .hero-content {
            max-width: 640px;
            z-index: 10;
            transform: translate3d(0, var(--hero-content-y, 0px), 0);
            transition: transform 0.12s linear;
        }

        .hero-tag {
            display: inline-block;
            padding: 9px 24px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-size: 13.5px;
            font-weight: 600;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease forwards;
        }

        .hero-title {
            font-size: 68px;
            font-weight: 900;
            line-height: 1.15;
            margin-bottom: 24px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-title span { color: var(--primary); }

        .hero-desc {
            font-size: 18.5px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 48px;
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            gap: 24px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .btn-primary, .btn-secondary {
            padding: 18px 44px;
            border-radius: 50px;
            font-size: 15.5px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.35s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }

        .btn-primary {
            background: var(--dark);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(201,169,98,0.35);
        }

        .btn-secondary {
            background: transparent;
            color: var(--dark);
            border: 2.5px solid var(--dark);
        }

        .btn-secondary:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-4px);
        }

        .hero-image {
            position: absolute;
            right: 6%;
            top: 50%;
            transform: translate3d(0, calc(-50% + var(--hero-image-y, 0px)), 0) rotateY(var(--hero-image-rot, 0deg));
            width: 520px;
            height: 640px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow);
            animation: fadeInRight 1.2s ease 0.4s forwards;
            opacity: 0;
            transform-style: preserve-3d;
            transition: transform 0.12s linear;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .hero-slide:hover .hero-image img { transform: scale(1.06); }

        .slider-dots {
            position: absolute;
            bottom: 48px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 18px;
            z-index: 100;
        }

        .slider-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(0,0,0,0.25);
            cursor: pointer;
            transition: all 0.4s;
        }

        .slider-dot.active {
            background: var(--primary);
            transform: scale(1.3);
        }

        .features, .why-us {
            padding: 100px 8%;
            background: white;
        }

        .features-grid, .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }

        .feature-card, .why-card {
            text-align: center;
            padding: 48px 24px;
            border-radius: 24px;
            background: var(--light);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .feature-card:hover, .why-card:hover {
            transform: translate3d(0, calc(var(--depth-y, 0px) - 12px), 0) rotateX(0deg);
            box-shadow: var(--shadow);
        }

        .feature-icon, .why-icon {
            width: 88px;
            height: 88px;
            margin: 0 auto 24px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: white;
        }

        .products {
            padding: 120px 8%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .section-tag {
            color: var(--primary);
            font-size: 15px;
            font-weight: 700;
            letter-spacing: 2.5px;
            margin-bottom: 16px;
            display: block;
        }

        .section-title {
            font-size: 52px;
            font-weight: 900;
            margin-bottom: 24px;
        }

        .section-desc {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .products-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 60px;
        }

        .filter-btn {
            padding: 13px 32px;
            background: transparent;
            border: 2.5px solid var(--dark);
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.35s;
        }

        .filter-btn.active, .filter-btn:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-2px);
        }

        .products-grid {
            display: grid;
            width: min(1440px, 92%);
            margin: 0 auto;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }

        .product-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(0,0,0,0.05);
            transition: transform 0.35s ease, box-shadow 0.45s ease;
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .product-card:hover {
            transform: translate3d(0, calc(var(--depth-y, 0px) - 18px), 0) scale(1.02);
            box-shadow: 0 24px 60px rgba(0,0,0,0.16);
        }

        .product-image {
            height: 290px;
            position: relative;
            overflow: hidden;
        }

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

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

        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 8px 16px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
        }

        .product-actions {
            position: absolute;
            bottom: -70px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            transition: bottom 0.4s ease;
        }

        .product-card:hover .product-actions {
            bottom: 24px;
        }

        .product-action {
            width: 46px;
            height: 46px;
            background: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--dark);
            transition: all 0.3s;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }

        .product-action:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        .product-action.is-favorite {
            background: #f6e6e6;
            color: #b64646;
        }

        .product-action.is-added {
            background: #e6f2ea;
            color: #2f6b3f;
        }

        @media (hover: none) {
            .product-actions {
                bottom: 24px;
            }
        }

        .product-info {
            padding: 22px;
        }

        .product-category {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 10px;
            display: block;
        }

        .product-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        .price small {
            font-size: 14px;
            color: var(--gray);
        }

        .product-rating {
            color: #f4c430;
            font-size: 14px;
        }

        body.modal-open {
            overflow: hidden;
            perspective: none !important;
            transform-style: flat !important;
        }

        .action-toast {
            position: fixed;
            right: 88px;
            bottom: 88px;
            z-index: 12000;
            display: grid;
            gap: 4px;
            max-width: min(340px, calc(100vw - 44px));
            padding: 14px 16px;
            border-radius: 18px;
            background: rgba(18, 18, 18, 0.96);
            color: #fff;
            box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
            border: 1px solid rgba(201, 169, 98, 0.26);
            transform: translateY(18px);
            opacity: 0;
            pointer-events: none;
            transition: transform 0.24s ease, opacity 0.24s ease;
        }

        .action-toast.is-visible {
            transform: translateY(0);
            opacity: 1;
        }

        .action-toast::before {
            content: 'Update';
            display: inline-flex;
            width: fit-content;
            padding: 4px 8px;
            margin-bottom: 2px;
            border-radius: 999px;
            background: rgba(201, 169, 98, 0.16);
            color: var(--primary);
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .action-toast.is-error {
            border-color: rgba(255, 111, 111, 0.28);
        }

        .action-toast.is-error::before {
            content: 'Required';
            background: rgba(255, 111, 111, 0.16);
            color: #ff9e9e;
        }

        .quick-view-modal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
            place-items: center;
            padding: 24px;
            background: rgba(10, 10, 10, 0.6);
            isolation: isolate;
        }

        .quick-view-modal.is-open {
            display: grid;
        }

        .quick-view-content {
            width: min(900px, 100%);
            background: #fff;
            border-radius: 24px;
            padding: 28px;
            position: relative;
            transform: none !important;
            z-index: 2;
            max-height: calc(100vh - 48px);
            overflow: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
            box-sizing: border-box;
        }

        .quick-view-backdrop {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .quick-view-modal {
                padding: 16px;
            }

            .quick-view-content {
                width: calc(100vw - 32px);
                max-height: calc(100vh - 32px);
            }
        }

        .saved-panel {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
            align-items: stretch;
            justify-content: flex-end;
            background: rgba(10, 10, 10, 0.45);
        }

        .saved-panel.is-open {
            display: flex;
        }

        .saved-panel-backdrop {
            position: absolute;
            inset: 0;
        }

        .saved-panel-content {
            position: relative;
            z-index: 1;
            width: min(420px, 100%);
            height: 100%;
            background: #f8f5ef;
            color: var(--dark);
            border-left: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow: -18px 0 48px rgba(0, 0, 0, 0.2);
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .saved-panel-close {
            position: absolute;
            top: 14px;
            right: 16px;
            border: none;
            background: transparent;
            font-size: 32px;
            line-height: 1;
            color: var(--gray);
            cursor: pointer;
        }

        .saved-panel-head {
            padding-right: 34px;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
        }

        .saved-panel-kicker {
            display: block;
            margin-bottom: 6px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--primary);
        }

        .saved-panel-head h3 {
            font-size: 28px;
            font-weight: 800;
        }

        .saved-panel-count {
            background: rgba(201, 169, 98, 0.14);
            color: var(--primary-dark);
            border-radius: 999px;
            padding: 8px 12px;
            font-size: 13px;
            font-weight: 700;
            white-space: nowrap;
        }

        .saved-panel-body {
            flex: 1;
            overflow: auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding-right: 4px;
        }

        .saved-panel-empty {
            margin-top: 28px;
            padding: 24px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.72);
            color: var(--gray);
            line-height: 1.7;
        }

        .saved-item {
            display: grid;
            grid-template-columns: 86px 1fr;
            gap: 14px;
            padding: 14px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.82);
            box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
        }

        .saved-item img {
            width: 86px;
            height: 86px;
            object-fit: cover;
            border-radius: 16px;
        }

        .saved-item h4 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .saved-item-meta {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
        }

        .saved-item-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 12px;
        }

        .saved-item-actions .btn-primary,
        .saved-item-actions .btn-secondary {
            padding: 10px 14px;
            font-size: 13px;
        }

        .saved-panel-summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 8px;
            border-top: 1px solid rgba(0, 0, 0, 0.08);
            font-size: 16px;
        }

        .saved-panel-summary strong {
            font-size: 20px;
            color: var(--primary-dark);
        }

        .saved-panel-foot {
            display: flex;
            gap: 12px;
            margin-top: auto;
        }

        .saved-panel-foot .btn-primary,
        .saved-panel-foot .btn-secondary {
            flex: 1;
        }

        .quick-view-close {
            position: absolute;
            top: 10px;
            right: 16px;
            border: none;
            background: transparent;
            font-size: 34px;
            line-height: 1;
            color: #6f6f6f;
            cursor: pointer;
        }

        .quick-view-body {
            display: grid;
            grid-template-columns: minmax(260px, 1fr) 1.1fr;
            gap: 24px;
            align-items: center;
        }

        .quick-view-body img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: 18px;
        }

        .quick-view-category {
            display: inline-block;
            margin-bottom: 10px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
        }

        .quick-view-info h3 {
            font-size: 30px;
            margin-bottom: 14px;
        }

        .quick-view-info p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .quick-view-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .quick-view-price {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
        }

        .categories {
            padding: 120px 8%;
            background: var(--dark);
            color: white;
        }

        .categories .section-tag,
        .categories .section-title {
            color: white;
        }

        .categories .section-desc {
            color: rgba(255,255,255,0.7);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .category-card {
            position: relative;
            height: 420px;
            border-radius: 24px;
            overflow: hidden;
            cursor: pointer;
        }

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

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

        .category-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 40%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 36px;
        }

        .category-name {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .category-count {
            color: var(--primary);
            font-size: 15px;
            font-weight: 500;
        }

        .about {
            padding: 120px 8%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-image {
            position: relative;
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .about-image img {
            width: 100%;
            border-radius: 24px;
            box-shadow: var(--shadow);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -24px;
            right: -24px;
            width: 100%;
            height: 100%;
            border: 4px solid var(--primary);
            border-radius: 24px;
            z-index: -1;
        }

        .about-content .section-tag {
            text-align: right;
        }

        .about-content .section-title {
            text-align: right;
            font-size: 46px;
        }

        .about-content {
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .about-features {
            list-style: none;
            margin: 32px 0;
        }

        .about-features li {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            font-size: 17px;
        }

        .about-features li i {
            width: 36px;
            height: 36px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .about-btn {
            padding: 18px 48px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s;
            display: inline-block;
            text-decoration: none;
        }

        .about-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(201,169,98,0.35);
        }

        .testimonials {
            padding: 120px 8%;
            background: var(--light);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 36px;
            margin-top: 60px;
        }

        .testimonial-card {
            background: white;
            padding: 48px 36px;
            border-radius: 24px;
            position: relative;
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 24px;
            right: 36px;
            font-size: 100px;
            color: var(--primary);
            opacity: 0.15;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 17px;
            line-height: 1.9;
            color: var(--gray);
            margin-bottom: 32px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
        }

        .author-info h4 {
            font-size: 20px;
            margin-bottom: 6px;
        }

        .author-info span {
            color: var(--primary);
            font-size: 15px;
        }

        .cta {
            padding: 120px 8%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            text-align: center;
            color: white;
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .cta-title {
            font-size: 54px;
            font-weight: 900;
            margin-bottom: 24px;
        }

        .cta-desc {
            font-size: 19px;
            opacity: 0.9;
            max-width: 720px;
            margin: 0 auto 48px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 24px;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 18px 48px;
            border-radius: 50px;
            font-size: 16.5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.35s;
            text-decoration: none;
        }

        .cta-btn.light {
            background: white;
            color: var(--primary);
        }

        .cta-btn.light:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.2);
        }

        .cta-btn.outline {
            background: transparent;
            color: white;
            border: 3px solid white;
        }

        .cta-btn.outline:hover {
            background: white;
            color: var(--primary);
        }


        .contact {
            padding: 110px 8%;
            background: #fff;
        }

        .contact-grid {
            margin-top: 48px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 28px;
        }

        .contact-card,
        .contact-form {
            background: var(--light);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            transform: translate3d(0, var(--depth-y, 0px), 0) rotateX(var(--depth-rot, 0deg));
            transform-style: preserve-3d;
            will-change: transform;
        }

        .contact-card h3 {
            font-size: 26px;
            margin-bottom: 18px;
        }

        .contact-card p {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
            color: var(--gray);
            font-size: 16px;
        }

        .contact-card i {
            color: var(--primary);
            width: 18px;
        }

        .contact-form {
            display: grid;
            gap: 12px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            border: 1px solid rgba(0,0,0,0.12);
            background: #fff;
            border-radius: 12px;
            padding: 14px 15px;
            font-size: 15px;
            color: var(--dark);
            outline: none;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(201,169,98,0.18);
        }

        .contact-form .btn-primary {
            justify-content: center;
            border: none;
        }

        .contact-status {
            min-height: 22px;
            margin: 4px 0 0;
            font-size: 14px;
            color: var(--gray);
        }

        .contact-status.is-success {
            color: #2f6b3f;
        }

        .contact-status.is-error {
            color: #b64646;
        }

        .contact-success-modal {
            position: fixed;
            inset: 0;
            z-index: 10000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
            background: rgba(10, 10, 10, 0.58);
        }

        .contact-success-modal.is-open {
            display: flex;
        }

        .contact-success-content {
            width: min(520px, 100%);
            background: #fff;
            border-radius: 24px;
            padding: 30px;
            text-align: center;
            position: relative;
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
        }

        .contact-success-close {
            position: absolute;
            top: 10px;
            right: 16px;
            border: none;
            background: transparent;
            font-size: 34px;
            line-height: 1;
            color: #777;
            cursor: pointer;
        }

        .contact-success-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            margin: 0 auto 16px;
            background: rgba(201, 169, 98, 0.12);
            color: var(--primary);
            font-size: 30px;
        }

        .contact-success-content h3 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .contact-success-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 22px;
        }
        footer {
            background: var(--dark);
            padding: 100px 8% 40px;
            color: white;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

        .footer-brand .logo {
            color: white;
            margin-bottom: 24px;
            font-size: 32px;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.65);
            line-height: 1.9;
            margin-bottom: 32px;
        }

        .footer-social {
            display: flex;
            gap: 18px;
        }

        .footer-social a {
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.12);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            transition: all 0.35s;
        }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-4px);
        }

        .footer-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 28px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.65);
            text-decoration: none;
            font-size: 15.5px;
            transition: color 0.3s;
            display: block;
            margin-bottom: 16px;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 16px;
            color: rgba(255,255,255,0.65);
            margin-bottom: 20px;
            font-size: 15.5px;
        }

        .footer-contact i {
            color: var(--primary);
            width: 24px;
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.12);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 24px;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.55);
            font-size: 14.5px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 36px;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            font-size: 14.5px;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            color: var(--dark);
            cursor: pointer;
            position: relative;
            z-index: 1205;
            pointer-events: auto;
        }

        .highlight-section {
    animation: highlight 2s ease;
}


@keyframes highlight {
    0% { background: rgba(201, 169, 98, 0.08); }
    50% { background: rgba(201, 169, 98, 0.15); }
    100% { background: transparent; }
}

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInRight {
            from { opacity: 0; transform: translate(60px, -50%); }
            to   { opacity: 1; transform: translate(0, -50%); }
        }

        @media (prefers-reduced-motion: reduce) {
            body::before,
            body::after {
                transform: none;
            }

            .hero-content,
            .hero-image,
            .feature-card,
            .why-card,
            .section-header,
            .product-card,
            .about-image,
            .about-content,
            .testimonial-card,
            .cta,
            .contact-card,
            .contact-form {
                transform: none !important;
            }
        }

        @media (max-width: 1200px) {
            .hero-title { font-size: 56px; }
            .hero-image { width: 440px; height: 560px; right: 4%; }
            .about { grid-template-columns: 1fr; gap: 60px; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .hero-title { font-size: 48px; }
            .section-title { font-size: 44px; }
        }

        @media (max-width: 768px) {
            #main-header {
                padding: 18px 0;
            }

            #main-header.scrolled {
                padding: 12px 0;
            }

            #main-header .nav-container {
                padding: 0 20px;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: calc(100% + 14px);
                left: 5%;
                right: 5%;
                flex-direction: column;
                gap: 0;
                padding: 14px;
                border-radius: 22px;
                background: rgba(255, 255, 255, 0.98);
                box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
                z-index: 1200;
            }

            header.menu-open .nav-links {
                display: flex;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 14px 12px;
                border-radius: 14px;
            }

            .nav-links a:hover::after {
                width: 0;
            }

            .header-btn { display: none; }
            #main-header .header-actions {
                gap: 18px;
            }

            #main-header .action-item i {
                font-size: 18px;
            }

            #main-header .action-badge {
                width: 17px;
                height: 17px;
                font-size: 9px;
                top: -6px;
                right: -8px;
            }

            .header-cart-link {
                width: 50px;
                height: 46px;
                border-radius: 16px;
                margin-right: 8px;
            }

            .header-wishlist-link {
                width: 50px;
                height: 46px;
                border-radius: 16px;
                margin-left: auto;
                margin-right: 8px;
            }

            .header-cart-link i,
            .header-wishlist-link i {
                font-size: 16px;
            }

            .header-cart-count {
                min-width: 18px;
                height: 18px;
                font-size: 10px;
                line-height: 18px;
                top: 4px;
                right: 4px;
            }

            .header-wishlist-count {
                min-width: 18px;
                height: 18px;
                font-size: 10px;
                line-height: 18px;
                top: 4px;
                right: 4px;
            }
            .mobile-menu-btn { display: block; }
            .hero {
                height: 640px;
                padding-top: 74px;
            }
            .hero-slide {
                padding: 0 6% 78px;
            }
            .hero-content {
                max-width: 100%;
            }
            .hero-tag {
                padding: 8px 18px;
                font-size: 12px;
                margin-bottom: 18px;
            }
            .hero-title {
                font-size: 40px;
                line-height: 1.16;
                margin-bottom: 18px;
            }
            .hero-desc {
                font-size: 16px;
                line-height: 1.65;
                margin-bottom: 28px;
            }
            .hero-image { display: none; }
            .hero-buttons { flex-direction: column; gap: 20px; }
            .hero-buttons .btn-primary,
            .hero-buttons .btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 15px 24px;
                font-size: 14px;
            }
            .slider-dots {
                bottom: 22px;
                gap: 10px;
            }
            .slider-dot {
                width: 10px;
                height: 10px;
            }
            .section-header {
                margin-bottom: 42px;
            }
            .section-title {
                font-size: 34px;
                margin-bottom: 16px;
            }
            .section-desc {
                font-size: 15px;
                line-height: 1.7;
            }
            .products,
            .why-us,
            .about,
            .testimonials,
            .contact,
            .cta,
            .features {
                padding-left: 5%;
                padding-right: 5%;
            }
            .products {
                padding-top: 88px;
                padding-bottom: 88px;
            }
            .products-filter {
                gap: 10px;
                margin-bottom: 34px;
            }
            .filter-btn {
                padding: 9px 14px;
                font-size: 12px;
                border-width: 2px;
            }
            .features-grid,
            .categories-grid,
            .contact-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .why-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
            }
            .why-card {
                padding: 24px 14px;
                border-radius: 18px;
            }
            .why-icon {
                width: 58px;
                height: 58px;
                margin-bottom: 16px;
                font-size: 22px;
            }
            .why-card h3 {
                font-size: 16px;
                line-height: 1.35;
                margin-bottom: 8px;
            }
            .why-card p {
                font-size: 13px;
                line-height: 1.6;
            }
            .products-grid {
                width: 100%;
                padding-inline: 14px;
                box-sizing: border-box;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 14px;
                align-items: start;
            }
            .product-card {
                border-radius: 18px;
            }
            .product-image {
                height: 180px;
            }
            .product-badge {
                top: 12px;
                right: 12px;
                padding: 6px 10px;
                font-size: 11px;
            }
            .product-actions,
            .product-card:hover .product-actions {
                bottom: 14px;
                gap: 8px;
            }
            .product-action {
                width: 38px;
                height: 38px;
                font-size: 14px;
            }
            .product-info {
                padding: 16px 14px 18px;
            }
            .product-category {
                font-size: 11px;
                margin-bottom: 6px;
            }
            .product-name {
                font-size: 16px;
                margin-bottom: 8px;
                line-height: 1.35;
            }
            .product-info p {
                font-size: 12.5px;
                line-height: 1.55;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                overflow: hidden;
            }
            .price {
                font-size: 17px;
            }
            .price small,
            .product-rating {
                font-size: 11px;
            }
            .explore-card {
                grid-column: 1 / -1;
                min-height: 280px !important;
            }
            .explore-card > div {
                padding: 30px !important;
            }
            .explore-card .product-name {
                font-size: 26px !important;
            }
            .explore-card p {
                font-size: 15px !important;
                margin-bottom: 22px !important;
            }
            .explore-card .btn-primary {
                padding: 14px 28px !important;
                font-size: 15px !important;
            }
            .about {
                grid-template-columns: 1fr;
                gap: 34px;
                padding-top: 88px;
                padding-bottom: 88px;
            }
            .about-image img {
                max-height: 320px;
                object-fit: cover;
            }
            .about-image::before {
                display: none;
            }
            .about-content .section-tag,
            .about-content .section-title {
                text-align: left;
            }
            .about-content .section-title {
                font-size: 34px;
            }
            .about-features {
                margin: 24px 0;
            }
            .about-features li {
                gap: 12px;
                margin-bottom: 14px;
                font-size: 14px;
                line-height: 1.55;
                align-items: flex-start;
            }
            .about-features li i {
                width: 28px;
                height: 28px;
                font-size: 12px;
                flex-shrink: 0;
            }
            .about-btn {
                padding: 14px 28px;
                font-size: 14px;
            }
            .testimonials {
                padding-top: 88px;
                padding-bottom: 88px;
            }
            .testimonials-grid {
                gap: 16px;
                margin-top: 34px;
            }
            .testimonial-card {
                padding: 26px 18px;
                border-radius: 18px;
            }
            .testimonial-card::before {
                top: 12px;
                right: 16px;
                font-size: 60px;
            }
            .testimonial-text {
                font-size: 14px;
                line-height: 1.75;
                margin-bottom: 20px;
            }
            .testimonial-author {
                gap: 12px;
            }
            .author-avatar {
                width: 52px;
                height: 52px;
            }
            .author-info h4 {
                font-size: 16px;
            }
            .author-info span {
                font-size: 13px;
            }
            .quick-view-content {
                padding: 18px;
            }
            .quick-view-body {
                grid-template-columns: 1fr;
            }
            .quick-view-body img {
                height: 240px;
            }
            .quick-view-info h3 {
                font-size: 24px;
            }
            .quick-view-footer {
                flex-direction: column;
                align-items: flex-start;
            }
            .saved-panel-content {
                width: 100%;
                border-left: none;
                padding: 22px 18px;
            }
            .saved-item {
                grid-template-columns: 72px 1fr;
            }
            .saved-item img {
                width: 72px;
                height: 72px;
            }
            .saved-panel-head h3 {
                font-size: 24px;
            }
            .contact-success-content {
                padding: 22px;
            }
            .contact-success-content h3 {
                font-size: 24px;
            }
            .footer-grid { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; text-align: center; }
        }

        @media (max-width: 560px) {
            .hero {
                height: 560px;
            }
            .hero-slide {
                padding: 0 5% 70px;
            }
            .hero-title {
                font-size: 32px;
            }
            .hero-desc {
                font-size: 14px;
                margin-bottom: 22px;
            }
            .slider-dots {
                bottom: 18px;
            }
            .products-grid {
                width: 100%;
                padding-inline: 12px;
                box-sizing: border-box;
                gap: 12px;
            }
            .product-image {
                height: 150px;
            }
            .product-info {
                padding: 14px 12px 16px;
            }
            .product-name {
                font-size: 14px;
            }
            .product-info p {
                font-size: 11.5px;
            }
            .price {
                font-size: 15px;
            }
            .why-card {
                padding: 20px 12px;
            }
            .why-card h3 {
                font-size: 14px;
            }
            .why-card p {
                font-size: 12px;
            }
            .about-content .section-title,
            .section-title {
                font-size: 30px;
            }
            .testimonial-card {
                padding: 22px 16px;
            }
        }

