  .latest-products .product-slider {
      display: flex;
      gap: 20px;
      scroll-snap-type: x mandatory;
      overflow-x: auto;
      padding-bottom: 10px;
  }

  .product-card {
      flex: 0 0 auto;
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      min-width: 250px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
      scroll-snap-align: start;
      transition: transform 0.3s ease;
      text-align: center;
  }

  .product-card:hover {
      transform: translateY(-5px);
  }

  .product-card h5 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 8px;
  }

  .product-card .price {
      color: #27ae60;
      font-weight: 600;
      margin-bottom: 12px;
  }

  .product-card .btn-style {
      background-color: #27ae60;
      color: #fff;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      transition: 0.3s ease;
  }

  .product-card .btn-style:hover {
      background-color: #1e8d4f;
  }

  .product-slider::-webkit-scrollbar {
      display: none;
  }

  .product-slider {
      -ms-overflow-style: none;
      scrollbar-width: none;
  }

  @media (max-width: 768px) {
      .product-card {
          min-width: 200px;
      }
  }

  .product-slider-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
  }

  .product-slider {
      transition: all 0.3s ease;
  }

  .product-card {
      min-width: 220px;
      max-width: 220px;
      background: #fff;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      flex-shrink: 0;
  }

  .scroll-btn {
      position: absolute;
      top: 35%;
      z-index: 5;
      background: #fff;
      border: none;
      font-size: 1.25rem;
      width: 35px;
      height: 35px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      border-radius: 50%;
      cursor: pointer;
  }

  .left-arrow {
      left: -15px;
  }

  .right-arrow {
      right: -15px;
  }

  .product-slider-wrapper {
      overflow: hidden;
  }

  .product-slider {
      display: flex;
      transition: all 0.3s ease-in-out;
  }

  .product-card {
      flex: 0 0 23%;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      min-width: 230px;
  }

  .product-card img {
      height: 130px;
      object-fit: contain;
  }

  .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: none;
      font-size: 20px;
      z-index: 2;
      padding: 8px 12px;
      cursor: pointer;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .left-arrow {
      left: -20px;
  }

  .right-arrow {
      right: -20px;
  }

  .quantity-controls button {
      width: 30px;
      height: 30px;
      padding: 0;
      font-size: 18px;
      font-weight: bold;
  }

  .quantity-controls .quantity {
      min-width: 20px;
      display: inline-block;
      text-align: center;
      font-weight: 600;
  }

  @media screen and (max-width: 768px) {
      .product-card {
          flex: 0 0 48%;
      }
  }

  @media screen and (max-width: 480px) {
      .product-card {
          flex: 0 0 90%;
      }

      .scroll-btn {
          display: none;
      }
  }

  .product-card {
      background: #fff;
      border-radius: 1rem;
      padding: 1rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 200px;
  }

  .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .product-card img {
      border-radius: 0.5rem;
  }

  .price {
      font-size: 1rem;
      font-weight: 600;
  }

  .quantity-controls {
      min-width: 100px;
  }

  .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ffffff;
      border: 1px solid #ddd;
      padding: 0.5rem;
      border-radius: 50%;
      z-index: 2;
      cursor: pointer;
      transition: all 0.2s ease;
  }

  .scroll-btn:hover {
      background-color: #f0f0f0;
  }

  .left-arrow {
      left: -15px;
  }

  .right-arrow {
      right: -15px;
  }

  .product-slider-wrapper {
      overflow-x: auto;
      white-space: nowrap;
      padding: 0 2rem;
  }

  .product-slider {
      display: inline-flex;
      gap: 1.5rem;
  }

  .product-card {
      width: 200px;
      padding: 15px;
      border: 1px solid #eee;
      background: #fff;
      border-radius: 10px;
      transition: transform 0.2s ease-in-out;
      cursor: pointer;
      position: relative;
  }

  .product-card:hover {
      transform: scale(1.02);
  }

  .product-row {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 50px;
  }

  /* Modal Styles */
  .product-modal {
      position: fixed;
      z-index: 9999;
      display: none;
      width: 90%;
      max-width: 400px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(0, 0, 0, 0.1);
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      padding: 15px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease;
  }

  .product-modal img {
      width: 100%;
      border-radius: 8px;
  }

  .product-modal .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      font-size: 1rem;
  }

  .product-modal .btn-close {
      border: none;
      background: none;
      font-size: 1.2rem;
      color: #333;
      cursor: pointer;
  }

  .modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      z-index: 9998;
      background-color: rgba(0, 0, 0, 0.3);
      display: none;
  }

  .section-title {
      font-size: 1.6rem;
      font-weight: 700;
      text-align: center;
      color: #222;
      margin-bottom: 1.5rem;
      position: relative;
  }

  .section-title::after {
      content: '';
      width: 60px;
      height: 3px;
      background: #0d6efd;
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      border-radius: 2px;
  }

  /* Product Cards */
  .product-card {
      width: 180px;
      padding: 12px;
      border-radius: 10px;
      background-color: #fff;
      border: 1px solid #eee;
      transition: box-shadow 0.3s ease;
  }

  .product-card:hover {
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .product-card img {
      border-radius: 6px;
  }

  .product-card h6 {
      font-size: 0.9rem;
      margin-top: 0.5rem;
      margin-bottom: 0.25rem;
  }

  .product-card .price {
      font-size: 0.85rem;
  }

  .product-slider-wrapper {
      overflow: hidden;
      padding: 0 40px;
  }

  .product-slider {
      display: flex;
      gap: 1rem;
      transition: transform 0.3s ease;
  }

  /* Scroll Buttons */
  .scroll-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #ffffff;
      border: 1px solid #ccc;
      border-radius: 50%;
      padding: 6px 10px;
      cursor: pointer;
      z-index: 5;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  }

  .scroll-btn:hover {
      background: #f0f0f0;
  }

  .left-arrow {
      left: 10px;
  }

  .right-arrow {
      right: 10px;
  }

  /* Modal */
  .product-modal {
      position: fixed;
      z-index: 9999;
      display: none;
      width: 90%;
      max-width: 400px;
      background: rgba(255, 255, 255, 0.97);
      border-radius: 10px;
      padding: 1rem;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
  }

  .modal-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.4);
      display: none;
      z-index: 9998;
  }

  .carousel-control-next {
  width: 3rem;
  height: 3rem;
  top: 40%;
  right: -1.5rem;
  background-color: #198754;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.carousel-control-next-icon {
  background-size: 100% 100%;
}
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: top 0.05s, left 0.05s;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background-color: #000;
  border-radius: 50%;
}
.zoom-img-wrapper {
  overflow: hidden;
  border-radius: 0.5rem;
}

