:root {
            --primary: #f76b1c;
            --secondary: #ffab4f;
            --dark: #2a2a2a;
            --light: #f8f9fa;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #fff9f2;
            overflow-x: hidden;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #fff9f2 0%, #ffeedd 100%);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            z-index: 2;
            position: relative;
        }
        
        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--primary) !important;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
            transform: translateY(-2px);
        }
        
        .spice-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.5s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            background: white;
            margin-bottom: 20px;
        }
        
        .spice-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(247,107,28,0.15);
        }
        
        .spice-img {
            height: 200px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .spice-card:hover .spice-img {
            transform: scale(1.05);
        }
        
        .btn-spice {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-spice:hover {
            background-color: var(--secondary);
            color: white;
            transform: translateY(-2px);
        }
        
        .section-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            position: relative;
            display: inline-block;
            margin-bottom: 40px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--primary);
            bottom: -10px;
            left: 0;
        }
        
        .spice-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary);
            color: white;
            border-radius: 50px;
            padding: 5px 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .cart-icon {
            position: relative;
        }
        
        .cart-count {
            position: absolute;
            top: -5px;
            right: -5px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 0.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .floating-spices {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }
        
        .floating-spice {
            position: absolute;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
            }
        }
        
        .typed-cursor {
            color: var(--primary);
        }
        
        .hero-heading {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 3.5rem;
            line-height: 1.2;
        }
        
        .hero-subheading {
            font-size: 1.2rem;
            opacity: 0.8;
        }
        
        .spice-name {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            margin-top: 15px;
        }
        
        .price {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
        }






         /* Add these styles to your existing CSS */
  .search-container {
    position: relative;
    margin: 0 auto;
    max-width: 600px;
  }

  .search-box {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  .search-box.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 107, 28, 0.2);
  }

  .search-input {
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    height: 60px;
  }

  .search-input:focus {
    box-shadow: none;
    border-color: #f76b1c;
  }

  .search-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
  }

  .search-dropdown-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .search-dropdown-item:hover {
    background-color: #fff9f2;
    color: #f76b1c;
  }

  .search-dropdown-item:last-child {
    border-bottom: none;
  }

  .btn-outline-spice {
    color: #f76b1c;
    border-color: #f76b1c;
  }

  .btn-outline-spice:hover,
  .btn-outline-spice.active {
    background-color: #f76b1c;
    color: white;
  }

  .search-result-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
  }

  .search-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(247, 107, 28, 0.15);
  }

  .no-results {
    text-align: center;
    padding: 50px 0;
    color: #666;
  }










  /* Testimonials CSS */
  .testimonial-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(247,107,28,0.1);
  }
  
  .testimonial-quote {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    opacity: 0.1;
    line-height: 1;
  }
  
  .testimonial-card:hover .testimonial-quote {
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.15; }
    100% { transform: scale(1); opacity: 0.1; }
  }











  /* Blog CSS */
  .blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    height: 100%;
  }
  
  .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(247,107,28,0.1);
  }
  
  .blog-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  
  .blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
  }
  
  .blog-card:hover .blog-img {
    transform: scale(1.05);
  }
  
  .blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(247, 107, 28, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  .blog-excerpt {
    color: #666;
    margin-bottom: 20px;
  }
  
  .blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .blog-link:hover {
    color: var(--secondary);
  }
  
  .blog-link i {
    transition: all 0.3s ease;
  }
  
  .blog-link:hover i {
    transform: translateX(5px);
  }













   /* USP CSS */
  .usp-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
  }
  
  .usp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(247,107,28,0.1);
  }
  
  .icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(247,107,28,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.5s ease;
  }
  
  .usp-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.5s ease;
  }
  
  .usp-card:hover .icon-circle {
    background: var(--primary);
    transform: rotateY(180deg);
  }
  
  .usp-card:hover .usp-icon i {
    color: white;
  }
  
  .usp-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
  }
  
  .usp-text {
    color: #666;
    margin-bottom: 20px;
  }
  
  .usp-underline {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    transition: all 0.5s ease;
  }
  
  .usp-card:hover .usp-underline {
    width: 100px;
    background: var(--secondary);
  }






  /* Footer CSS */
  .footer-section {
    position: relative;
    overflow: hidden;
  }
  
  .footer-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
  }
  
  .footer-about-text,
  .footer-newsletter-text {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
  }
  
  .footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
  }
  
  .footer-links a:hover {
    color: white;
    padding-left: 10px;
  }
  
  .footer-links a:before {
    content: '→';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover:before {
    left: 0;
    opacity: 1;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
  }
  
  .footer-divider {
    border-color: rgba(255,255,255,0.1);
  }
  
  .footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
  }
  
  .payment-method {
    height: 25px;
    margin-left: 10px;
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
  }
  
  .payment-method:hover {
    filter: none;
  }
  
  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  
  .back-to-top.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Floating spice animation in footer */
  .footer-spice {
    position: absolute;
    opacity: 0.05;
    z-index: 0;
  }



