
        :root {
            --main-family: 'Poppins', sans-serif;
            --background: #ffffff;
            --header-background: #ffffff;
            --text-color: #222222;
            --link-color: #686868;
            --button-color: #222222;
            --button-text: #ffffff;
            --footer-background: #111111;
            --accent-color: #bfa37e; 
            --transition: all 0.3s ease;
            --shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--main-family);
            color: var(--text-color);
            background-color: var(--background);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Announcement Bar */
        .announcement-bar {
            background-color: #1a1a1a;
            color: white;
            text-align: center;
            padding: 8px 0;
            font-size: 11px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        /* Header */
        header {
            background: var(--header-background);
            padding: 20px 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.05);
            transition: var(--transition);
        }

        .logo {
            font-size: 26px;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-color);
            letter-spacing: 2px;
        }

        /* Desktop Nav */
        nav.desktop-nav {
            display: none;
        }

        @media (min-width: 1024px) {
            nav.desktop-nav {
                display: flex;
                gap: 25px;
            }
            .nav-item {
                position: relative;
                padding: 10px 0;
            }
            .nav-item a {
                text-decoration: none;
                color: var(--text-color);
                font-size: 13px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 1px;
                transition: var(--transition);
            }
            .nav-item:hover > a {
                color: var(--accent-color);
            }
            /* Dropdown Menu */
            .dropdown {
                position: absolute;
                top: 100%;
                left: 0;
                background: white;
                min-width: 220px;
                box-shadow: var(--shadow);
                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: var(--transition);
                list-style: none;
                padding: 15px 0;
            }
            .nav-item:hover .dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            .dropdown li a {
                padding: 10px 25px;
                display: block;
                text-transform: none;
                font-weight: 400;
                font-size: 14px;
            }
            .dropdown li a:hover {
                background: #f9f9f9;
                color: var(--accent-color);
            }
        }

        .header-icons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .header-icons i {
            cursor: pointer;
            width: 20px;
            height: 20px;
            transition: var(--transition);
        }

        .header-icons i:hover {
            color: var(--accent-color);
        }

        /* Mobile Menu Button */
        .mobile-menu-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            z-index: 1100;
        }

        @media (min-width: 1024px) {
            .mobile-menu-toggle {
                display: none;
            }
        }

        /* Side Menu (Mobile) */
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100%;
            background: white;
            z-index: 1050;
            transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 80px 30px;
            box-shadow: 5px 0 25px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-sidebar.active {
            left: 0;
        }

        .mobile-sidebar a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 18px;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            visibility: hidden;
            opacity: 0;
            transition: var(--transition);
            z-index: 1040;
        }

        .overlay.active {
            visibility: visible;
            opacity: 1;
        }

        /* Hero Section */
        .hero {
            height: 80vh;
            background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1523170335258-f5ed11844a49?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: clamp(32px, 6vw, 64px);
            margin-bottom: 20px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 6px;
        }

        .hero p {
            max-width: 700px;
            margin-bottom: 35px;
            font-weight: 300;
            font-size: 18px;
            letter-spacing: 1px;
        }

        .btn {
            background-color: var(--accent-color);
            color: white;
            padding: 16px 50px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: #a68b65;
            transform: translateY(-2px);
        }

        /* About Section */
        .about-section {
            padding: 100px 10%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 60px;
        }

        @media (max-width: 768px) {
            .about-section {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .about-image img {
            width: 100%;
            border-radius: 4px;
            box-shadow: var(--shadow);
        }

        .about-content h2 {
            font-size: 36px;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .about-content p {
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
        }

        /* Products Section */
        .section-title {
            text-align: center;
            margin: 80px 0 50px;
        }

        .section-title h2 {
            font-size: 32px;
            text-transform: uppercase;
            letter-spacing: 3px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 25%;
            width: 50%;
            height: 2px;
            background: var(--accent-color);
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            padding: 0 10% 80px;
        }

        .product-card {
            background: #fff;
            transition: var(--transition);
            position: relative;
            cursor: pointer;
            border-radius: 4px;
            overflow: hidden;
        }

        .product-image {
            width: 100%;
            aspect-ratio: 1/1;
            background: #f8f8f8;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--accent-color);
            color: white;
            padding: 4px 12px;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 10;
        }

        .product-info {
            padding: 20px 10px;
            text-align: center;
        }

        .product-category {
            font-size: 12px;
            color: #999;
            text-transform: uppercase;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .product-name {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }

        .product-price {
            font-size: 16px;
            color: var(--accent-color);
            font-weight: 700;
        }

        /* Testimonials */
        .testimonials {
            background: #fdfbf8;
            padding: 100px 10%;
            text-align: center;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .testimonial-item {
            background: white;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border-radius: 8px;
        }

        .testimonial-item p {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            font-size: 15px;
        }

        .author {
            font-weight: 700;
            color: #222;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 1px;
        }

        /* Footer */
        footer {
            background: #111;
            color: #999;
            padding: 80px 10% 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            color: white;
            margin-bottom: 30px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 15px; }
        .footer-col a {
            text-decoration: none;
            color: #777;
            font-size: 14px;
            transition: var(--transition);
        }
        .footer-col a:hover { color: var(--accent-color); padding-left: 5px; }

        .newsletter-input {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-input input {
            padding: 12px;
            border: 1px solid #333;
            background: #222;
            color: white;
            flex-grow: 1;
            outline: none;
        }

        .newsletter-input button {
            background: var(--accent-color);
            border: none;
            color: white;
            padding: 0 20px;
            cursor: pointer;
            font-weight: 600;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links i {
            color: #666;
            cursor: pointer;
            transition: var(--transition);
        }

        .social-links i:hover { color: white; }

        .bottom-bar {
            text-align: center;
            font-size: 12px;
            border-top: 1px solid #222;
            padding-top: 40px;
            color: #555;
        }
 