.zoom-img-wrapper img {
  transition: transform 0.4s ease;
}

.zoom-img-wrapper:hover img {
  transform: scale(1.1);
}
 #hummingHerbsBanner .carousel-item {
  height: auto;
  position: relative;
  background-color: #000; /* fallback if image fails */
}

#hummingHerbsBanner .carousel-item img {
  object-fit: cover;
  height: auto;
  width: 100%;
  filter: brightness(70%);
}

#hummingHerbsBanner .carousel-caption {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  padding: 60px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

#hummingHerbsBanner .carousel-caption h2,
#hummingHerbsBanner .carousel-caption p {
  max-width: 600px;
}
.gallery-thumb {
  border: 2px solid transparent;
  transition: border 0.3s;
}
.gallery-thumb:hover {
  border: 2px solid #28a745;
}

 .custom-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  }

  .custom-icon {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
  }

  .card-body {
    text-align: center;
  }
  .buy-now-btn {
  background-color: #28a745;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.buy-now-btn:hover {
  background-color: #218838;
  box-shadow: 0 4px 15px rgba(0, 128, 0, 0.3);
  transform: translateY(-2px);
  color: #fff;
}
#buyNowBtn:hover {
  background-color: #218838;
  box-shadow: 0 3px 10px rgba(0, 128, 0, 0.3);
  transform: translateY(-1px);
}
/* Transparent for home top */
/*.transparent-header {
  background-color: transparent !important;
  color: #fff;
}

  .transparent-header .nav-link,
  .transparent-header .navbar-brand,
  .transparent-header .fa-shopping-cart {
    color: #fff !important;
  }

    .transparent-header .nav-link:hover,
    .transparent-header .nav-link.active {
      color: #81C784 !important;
    }
*/
/* White header on scroll or inner pages */
.white-header {
  background-color: #fff !important;
  color: #212121;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

  .white-header .nav-link,
  .white-header .navbar-brand,
  .white-header .fa-shopping-cart {
    color: #212121 !important;
  }

    .white-header .nav-link:hover,
    .white-header .nav-link.active {
      color: #2E7D32 !important;
    }

/* Smooth transition */
#site-header {
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* WhatsApp Widget Styles */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

    .whatsapp-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }

    .whatsapp-button i {
        font-size: 32px;
        color: white;
    }

.whatsapp-pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    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);
    }
}

/* WhatsApp Modal Styles - SMALLER VERSION */
.whatsapp-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

.whatsapp-modal-content {
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    width: 320px;
    overflow: hidden;
}

.whatsapp-modal-header {
    background: #25D366;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .whatsapp-modal-header h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 600;
    }

        .whatsapp-modal-header h3 i {
            margin-right: 6px;
            font-size: 14px;
        }

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

    .whatsapp-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

.whatsapp-modal-body {
    padding: 14px;
}

    .whatsapp-modal-body p {
        margin: 0 0 10px 0;
        color: #666;
        font-size: 12px;
    }

    .whatsapp-modal-body label {
        display: block;
        margin-bottom: 6px;
        font-weight: 500;
        color: #333;
        font-size: 13px;
    }

    .whatsapp-modal-body textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        font-size: 13px;
        font-family: inherit;
        resize: vertical;
        transition: border-color 0.2s;
        box-sizing: border-box;
        min-height: 70px;
    }

        .whatsapp-modal-body textarea:focus {
            outline: none;
            border-color: #25D366;
        }

.whatsapp-modal-footer {
    padding: 0 14px 14px;
}

.whatsapp-send-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

    .whatsapp-send-btn:hover {
        background: #20BA5A;
    }

    .whatsapp-send-btn i {
        font-size: 16px;
    }

/* Quick Replies Styles - SMALLER */
.quick-replies {
    display: grid;
    gap: 6px;
    margin-bottom: 10px;
}

.quick-reply-btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 12px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .quick-reply-btn:hover {
        background: #e8f5e9;
        border-color: #25D366;
    }

    .quick-reply-btn i {
        color: #25D366;
        font-size: 12px;
    }

.whatsapp-modal-body > div[style*="margin: 16px"] {
    margin: 10px 0 !important;
    text-align: center;
    color: #999;
    font-size: 11px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

        .whatsapp-button i {
            font-size: 26px;
        }

    .whatsapp-modal {
        bottom: 80px;
        right: 10px;
        left: 10px;
    }

    .whatsapp-modal-content {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
}