        :root {
            --bg-color: #0a0a0a;
            --text-color: #e0e0e0;
            --primary-color: #1a1a1a;
            --secondary-color: #2a2a2a;
            --accent-color: #d4af37;
            --font-primary: 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
            --font-secondary: 'Georgia', 'Times New Roman', serif;
            --cursor-x: 50vw;
            --cursor-y: 50vh;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
            cursor: none;
            position: relative;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--cursor-x) var(--cursor-y), rgba(212, 175, 55, 0.06), transparent 40%);
            pointer-events: none;
            z-index: -1;
            transition: background 0.2s ease-out;
        }

        .noise-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAMAAAAp4XiDAAAAUVBMVEWFhYWDg4N3d3dtbW17e3t1dXVoaGhvb29ra2uCgoN+fn5ubm5gYGBjY2NtbW1paWlnZ2dje3t7e3uEhISLi4uBgYGCgoKCgoKOjo6ZmZmRkZGTk5OTk5MLr9fEAAAAI3RSTlMAr3/A3U/n7/b1dwEE8./g09fYz8/Hzc3Lq6urpy0tLCwqa+a3AAAAyklEQVRIx+3VSRLDMAwE0QghxA9r9v//M4sSBe9UCd01Guc2ksqO1e0gXgY+VvI/1d3h5SVuDvIirwIC0G1vCj2ekH13G9GCAzPkfAUhCme2E20k1qgAgK0BwK4UspwAASwA01eL21/s5Y/AoA0N527xQ/0M7V8wQE4B4jOQ/Axg8w3gB4Hgv4jAHyF+Z+A/xIACsBfAuwXQMgAPgngA4BfAIYVEJgZeCPAiIimzYxUWcM3BVTmDlwZwB8B+ABwXgA8FpAVQJgQYBVAVwI8DvAHwOsAs4IqIs4IqIdAC/iCiDfgA4As5kAAAAASUVORK5CYII=');
            opacity: 0.04;
            pointer-events: none;
            z-index: 9998;
        }

        .cursor-dot, .cursor-outline {
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
            mix-blend-mode: difference;
        }

        .cursor-dot {
            width: 8px;
            height: 8px;
            background-color: #fff;
        }

        .cursor-outline {
            width: 40px;
            height: 40px;
            border: 1px solid #fff;
            transition: transform 0.2s ease-out, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        }

        .cursor-outline.hover-grow {
            width: 70px;
            height: 70px;
            border-color: var(--accent-color);
            transform: translate(-50%, -50%) scale(1.2);
        }
        
        @media (pointer: coarse) {
            .cursor-dot, .cursor-outline, .noise-overlay {
                display: none;
            }
            body {
                cursor: auto;
            }
        }

        h1, h2, h3, h4 {
            font-family: var(--font-secondary);
            font-weight: 300;
            line-height: 1.2;
        }

        h1 { font-size: 5rem; letter-spacing: -2px; }
        h2 { font-size: 3rem; }
        h3 { font-size: 1.8rem; }
        p { line-height: 1.6; font-size: 1rem; color: #b0b0b0; }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 120px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            opacity: 0;
        }
        .section-title h2 {
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .section-title .divider {
            width: 80px;
            height: 2px;
            background-color: var(--accent-color);
            margin: 0 auto;
            transform: scaleX(0);
            transform-origin: center;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 30px;
            font-size: 1rem;
            text-decoration: none;
            color: var(--bg-color);
            background-color: var(--accent-color);
            border: 2px solid var(--accent-color);
            border-radius: 50px;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }
        .btn:hover {
            background-color: transparent;
            color: var(--accent-color);
        }

        .reveal-up {
            opacity: 0;
        }
        
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 5%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
            transition: background-color 0.5s ease;
        }
        
        header.scrolled {
            background-color: rgba(10, 10, 10, 0.8);
            backdrop-filter: blur(10px);
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--text-color);
            text-decoration: none;
            letter-spacing: -1px;
        }
        .logo span { color: var(--accent-color); }
        
        nav a {
            color: var(--text-color);
            text-decoration: none;
            margin-left: 30px;
            position: relative;
            padding-bottom: 5px;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 1px;
            background-color: var(--accent-color);
            transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        }
        nav a:hover::after {
            width: 100%;
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
            padding: 0 5%;
        }
        
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1542291026-7eec264c27ff?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            z-index: -2;
            transform: scale(1.1);
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: -1;
        }

        .hero-content {
            z-index: 1;
        }
        .hero-content h1 {
            color: #fff;
            margin-bottom: 20px;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        .hero-content h1 .char {
            display: inline-block;
            transform: translateY(115%);
        }
        .hero-content p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 30px;
            color: var(--text-color);
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .collection-card {
            position: relative;
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
            background-color: var(--primary-color);
        }
        .collection-card .card-bg {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .collection-card:hover .card-bg {
            transform: scale(1.05);
        }
        .collection-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 50%);
        }
        .collection-card-content {
            position: absolute;
            bottom: 30px;
            left: 30px;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        }
        .collection-card:hover .collection-card-content {
             transform: translateY(0);
             opacity: 1;
        }
        .collection-card-content h3 {
            color: #fff;
            margin-bottom: 10px;
        }
        .collection-card-content a {
            color: var(--accent-color);
            text-decoration: none;
            font-weight: bold;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .product-card {
            background-color: var(--primary-color);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            transform-style: preserve-3d;
            perspective: 1500px;
        }
        .product-image-wrapper {
            background-color: var(--secondary-color);
            border-radius: 10px;
            margin-bottom: 20px;
            padding: 20px;
            transform: translateZ(40px);
        }
        .product-card img {
            max-width: 100%;
            height: auto;
            transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
            filter: drop-shadow(0 15px 20px rgba(0,0,0,0.4));
        }
        .product-card:hover img {
            transform: scale(1.15) rotate(-8deg) translateZ(60px);
        }
        .product-info h3 { font-size: 1.5rem; margin-bottom: 10px; transform: translateZ(20px);}
        .product-info .price { font-size: 1.2rem; color: var(--accent-color); font-weight: bold; transform: translateZ(20px);}

        .about-section {
            background-color: var(--primary-color);
        }
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .about-image {
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
        }
        .about-image img {
            width: 100%;
            height: 120%;
            object-fit: cover;
            transform: translateY(-20%);
        }
        .about-text h2 { margin-bottom: 20px; }
        .about-text p { margin-bottom: 20px; }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .testimonial-card {
            background-color: var(--secondary-color);
            padding: 30px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-color);
        }
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-color);
        }
        .testimonial-author {
            font-weight: bold;
            color: var(--accent-color);
        }
        .stars {
            color: var(--accent-color);
            margin-bottom: 15px;
            letter-spacing: 2px;
        }
        .stars span {
            display: inline-block;
            opacity: 0;
        }
        
        .cta-section {
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-bg {
            position: absolute;
            top: -10%; left: -10%;
            width: 120%; height: 120%;
            background: url('https://images.unsplash.com/photo-1595950653106-6c9ebd614d3a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1587&q=80') no-repeat center center/cover;
            z-index: -2;
        }
        .cta-section::after {
            content: '';
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: -1;
        }
        .cta-section h2 {
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 30px;
        }

        footer {
            background-color: var(--primary-color);
            text-align: center;
            padding: 50px 0;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--text-color);
            text-decoration: none;
            letter-spacing: -1px;
            margin-bottom: 20px;
            display: inline-block;
        }
        .footer-logo span { color: var(--accent-color); }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
        }
        .social-links a {
            color: var(--text-color);
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-links a:hover {
            color: var(--accent-color);
        }
        .copyright {
            margin-top: 20px;
            color: #888;
            font-size: 0.9rem;
        }

        @media (max-width: 992px) {
            h1 { font-size: 4rem; }
            h2 { font-size: 2.5rem; }
            .about-content { grid-template-columns: 1fr; }
            .about-image { height: 400px; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2rem; }
            .container { padding: 80px 0; }
            nav { display: none; }
            .product-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2.5rem; }
            .hero-content p { font-size: 1rem; }
            .collections-grid, .product-grid, .testimonials-grid { grid-template-columns: 1fr; }
            .cta-section h2 { font-size: 2.5rem; }
        }