body {
            font-family: 'Montserrat', sans-serif;
            background-color: #f5f0eb;
            color: #8a7159;
            margin: 0;
            padding: 0;
            min-height: 100vh;
        }
        
        /* Header Styles */
        .top-bar {
            background-color: #e8e1dc;
            padding: 15px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .logo-container img {
            max-height: 50px;
        }
        
        .search-bar {
            position: relative;
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-bar input {
            width: 100%;
            padding: 10px 20px;
            border-radius: 25px;
            border: 1px solid #c2b4a6;
            background-color: #fff;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            color: #8a7159;
        }
        
        .search-bar button {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #b39b6d;
            cursor: pointer;
        }
        
        .header-links {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
        }
        
        .header-link {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #8a7159;
            font-size: 12px;
            transition: all 0.3s ease;
        }
        
        .header-link:hover {
            color: #705626;
        }
        
        .header-link i {
            font-size: 16px;
            margin-bottom: 5px;
        }
        
        /* Navigation Menu Styles */
        .nav-container {
            background-color: #c2b4a6;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }
        
        .navbar {
            padding: 0;
        }
        
        .navbar-nav {
            width: 100%;
            justify-content: space-between;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: #705626;
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            font-size: 18px;
            padding: 15px 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: #b39b6d;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .dropdown-menu {
            background-color: #e8e1dc;
            border: none;
            border-radius: 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            margin-top: 0;
        }
        
        .dropdown-item {
            color: #8a7159;
            font-size: 16px;
            padding: 8px 20px;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background-color: rgba(179, 155, 109, 0.1);
            color: #705626;
        }
        
        /* Hero Carousel Section */
        .hero-carousel {
            position: relative;
            overflow: hidden;
            margin-bottom: 60px;
        }
        
        .hero-carousel .carousel-inner {
            max-height: 500px;
        }
        
        .carousel-item img {
            width: 100%;
            height: 500px;
            object-fit: cover;
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
            opacity: 0.8;
        }
        
        .carousel-control-prev-icon, .carousel-control-next-icon {
            background-color: rgba(179, 155, 109, 0.5);
            border-radius: 50%;
            padding: 20px;
        }
        
        /* Product Section */
        .section-title {
            font-family: 'Cormorant Garamond', serif;
            color: #705626;
            font-weight: 600;
            font-size: 32px;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 1px;
            background-color: #b39b6d;
        }
        
        .product-carousel {
            position: relative;
            padding: 0 50px;
            margin-bottom: 60px;
        }
        
        .product-card {
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .product-card:hover .product-img img {
            transform: scale(1.1);
        }
        
        .product-info {
            padding: 20px;
            text-align: center;
        }
        
        .product-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: 18px;
            color: #705626;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .product-price {
            color: #b39b6d;
            font-weight: 500;
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .view-btn {
            padding: 8px 20px;
            background-color: #c2b4a6;
            color: #fff;
            border: none;
            border-radius: 3px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-btn:hover {
            background-color: #b39b6d;
        }
        
        .add-to-cart {
            width: 35px;
            height: 35px;
            background-color: #e8e1dc;
            color: #b39b6d;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .add-to-cart:hover {
            background-color: #b39b6d;
            color: #fff;
        }
        
        .product-carousel .carousel-control-prev,
        .product-carousel .carousel-control-next {
            width: 40px;
            height: 40px;
            background-color: #c2b4a6;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }
        
        .product-carousel .carousel-control-prev {
            left: 10px;
        }
        
        .product-carousel .carousel-control-next {
            right: 10px;
        }
        
        .product-carousel .carousel-control-prev-icon,
        .product-carousel .carousel-control-next-icon {
            width: 20px;
            height: 20px;
            background-size: 50%;
            background-color: transparent;
            padding: 0;
        }
        
        /* More Components Section */
        .more-components {
            background-color: #e8e1dc;
            padding: 60px 0;
            margin: 60px 0;
            text-align: center;
        }
        
        /* Footer Section */
        .footer {
            background-color: #9e9286;
            padding: 60px 0 20px;
            color: #fff;
        }
        
        .footer-title {
            font-family: 'Cormorant Garamond', serif;
            color: #fff;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 1px;
            background-color: #fff;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 14px;
        }
        
        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }
        
        .footer-contact p {
            margin-bottom: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .footer-social {
            margin-top: 20px;
        }
        
        .footer-social a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            text-align: center;
            line-height: 35px;
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background-color: #b39b6d;
        }
        
        .footer-newsletter input {
            width: 100%;
            padding: 10px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            margin-bottom: 10px;
        }
        
        .footer-newsletter button {
            width: 100%;
            padding: 10px;
            border: none;
            background-color: #b39b6d;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .footer-newsletter button:hover {
            background-color: #a58d5e;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 12px;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 991px) {
            .header-links {
                justify-content: center;
                margin-top: 15px;
            }
            
            .navbar-toggler {
                border: none;
                color: #705626;
                font-size: 24px;
            }
            
            .navbar-collapse {
                background-color: #e8e1dc;
                padding: 10px;
            }
            
            .nav-link {
                text-align: center;
            }
            
            .dropdown-menu {
                text-align: center;
            }
            
            .hero-carousel .carousel-inner {
                max-height: 300px;
            }
            
            .carousel-item img {
                height: 300px;
            }
        }
        
        @media (max-width: 767px) {
            .logo-container {
                text-align: center;
                margin-bottom: 15px;
            }
            
            .search-bar {
                margin-bottom: 15px;
            }
            
            .header-links {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .header-link {
                flex: 0 0 calc(25% - 10px);
                font-size: 10px;
            }
            
            .product-carousel {
                padding: 0 30px;
            }
            
            .footer-col {
                margin-bottom: 30px;
            }
        }