 body { font-family: 'Segoe UI', sans-serif; background-color: #f8f9fa; }
    .navbar-brand { font-weight: bold; color: #d4af37 !important; }
    .nav-link { color: #333; font-weight: 500; }
    .nav-link:hover { color: #d4af37; }
    .badge { font-size: 0.7rem; padding: 0.35em 0.55em; }
    .nav-link { position: relative; display: inline-flex; align-items: center; }
   /* Ensuring dropdown menu has a maximum height and scroll behavior */
    ul.dropdown-menu.subcategory-menu {
        max-height: 300px;
        overflow-y: auto;
        text-transform: uppercase;
    }
    
    /* Adding smooth hover effect on dropdown items */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Optional: Style for scroll bar */
    ul.dropdown-menu.subcategory-menu::-webkit-scrollbar {
        width: 6px;
    }
    
    ul.dropdown-menu.subcategory-menu::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 3px;
    }
    
    ul.dropdown-menu.subcategory-menu::-webkit-scrollbar-thumb:hover {
        background-color: #555;
    }

  .carousel img {
    height: 450px;
    object-fit: cover;
  }
  .section-heading {
    border-left: 5px solid #ffc107;
    padding-left: 15px;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  .product-img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  .btn-cart {
    background-color: #28a745;
    color: #fff;
  }
  .btn-cart:hover {
    background-color: #218838;
  }
  .product-card {
  transition: all 0.3s ease-in-out;
  border: none;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  border-radius: 10px;
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-image-wrapper img {
  transition: transform 0.3s ease;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

.hover-icons {
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  /*background: rgba(255, 255, 255, 0.85);*/
  padding: 10px;
  border-radius: 8px;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; /* Ensure it's above carousel controls */
}

.product-card:hover .hover-icons {
  opacity: 1;
}

.icon-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 5px 10px;
}
/* Gallery Section */
.gallery-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #f1f1f1;
  transition: transform 0.3s ease;
}

/* Fix: Add hover effect to image inside gallery card */
.gallery-card:hover img {
  transform: scale(1.05);
  cursor: pointer;
}

/* Show the icon on hover */
.gallery-card:hover .hover-icon {
  opacity: 1;
}

.product-card img {
    height: 200px;
 
    object-fit: cover;
}
/* Make sure hover icons stay on top */
.product-image-wrapper {
  position: relative;
}


.hover-icon2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4); /* transparent black */
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}
.gallery2 img {
  width: 100%;
  height: 150px; /* Fixed height */
  object-fit: cover; /* Keeps the image proportionally scaled */
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Optional: subtle shadow */
}

.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.floating-cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #000;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.cart-badge {
  font-size: 10px;
  padding: 4px 6px;
}
 .faq-section {
  background-color: #f8f9fa;
  padding: 40px 0;
}
.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #000;
  font-weight: bold;
}
.accordion-item {
  border: 1px solid #ddd;
}
.video-wrapper iframe {
  width: 100%;
  height: 315px;
  margin-bottom: 15px;
}
.gallery2 img {
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.gallery2 img:hover {
  transform: scale(1.05);
}
.swiper-button-next:after, .swiper-button-prev:after {
    color: black;
}