 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Playfair Display', serif;
        }

        :root {
            --gold: #b8860b;
            --rose-gold: #B76E79;
            --silver: #C0C0C0;
            --dark: #1a1a1a;
            --darker: #0d0d0d;
            --light: #f8f8f8;
            --cream: #f9f5f0;
            --transition: all 0.4s ease;
        }

        body {
            background-color: var(--cream);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark);
            margin-bottom: 15px;
            font-weight: 400;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: var(--gold);
        }

        .section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 20px auto 0;
            font-family: 'Raleway', sans-serif;
        }

        /* Header Styles */
        header {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            background-color: #fff;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        }

        /* Top bar */
        .top-bar {
            background-color: #f8f0e5;
            padding: 8px 0;
            text-align: center;
            font-size: 0.9rem;
            color: #8c6d46;
        }

        /* Navbar */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: #fff;
            position: relative;
        }

        /* Logo styles */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #b8860b;
            font-weight: bold;
            font-size: 1.8rem;
            letter-spacing: 2px;
        }

        .logo-img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
        }

        /* Nav links */
        .nav-links {
            display: flex;
            list-style: none;
            transition: 0.3s ease;
        }

        .nav-links li {
            margin: 0 15px;
            position: relative;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #b8860b;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0%;
            height: 2px;
            background-color: #b8860b;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1001;
            padding: 10px 0;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: rgba(184, 134, 11, 0.1);
            color: #b8860b;
            padding-left: 25px;
        }

        .dropdown i {
            margin-left: 5px;
            font-size: 0.8rem;
            transition: transform 0.3s;
        }

        .dropdown:hover i {
            transform: rotate(180deg);
        }

        /* Icons */
        .nav-icons {
            display: flex;
            gap: 20px;
        }

        .nav-icons a {
            position: relative;
            text-decoration: none;
            color: #333;
        }

        .nav-icons i {
            font-size: 1.2rem;
            cursor: pointer;
            transition: color 0.3s;
        }

        .nav-icons i:hover {
            color: #b8860b;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #b8860b;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Hamburger Menu */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #333;
            cursor: pointer;
        }

        /* Cart Notification */
        .cart-notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background-color: #b8860b;
            color: white;
            padding: 15px 25px;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            display: none;
            align-items: center;
            gap: 10px;
            animation: slideIn 0.3s ease;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .cart-notification.show {
            display: flex;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(249, 245, 240, 0.7), rgba(249, 245, 240, 0.7)), 
                        url('https://images.unsplash.com/photo-1599643478518-a784e5dc4c8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }

        .hero-content {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 4.5rem;
            margin-bottom: 10px;
            line-height: 1.1;
            font-weight: 400;
            letter-spacing: 3px;
        }

        .hero-content h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #666;
            font-weight: 300;
            font-family: 'Raleway', sans-serif;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            font-family: 'Raleway', sans-serif;
        }

        .hero-content strong {
            color: var(--gold);
            font-weight: 600;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--gold);
            color: var(--dark);
            border: 2px solid var(--gold);
            border-radius: 2px;
            font-weight: 500;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Raleway', sans-serif;
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--gold);
        }

        /* Categories Section */
        .categories {
            padding: 100px 0;
            background-color: var(--light);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .category-card {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 300px;
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .category-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .category-card:hover .category-img {
            transform: scale(1.1);
        }

        .category-name {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 20px;
            text-align: center;
            font-size: 1.3rem;
            letter-spacing: 1px;
        }

        /* Featured Collection */
        .featured {
            padding: 100px 0;
            background-color: var(--cream);
        }

        .collection-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .collection-card {
            background-color: white;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .collection-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .collection-img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: var(--transition);
        }

        .collection-card:hover .collection-img {
            transform: scale(1.05);
        }

        .collection-info {
            padding: 25px;
            text-align: center;
        }

        .collection-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark);
            font-weight: 400;
        }

        .collection-info p {
            color: #666;
            margin-bottom: 15px;
            font-family: 'Raleway', sans-serif;
        }

        .price {
            font-size: 1.2rem;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 15px;
        }

        .add-to-cart {
            background-color: #b8860b;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            width: 100%;
        }

        .add-to-cart:hover {
            background-color: #a0780a;
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background-color: var(--light);
            display: flex;
            align-items: center;
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .about-img {
            flex: 1;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-content {
            flex: 1;
        }

        .about-content h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            font-weight: 400;
        }

        .about-content p {
            margin-bottom: 20px;
            color: #666;
            font-family: 'Raleway', sans-serif;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background-color: var(--cream);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: 5px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #666;
            font-family: 'Raleway', sans-serif;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--dark);
        }

        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 60px 5% 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #b8860b;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #b8860b;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons i {
            font-size: 1.2rem;
            color: #ccc;
            transition: color 0.3s;
            cursor: pointer;
        }

        .social-icons i:hover {
            color: #b8860b;
        }

        .newsletter input {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: none;
            border-radius: 5px;
        }

        /* Fixed Subscribe Button */
        .subscribe {    
            display: inline-block;
            padding: 10px 20px;
            background-color: #b8860b;
            color: #333;
            border: 2px solid #b8860b;
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Raleway', sans-serif;
            width: 100%;
            text-align: center;
        }

        .subscribe:hover {
            background-color: transparent;
            color: #b8860b;
        }

        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #444;
            color: #ccc;
            font-size: 0.9rem;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .about .container {
                flex-direction: column;
            }
            
            .about-content {
                padding: 50px 0 0;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                z-index: 1001;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 10px 0;
                text-align: center;
            }

            /* Dropdown adjustments for mobile */
            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: transparent;
                padding-left: 20px;
                display: none;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .dropdown-content a {
                padding: 8px 0;
                border-bottom: none;
                font-size: 1rem;
            }

            .menu-toggle {
                display: block;
            }

            .hero-content h1 {
                font-size: 3rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }

            .logo-img {
                height: 35px;
            }
            
            .logo-text {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 70px 0;
            }
            
            .hero {
                padding: 100px 0 60px;
                height: auto;
                min-height: 100vh;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .collection-card, .testimonial-card {
                padding: 20px;
            }

            .nav-links {
                padding: 60px 20px 20px;
            }
            
            /* Smaller logo for very small screens */
            .logo-img {
                height: 30px;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
        }