        :root {
            --accent: #E0A75E;
            --black: #000000;
            --white: #FFFFFF;
            --soft-gray: #FBFBFB;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--black);
            margin: 0;
            overflow-x: hidden;
        }

        .font-cursive { font-family: 'Puppies Play', cursive; }
        .font-elegant { font-family: 'Italiana', serif; }

        /* Header Layout */
        header {
            background-color: white;
            padding: 2rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
        }

        .nav-group {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-left: 2rem;
        }

        .nav-link {
            color: var(--accent);
            text-transform: uppercase;
            font-size: 11px;
            letter-spacing: 0.2em;
            font-weight: 500;
            transition: color 0.3s;
            cursor: pointer;
            text-decoration: none;
        }
        .nav-link:hover { color: var(--black); }

        /* Hero Parallax */
        .hero-section {
            height: 100vh;
            width: 100%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.15)), 
                        url('https://i.pinimg.com/1200x/c9/c6/50/c9c6508c0b2e7a9791be91f22f474431.jpg');
            background-size: cover;
            background-position: center;
            z-index: -1;
            animation: slowZoom 20s infinite alternate;
        }

        @keyframes slowZoom {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        /* Hero Square Card */
        .hero-square {
            width: 800px;
            height: 500px;
            border: 9px solid white;
            background: transparent;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            z-index: 10;
        }

        .hero-square .logo-small {
            font-size: 10px;
            color: white;
            letter-spacing: 0.8em;
            text-transform: uppercase;
            margin-bottom: 2rem;
            animation: fadeIn 2s ease-out;
        }

        .hero-square h1 {
            color: white;
            font-size: 8rem;
            margin-bottom: 0;
            line-height: 0.8;
            animation: fadeIn 2.5s ease-out;
        }

        .hero-square h2 {
            color: white;
            font-size: 1.8rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            margin-top: 1rem;
            animation: fadeIn 3s ease-out;
        }

        /* Decorative Hero Images */
        .deco-left {
            position: absolute;
            top: 20%;
            left:-140px;
            width: 250px;
            z-index: 15;
            filter: drop-shadow(10px 20px 30px rgba(0,0,0,0.2));
            animation: float 6s ease-in-out infinite;
        }

        .deco-right-bottom {
            position: absolute;
            right: -60px; /* Overlapping right corner */
            bottom: -60px;
            width: 220px;
            z-index: 15;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Product Cards */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 4rem;
            padding: 4rem 0;
        }

        .product-card {
            cursor: pointer;
            position: relative;
            background: white;
            transition: all 0.5s ease;
        }

        .product-img-wrap {
            aspect-ratio: 4/5;
            overflow: hidden;
            background: #f8f8f8;
            margin-bottom: 1.5rem;
        }

        .product-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .product-card:hover img {
            transform: scale(1.08);
        }

        .gold-line {
            height: 1px;
            width: 30px;
            background: var(--accent);
            margin: 1rem 0;
            transition: width 0.4s ease;
        }

        .product-card:hover .gold-line {
            width: 60px;
        }

        /* Chatbot */
        #chat-trigger {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background: var(--accent);
            color: white;
            padding: 1rem 1.8rem;
            border-radius: 50px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 10px 25px rgba(224, 167, 94, 0.4);
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(255, 255, 255, 0.98);
            display: none;
            z-index: 2000;
            overflow-y: auto;
        }
        .modal.active { display: flex; }

        .gold-btn {
            background: var(--accent);
            color: white;
            padding: 1.2rem 2.5rem;
            font-size: 11px;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.4s;
            font-weight: 600;
        }
        .gold-btn:hover {
            background: black;
            padding-left: 3rem;
            padding-right: 3rem;
        }
