
    :root {
      --primary: #b76e22;
      --secondary: #2c5f2d;
      --accent: #a52a2a;
      --light: #f8f3e9;
      --dark: #1a120b;
      --gold: #d4af37;
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 80px;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--dark);
      background-color: var(--light);
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      line-height: 1.2;
    }
    
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-padding {
      padding: 100px 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 2.8rem;
      color: var(--primary);
      position: relative;
      display: inline-block;
      margin-bottom: 20px;
    }
    
    .section-title h2:after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--secondary);
      border-radius: 2px;
    }
    
    .section-title p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      color: #555;
    }
    
    .btn {
      display: inline-block;
      padding: 15px 35px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(183, 110, 34, 0.3);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }
    
    .btn:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      transition: var(--transition);
      z-index: -1;
    }
    
    .btn:hover:before {
      width: 100%;
    }
    
    .btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(183, 110, 34, 0.5);
    }
    
    /* Header & Navigation */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
    }
    
    .header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    
    .logo i {
      margin-right: 10px;
      color: var(--gold);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 30px;
    }
    
    .nav-links a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
      position: relative;
      padding: 5px 0;
      transition: var(--transition);
    }
    
    .nav-links a:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition);
    }
    
    .nav-links a:hover:after {
      width: 100%;
    }
    
    .nav-links a:hover {
      color: var(--primary);
    }
    
    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      font-size: 1.5rem;
      color: var(--dark);
      cursor: pointer;
    }
    
    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1547981609-4b6bf67a0d4d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
      display: flex;
      align-items: center;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      animation: fadeInUp 1s ease-out;
    }
    
    .hero h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      line-height: 1.1;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .hero h1 span {
      color: var(--gold);
      display: block;
    }
    
    .hero p {
      font-size: 1.4rem;
      margin-bottom: 40px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .scroll-down {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      font-size: 1.5rem;
      animation: bounce 2s infinite;
    }
    
    /* About Section */
    .about {
      background-color: white;
    }
    
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .about-img {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      height: 500px;
    }
    
    .about-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .about-img:hover img {
      transform: scale(1.05);
    }
    
    .about-text h3 {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .about-text p {
      margin-bottom: 20px;
      color: #555;
    }
    
    .signature {
      display: flex;
      align-items: center;
      margin-top: 30px;
    }
    
    .signature img {
      width: 150px;
      margin-right: 20px;
    }
    
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      background-color: #25D366;
      color: white;
      padding: 15px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      margin-top: 20px;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    }
    
    .whatsapp-btn i {
      margin-right: 10px;
      font-size: 1.5rem;
    }
    
    .whatsapp-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    }
    
    /* Services Section */
    .services {
      background: linear-gradient(rgba(44, 95, 45, 0.05), rgba(44, 95, 45, 0.05)), url('https://images.unsplash.com/photo-1542662565-7e4b66bae529?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80') no-repeat center center/cover;
      background-attachment: fixed;
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .service-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      position: relative;
    }
    
    .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .service-img {
      height: 250px;
      overflow: hidden;
    }
    
    .service-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .service-card:hover .service-img img {
      transform: scale(1.1);
    }
    
    .service-content {
      padding: 25px;
    }
    
    .service-content h3 {
      color: var(--primary);
      margin-bottom: 15px;
      font-size: 1.5rem;
    }
    
    .service-content p {
      color: #666;
      margin-bottom: 20px;
    }
    
    .service-icon {
      position: absolute;
      top: -25px;
      right: 25px;
      width: 60px;
      height: 60px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgba(183, 110, 34, 0.3);
    }
    
    /* Herbal Remedies Section */
    .herbal {
      background-color: white;
    }
    
    .herbal-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .herbal-img {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      height: 500px;
    }
    
    .herbal-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .herbal-text h3 {
      font-size: 2rem;
      color: var(--secondary);
      margin-bottom: 20px;
    }
    
    .herbal-text p {
      margin-bottom: 20px;
      color: #555;
    }
    
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 30px 0;
    }
    
    .benefit-item {
      display: flex;
      align-items: flex-start;
    }
    
    .benefit-item i {
      color: var(--secondary);
      font-size: 1.5rem;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    /* Testimonials */
    .testimonials {
      background: linear-gradient(rgba(183, 110, 34, 0.05), rgba(183, 110, 34, 0.05));
    }
    
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .testimonial-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      position: relative;
    }
    
    .testimonial-card:before {
      content: """;
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 5rem;
      color: var(--primary);
      opacity: 0.1;
      font-family: Georgia, serif;
      line-height: 1;
    }
    
    .testimonial-text {
      margin-bottom: 20px;
      font-style: italic;
      color: #555;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
    }
    
    .author-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 15px;
    }
    
    .author-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .author-info h4 {
      margin-bottom: 5px;
      color: var(--primary);
    }
    
    .author-info p {
      color: var(--secondary);
      font-size: 0.9rem;
    }
    

/* Contact Section */
    .contact {
      background: linear-gradient(rgba(44, 95, 45, 0.05), rgba(44, 95, 45, 0.05)), url('image3.jpg') no-repeat center center/cover;
      background-attachment: fixed;
    }





    
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
    
    .contact-info {
      background: rgba(255, 255, 255, 0.9);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .contact-info h3 {
      color: var(--primary);
      margin-bottom: 30px;
      font-size: 2rem;
    }
    
    .contact-item {
      display: flex;
      margin-bottom: 25px;
    }
    
    .contact-item i {
      color: var(--primary);
      font-size: 1.5rem;
      margin-right: 15px;
      width: 40px;
    }
    
    .contact-details h4 {
      margin-bottom: 5px;
      color: var(--dark);
    }
    
    .contact-details a {
      color: #555;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .contact-details a:hover {
      color: var(--primary);
    }
    
    .social-links {
      display: flex;
      margin-top: 30px;
    }
    
    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      margin-right: 15px;
      transition: var(--transition);
      font-size: 1.2rem;
    }
    
    .social-links a:hover {
      background: var(--secondary);
      transform: translateY(-5px);
    }
    
    .contact-form {
      background: rgba(255, 255, 255, 0.9);
      padding: 40px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .form-group {
      margin-bottom: 25px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--dark);
      font-weight: 600;
    }
    
    .form-control {
      width: 100%;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .form-control:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(183, 110, 34, 0.2);
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    /* Footer */
    .footer {
      background: var(--dark);
      color: white;
      padding: 70px 0 0;
    }
    
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 50px;
    }
    
    .footer-col h4 {
      font-size: 1.5rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-col h4:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--gold);
    }
    
    .footer-col p {
      color: #bbb;
      margin-bottom: 20px;
    }
    
    .footer-links li {
      margin-bottom: 12px;
      list-style: none;
    }
    
    .footer-links a {
      color: #bbb;
      text-decoration: none;
      transition: var(--transition);
      display: block;
    }
    
    .footer-links a:hover {
      color: var(--gold);
      padding-left: 5px;
    }
    
    .copyright {
      text-align: center;
      padding: 25px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #bbb;
      font-size: 0.9rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: #25D366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
      z-index: 100;
      transition: var(--transition);
      animation: pulse 2s infinite;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(50px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
      }
      40% {
        transform: translateY(-20px) translateX(-50%);
      }
      60% {
        transform: translateY(-10px) translateX(-50%);
      }
    }
    
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
    
    /* Responsive */
    @media (max-width: 992px) {
      .about-content,
      .herbal-content,
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .herbal-img,
      .about-img {
        height: 400px;
      }
      
      .hero h1 {
        font-size: 3rem;
      }
      
      .section-title h2 {
        font-size: 2.5rem;
      }
    }
    
    @media (max-width: 768px) {
      .nav-toggle {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
      }
      
      .nav-links.active {
        left: 0;
      }
      
      .nav-links li {
        margin: 15px 0;
      }
      
      .services-grid,
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section-padding {
        padding: 70px 0;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1.1rem;
      }
      
      .btn {
        padding: 12px 25px;
      }
      
      .benefits-grid {
        grid-template-columns: 1fr;
      }
    }
  
   /* Products Section Styles */
.products {
  padding: 80px 0;
  background-color: #f9f6f2;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Carousel Styles */
.product-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  width: 400%; /* 4 images = 4 * 100% */
  height: 100%;
  transition: transform 0.5s ease;
}

.carousel-slide {
  width: 25%; /* Each slide takes 25% of the container */
  height: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(183, 110, 34, 0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background: rgba(183, 110, 34, 1);
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: rgba(255, 255, 255, 1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #b76e22;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.product-content {
  padding: 25px;
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: #2c3e50;
}

.product-tagline {
  color: #b76e22;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 16px;
}

.product-description {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  margin-bottom: 20px;
}

.product-feature {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.product-feature i {
  color: #b76e22;
  margin-right: 10px;
  font-size: 14px;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}

.product-cta {
  display: flex;
  justify-content: space-between;
}

.product-btn {
  flex: 1;
  margin: 0 5px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.product-btn.primary {
  background: #b76e22;
  color: white;
  border: 2px solid #b76e22;
}

.product-btn.primary:hover {
  background: #a55d1a;
  border-color: #a55d1a;
}

.product-btn.secondary {
  background: transparent;
  color: #b76e22;
  border: 2px solid #b76e22;
}

.product-btn.secondary:hover {
  background: #f9f3eb;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .product-cta {
    flex-direction: column;
  }
  
  .product-btn {
    margin: 5px 0;
  }
}

/* Floating cart icon (bottom-left now) */
#cart-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;   /* ⬅️ moved to left */
  background: #25D366;
  color: white;
  padding: 14px 18px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}
#cart-icon:hover {
  transform: scale(1.05);
}
#cart-icon i { font-size: 20px; }
#cart-count {
  background: red;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 14px;
  margin-left: 5px;
  font-weight: bold;
}

/* Sidebar Cart */
#cart-sidebar {
  position: fixed;
  right: -100%;
  top: 0;
  width: 350px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0,0,0,0.2);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 9998;
  display: flex;
  flex-direction: column;
}
#cart-sidebar.active { right: 0; }

#cart-sidebar h3 { 
  margin-bottom: 15px; 
  font-size: 1.4rem; 
  font-weight: 600;
}

#close-cart {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  transition: color 0.2s ease;
}
#close-cart:hover {
  color: #000;
}

#cart-items { 
  list-style: none; 
  padding: 0; 
  margin: 40px 0 0 0; /* space below header + X */
  flex-grow: 1; 
  overflow-y: auto; 
}
#cart-items li {
  display: flex; 
  justify-content: space-between;
  padding: 8px 0; 
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}
.cart-footer { margin-top: 20px; }

#checkout-btn { 
  display: block; 
  text-align: center; 
  padding: 12px; 
  border-radius: 8px;
  font-size: 1rem;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
#checkout-btn:hover {
  background: #1da851;
}

/* ✅ Responsive Breakpoints */
@media (max-width: 768px) {
  #cart-sidebar {
    width: 100%; /* full screen on tablets/mobiles */
    padding: 15px;
  }
  #cart-sidebar h3 { font-size: 1.2rem; }
  #cart-items li { font-size: 0.9rem; }
  #checkout-btn { font-size: 0.95rem; padding: 10px; }
  #cart-icon {
    padding: 12px 16px;
    font-size: 16px;
    bottom: 15px;
    left: 15px; /* still bottom-left */
  }
  #cart-count { font-size: 12px; }
}

@media (max-width: 480px) {
  #cart-sidebar {
    padding: 12px;
  }
  #cart-sidebar h3 { font-size: 1.1rem; }
  #cart-items li { font-size: 0.85rem; }
  #checkout-btn { font-size: 0.9rem; padding: 10px; }
  #cart-icon {
    bottom: 12px;
    left: 12px;
    padding: 10px 14px;
  }
}

/* Toast Notification */
#toast {
  position: fixed;
  bottom: 80px; /* just above the cart button */
  left: 20px;
  background: #25D366;
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
  z-index: 10000;
}

#toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#cart-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.remove-btn {
  background: none;
  border: none;
  color: red;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
  transition: transform 0.2s ease;
}

.remove-btn:hover {
  transform: scale(1.2);
}

