:root {
            --gold: #D4AF37;
            --dark-green: #0a1a1a;
            --off-white: #f3f3f3;
            --dark-bg: #050808;
            --shadow-color: rgba(0, 0, 0, 0.7);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark-bg);
            color: var(--off-white);
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05), transparent 30%),
                              radial-gradient(circle at 80% 70%, rgba(10, 26, 26, 0.5), transparent 40%);
            min-height: 100vh;
        }
        #main-wrapper {
            perspective: 1000px;
            width: 100%;
            height: 100%;
            position: relative;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }
        .logo {
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2rem;
            color: var(--gold);
            font-weight: 700;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        nav a {
            color: var(--off-white);
            text-decoration: none;
            margin-left: 2.5rem;
            font-weight: 300;
            position: relative;
            transition: color 0.3s ease;
        }
        nav a:hover {
            color: var(--gold);
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 1px;
            background: var(--gold);
            bottom: -5px;
            left: 0;
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }
        nav a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }
        #landing-page {
            height: 100vh;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }
        .hero-text {
            position: relative;
            z-index: 10;
        }
        .main-title {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(3rem, 7vw, 7rem);
            font-weight: 600;
            line-height: 1.1;
            color: var(--off-white);
        }
        .main-title .line {
            display: block;
            overflow: hidden;
        }
        .main-title .line-inner {
            display: block;
        }
        .main-title .line:nth-child(2) {
            color: var(--gold);
            padding-left: 4vw;
        }
        .subtitle {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            font-weight: 300;
            max-width: 450px;
            margin: 2rem 0;
            line-height: 1.7;
        }
        .cta-button {
            font-family: 'Poppins', sans-serif;
            background: var(--gold);
            color: var(--dark-bg);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
        }
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
        }
        .hero-3d-container {
            position: relative;
            height: 100%;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transform-style: preserve-3d;
        }
        .hero-product-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            transform: translateZ(60px) rotateY(20deg);
            filter: drop-shadow(0 30px 20px var(--shadow-color));
            z-index: 5;
            transition: filter 0.3s ease;
        }
        .hero-3d-container:hover .hero-product-image {
            filter: drop-shadow(0 50px 30px var(--shadow-color));
        }
        .bg-element {
            position: absolute;
            background: var(--dark-green);
            border-radius: 50%;
            filter: blur(20px);
        }
        .bg-element.one {
            width: 40vw;
            height: 40vw;
            max-width: 500px;
            max-height: 500px;
            transform: translateZ(-150px);
            background: radial-gradient(circle, var(--dark-green) 0%, transparent 70%);
        }
        .floating-leaf {
            position: absolute;
            width: 150px;
            height: auto;
            opacity: 0.3;
            filter: blur(2px);
        }
        #leaf1 {
            top: 20%;
            left: 10%;
            transform: translateZ(-80px) rotate(-20deg);
        }
        #leaf2 {
            bottom: 15%;
            right: 5%;
            width: 120px;
            transform: translateZ(40px) rotate(30deg) scaleX(-1);
        }
        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            letter-spacing: 3px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 300;
        }
        #collection-section {
            padding: 10rem 5%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
        }
        .section-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .section-title .highlight {
            font-family: 'Cinzel Decorative', cursive;
            color: var(--gold);
        }
        .section-subtitle {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            font-weight: 300;
            max-width: 600px;
            margin-bottom: 5rem;
            color: rgba(243, 243, 243, 0.8);
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            width: 100%;
            max-width: 1200px;
        }
        .product-card {
            background: linear-gradient(145deg, #0d1212, #060909);
            border-radius: 20px;
            padding: 2rem;
            text-align: left;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transform: translateY(0);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        .product-image-wrapper {
            height: 250px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 1.5rem;
            position: relative;
        }
        .product-image {
            max-height: 100%;
            max-width: 100%;
            filter: drop-shadow(0 15px 10px rgba(0,0,0,0.5));
            transition: transform 0.4s ease;
        }
        .product-card:hover .product-image {
            transform: scale(1.1) rotate(5deg);
        }
        .product-name {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .product-origin {
            font-size: 1rem;
            font-weight: 300;
            color: var(--gold);
            margin-bottom: 1rem;
        }
        .product-desc {
            font-size: 0.9rem;
            font-weight: 300;
            color: rgba(243, 243, 243, 0.7);
            line-height: 1.6;
        }
        footer {
            text-align: center;
            padding: 4rem 5% 2rem;
            font-size: 0.9rem;
            color: rgba(243, 243, 243, 0.4);
            background-color: #030505;
        }
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: 'Cinzel Decorative', cursive;
            font-size: 2rem;
            color: var(--gold);
        }

        @media (max-width: 900px) {
            #landing-page {
                grid-template-columns: 1fr;
                grid-template-rows: 1fr 1fr;
                height: auto;
                padding: 10rem 5% 5rem;
                text-align: center;
            }
            .hero-text {
                grid-row: 1;
            }
            .hero-3d-container {
                grid-row: 2;
                height: 50vh;
            }
            .main-title .line:nth-child(2) {
                padding-left: 0;
            }
            .subtitle {
                margin: 2rem auto;
            }
            header {
                padding: 1.5rem 5%;
            }
            nav a {
                margin-left: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            nav {
                display: none;
            }
            .logo {
                font-size: 1.5rem;
            }
            .main-title {
                font-size: 3rem;
            }
            .hero-3d-container {
                height: 40vh;
            }
            .section-title {
                font-size: 2.5rem;
            }
        }