:root {
            --primary-color: #651c01;
            --secondary-color: #9e6c53;
            --light-bg: #f9f5f1;
            --dark-text: #333333;
            --light-text: #777777;
            --white: #ffffff;
            --transition: all 0.3s ease;
            --border-radius: 8px;
        }

        /* Reset and General Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../images/about.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            position: relative;
            margin-top: -80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
        }

        .hero-content {
            max-width: 800px;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 0 20px;
        }

        .tagline {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            opacity: 0;
            animation: fadeUp 1s forwards 0.5s;
        }

        .main-heading {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            opacity: 0;
            animation: fadeUp 1s forwards 0.8s;
        }

        .main-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background-color: var(--white);
        }

        .subheading {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeUp 1s forwards 1.1s;
        }

        .btn-hero {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 1px;
            transition: var(--transition);
            opacity: 0;
            animation: fadeUp 1s forwards 1.4s;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: rgba(255,255,255,0.2);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .btn-hero:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        .btn-hero:hover::before {
            width: 100%;
        }

        /* Scroll Down Indicator */
        .scroll-down {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--white);
            opacity: 0;
            animation: fadeIn 1s forwards 1.7s;
        }

        .scroll-down span {
            font-size: 0.9rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .scroll-down i {
            animation: bounce 2s infinite;
        }

        /* Categories Section */
        .categories {
            padding: 100px 0;
            text-align: center;
            background-color: var(--white);
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .category-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 50px auto 0;
            padding: 0 20px;
        }

        .category-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
            height: 350px;
        }

        .category-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .category-item:hover img {
            transform: scale(1.1);
        }

        .category-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
            z-index: 1;
        }

        .category-item h3 {
            position: absolute;
            bottom: 20px;
            left: 0;
            width: 100%;
            text-align: center;
            color: var(--white);
            font-size: 1.5rem;
            z-index: 2;
            transition: var(--transition);
            padding: 0 15px;
        }

        .category-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        /* Featured Product Section */
        .featured-product {
            padding: 100px 0;
            background-color: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .featured-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 0 20px;
        }

        .featured-content {
            flex: 1;
            min-width: 300px;
            padding: 30px;
        }

        .featured-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
        }

        .featured-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        .featured-description {
            color: var(--light-text);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .featured-price {
            font-size: 1.5rem;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 30px;
        }

        .btn-shop {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-shop:hover {
            background-color: #892603;
            transform: translateY(-3px);
        }

        .featured-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .featured-image img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: var(--transition);
        }

        .featured-image img:hover {
            transform: scale(1.05);
        }

        /* Best Sellers Section */
        .best-sellers {
            padding: 100px 0;
            text-align: center;
            background-color: var(--white);
        }

        .product-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1300px;
            margin: 50px auto 0;
            padding: 0 20px;
        }

        .product-item {
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: var(--transition);
            position: relative;
        }

        .product-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .product-image {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-item:hover .product-image img {
            transform: scale(1.1);
        }

        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.2);
            opacity: 0;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .product-item:hover .product-overlay {
            opacity: 1;
        }

        .product-info {
            padding: 20px;
            text-align: center;
        }

        .product-info h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .product-info p {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }

        .product-actions {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .product-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .product-btn:hover {
            background-color: #892603;
        }

        .product-btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }

        .product-btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            text-align: center;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-content h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }

        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--white);
        }

        .about-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .btn-about {
            display: inline-block;
            background-color: transparent;
            color: var(--white);
            padding: 12px 30px;
            border: 2px solid var(--white);
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .btn-about:hover {
            background-color: var(--white);
            color: var(--dark-text);
            transform: translateY(-3px);
        }

        /* Testimonials Section */
        .testimonials {
            padding: 80px 0;
            background-color: var(--background-color);
            position: relative;
          }
          
          .testimonials .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
          }
          
          .testimonials .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-size: 2.2rem;
            color: var(--text-color);
            position: relative;
          }
          
          .testimonials .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
          }
          
          .testimonial-slider {
            display: flex;
            overflow: hidden;
            position: relative;
            margin: 0 auto;
            max-width: 900px;
          }
          
          .testimonial-card {
            min-width: 100%;
            display: flex;
            align-items: center;
            padding: 40px;
            background-color: var(--white);
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            opacity: 0;
            transition: opacity 0.5s ease;
            position: absolute;
            top: 0;
            left: 0;
          }
          
          .testimonial-card.active {
            position: relative;
            opacity: 1;
          }
          
          .customer-photo {
            width: 110px;
            height: 110px;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--secondary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-right: 30px;
            flex-shrink: 0;
          }
          
          .customer-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
          }
          
          .testimonial-content {
            flex: 1;
          }
          
          .rating {
            color: #FFD700;
            font-size: 14px;
            margin-bottom: 10px;
          }
          
          .testimonial-text {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-color);
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
          }
          
          .testimonial-text::before {
            content: '\201C';
            font-size: 60px;
            font-family: Georgia, serif;
            color: var(--primary-light);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: -20px;
          }
          
          .customer-info h4 {
            margin: 0;
            font-size: 18px;
            color: var(--primary-color);
          }
          
          .customer-info p {
            margin: 5px 0 0;
            font-size: 14px;
            color: var(--light-text);
          }
          
          .testimonial-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 30px;
          }
          
          .prev-btn,
          .next-btn {
            background-color: var(--white);
            color: var(--primary-color);
            border: 1px solid var(--light-gray);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
          }
          
          .prev-btn:hover,
          .next-btn:hover {
            background-color: var(--primary-color);
            color: var(--white);
          }
          
          .testimonial-dots {
            display: flex;
            justify-content: center;
            margin: 0 20px;
          }
          
          .dot {
            width: 10px;
            height: 10px;
            background-color: var(--light-gray);
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
          }
          
          .dot.active {
            background-color: var(--primary-color);
            transform: scale(1.2);
          }
          
          /* Responsive adjustments */
          @media (max-width: 768px) {
            .testimonial-card {
              flex-direction: column;
              text-align: center;
              padding: 30px 20px;
            }
            
            .customer-photo {
              margin-right: 0;
              margin-bottom: 20px;
            }
            
            .testimonial-text::before {
              left: 50%;
              transform: translateX(-50%);
            }
          }

        /* Subscribe Section */
        .subscribe {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), #9e6c53);
            color: var(--white);
            text-align: center;
        }

        .subscribe-content {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .subscribe-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .subscribe-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
        }

        .subscribe-form {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .subscribe-input {
            flex: 1;
            min-width: 300px;
            padding: 15px 20px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
        }

        .btn-subscribe {
            padding: 15px 30px;
            background-color: var(--dark-text);
            color: var(--white);
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-subscribe:hover {
            background-color: #000;
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .main-heading {
                font-size: 2.8rem;
            }
            
            .featured-container {
                flex-direction: column-reverse;
            }
            
            .featured-content, .featured-image {
                padding: 15px;
            }
            
            .product-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .subscribe-input, .btn-subscribe {
                width: 100%;
            }
        }