
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary: #1a1a1a;
            --secondary: #6e6e6e;
            --accent: #c5a059; /* Muted Gold */
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --border: #e0e0e0;
            --shadow: 0 10px 30px rgba(0,0,0,0.05);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Lato', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        
        body {
            font-family: var(--font-body);
            color: var(--primary);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; }
        button { cursor: pointer; font-family: var(--font-body); }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* --- UTILITIES --- */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .flex { display: flex; align-items: center; }
        .grid { display: grid; }
        .section-padding { padding: 80px 0; }
        .text-center { text-align: center; }
        .btn {
            display: inline-block;
            padding: 14px 32px;
            background: var(--primary);
            color: var(--white);
            border: 1px solid var(--primary);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .btn:hover { background: var(--white); color: var(--primary); }
        .btn-outline { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-outline:hover { background: var(--primary); color: var(--white); }

        /* --- HEADER --- */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            padding: 20px 0;
        }
        .nav-wrapper { justify-content: space-between; }
        .logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; letter-spacing: -0.5px; }
        .nav-icons { gap: 20px; }
        .cart-icon-wrap { position: relative; cursor: pointer; }
        .cart-badge {
            position: absolute; top: -8px; right: -8px;
            background: var(--accent); color: var(--white);
            font-size: 0.7rem; width: 18px; height: 18px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
        }

        /* --- HERO --- */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: url('../img/banner/banner-1.png') no-repeat center/cover;
            position: relative;
        }
        .hero::before {
            content: ''; position: absolute; inset: 0;
            background: rgba(0,0,0,0.3);
        }
        .hero-content {
            position: relative; z-index: 1;
            color: var(--white);
            text-align: center;
            max-width: 800px;
        }
        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; line-height: 1.2; }
        .hero p { font-size: 1.2rem; margin-bottom: 40px; font-weight: 300; opacity: 0.9; }
        .hero-btns { gap: 20px; justify-content: center; margin-bottom: 40px; }
        .hero-counter { font-family: var(--font-body); font-size: 0.9rem; letter-spacing: 1px; opacity: 0.8; }

        /* --- ABOUT --- */
        .about { background: var(--bg-light); }
        .about h2 { font-size: 2.5rem; margin-bottom: 20px; }

        /* --- SPOTLIGHT --- */
        .spotlight-banner {
            height: 400px;
            background: url('https://picsum.photos/seed/furniture2/1600/600') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            position: relative;
        }
        .spotlight-banner::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
        .spotlight-text { position: relative; z-index: 2; text-align: center; }
        .spotlight-text h2 { font-size: 3rem; margin-bottom: 10px; }

        /* --- SHOP SECTION --- */
        .shop-layout {
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
            margin-top: 40px;
        }
        
        /* Filters */
        .filters { background: var(--bg-light); padding: 30px; height: fit-content; }
        .filter-group { margin-bottom: 30px; }
        .filter-group h4 { margin-bottom: 15px; font-size: 1rem; letter-spacing: 1px; }
        .filter-opt { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
        .filter-opt input { accent-color: var(--primary); }
        .price-range { width: 100%; }
        
        /* Product Grid */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 30px;
        }
        .product-card {
            background: var(--white);
            transition: var(--transition);
            position: relative;
            border: 1px solid transparent;
        }
        .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--border); }
        
        .prod-img-wrap {
            position: relative;
            overflow: hidden;
            height: 250px;
        }
        .prod-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
        .product-card:hover .prod-img-wrap img { transform: scale(1.05); }
        
        .wishlist-btn {
            position: absolute; top: 15px; right: 15px;
            background: var(--white); border-radius: 50%; width: 35px; height: 35px;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: var(--transition);
            border: none; z-index: 2;
        }
        .wishlist-btn:hover { background: var(--primary); color: var(--white); }
        .wishlist-btn.active { background: #e74c3c; color: var(--white); }

        .prod-actions {
            position: absolute; bottom: -50px; left: 0; width: 100%;
            background: rgba(255,255,255,0.9);
            display: flex; justify-content: center; padding: 10px;
            transition: bottom 0.3s;
        }
        .product-card:hover .prod-actions { bottom: 0; }
        .action-btn { background: transparent; border: none; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; cursor: pointer; margin: 0 10px; }
        .action-btn:hover { color: var(--accent); }

        .prod-info { padding: 20px 0; text-align: center; }
        .prod-cat { font-size: 0.8rem; color: var(--secondary); text-transform: uppercase; margin-bottom: 5px; }
        .prod-title { font-size: 1.1rem; margin-bottom: 8px; }
        .prod-price { font-weight: 700; color: var(--primary); }

        /* --- BENEFITS --- */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .benefit-card {
            text-align: center; padding: 30px;
            background: var(--bg-light); transition: var(--transition);
        }
        .benefit-card:hover { background: var(--white); box-shadow: var(--shadow); }
        .benefit-icon { font-size: 2rem; margin-bottom: 15px; display: block; }
        .benefit-card h4 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

        /* --- NEWSLETTER --- */
        .newsletter { background: var(--primary); color: var(--white); }
        .newsletter h2 { color: var(--white); }
        .newsletter-form {
            max-width: 900px; margin: 30px auto 0;
            display: flex; gap: 10px;
        }
        .newsletter-input { flex: 1; padding: 15px; border: none; outline: none; }

        /* --- CONTACT --- */
        .contact-wrapper {
            display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
        }
        .contact-info div { margin-bottom: 20px; }
        .contact-form input, .contact-form select, .contact-form textarea {
            width: 100%; padding: 15px; margin-bottom: 20px;
            border: 1px solid var(--border); font-family: var(--font-body);
        }

        /* --- FOOTER --- */
        footer { background: #111; color: #888; padding: 60px 0 20px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { color: var(--white); margin-bottom: 20px; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a:hover { color: var(--white); }
        .footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-size: 0.8rem; }
        .policy-links a { margin: 0 10px; font-size: 0.8rem; cursor: pointer; }

        /* --- CART SIDEBAR --- */
        .cart-sidebar {
            position: fixed; top: 0; right: 0; width: 400px; height: 100%;
            background: var(--white); z-index: 2000;
            box-shadow: -5px 0 30px rgba(0,0,0,0.1);
            transform: translateX(100%);
            transition: transform 0.4s ease;
            display: flex; flex-direction: column;
        }
        .cart-sidebar.open { transform: translateX(0); }
        .cart-header { padding: 20px; border-bottom: 1px solid var(--border); justify-content: space-between; }
        .cart-body { flex: 1; overflow-y: auto; padding: 20px; }
        .cart-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
        .cart-item img { width: 70px; height: 70px; object-fit: cover; }
        .cart-item-details { flex: 1; }
        .cart-item-title { font-size: 0.9rem; font-weight: 700; }
        .cart-controls { display: flex; align-items: center; gap: 10px; margin-top: 5px; }
        .qty-btn { width: 20px; height: 20px; background: #eee; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; }
        .cart-footer { padding: 20px; border-top: 1px solid var(--border); background: var(--bg-light); }
        .cart-total-row { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.9rem; }
        .cart-grand-total { font-weight: 700; font-size: 1.2rem; margin-top: 10px; }
        .close-cart { background: none; border: none; font-size: 1.5rem; cursor: pointer; }

        /* --- CHECKOUT MODAL --- */
        .modal-overlay {
            position: fixed; inset: 0; background: rgba(0,0,0,0.6);
            z-index: 3000; display: none; align-items: center; justify-content: center;
        }
        .modal-overlay.active { display: flex; }
        .modal-content {
            background: var(--white); width: 600px; max-width: 90%; max-height: 90vh;
            overflow-y: auto; padding: 40px; position: relative;
        }
        .close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; background: none; border: none; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .full-width { grid-column: span 2; }
        .checkout-form input { width: 100%; padding: 10px; border: 1px solid var(--border); margin-bottom: 10px; }

        /* --- TOAST --- */
        #toast-container { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 4000; }
        .toast {
            background: var(--primary); color: var(--white); padding: 12px 25px;
            border-radius: 4px; margin-top: 10px; opacity: 0; transition: opacity 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .toast.show { opacity: 1; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .shop-layout { grid-template-columns: 1fr; }
            .filters { display: none; /* Could be toggleable */ }
            .contact-wrapper { grid-template-columns: 1fr; }
            .cart-sidebar { width: 100%; }
        }
    