body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to right, #ffffff, #ffffff);
}

/* General Navbar Styles */
.site-header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand {
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-nav .nav-link {
  position: relative;
  color: #333;
  font-weight: 600;
  margin: 0 10px; /* Reduced margin for better space */
  padding: 8px 5px; /* Reduced padding */
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 16px; /* Reduced font size for mobile */
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #ff4e50;
  transition: all 0.3s ease;
  opacity: 0;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  opacity: 1;
}


/* Mobile View Adjustments (for screens below 991px) */
@media (max-width: 991px) {
  .navbar-toggler {
    border: none;
  }

  .navbar-toggler-icon {
    background-color: #ffffff;
  }

  .navbar-collapse {
    text-align: center;
    padding-top: 10px;
  }

  .navbar-nav {
    width: 100%;
    padding: 0;
  }

  .navbar-nav .nav-item {
    margin: 12px 0; /* More space between items */
  }

  .navbar-nav .nav-link {
    padding: 10px 0; /* Reduced padding to prevent extra height */
    font-size: 18px; /* Slightly larger font size for readability on mobile */
  }

  /* Navbar link hover effect */
  .navbar-nav .nav-link:hover::after {
    width: 100%;
    opacity: 1;
  }
}

/* Toggler icon customization */
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .main-nav .nav-link {
    display: block;
    margin: 10px 0;
    font-size: 20px;
  }
}

.gift-banner {
  height: 200px;
  width: 100%;
  margin-top: 5px;
  background-image:url(Image/Banner.jpg); /* image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h2 {
  font-weight: bold;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  animation: pulse 1.5s infinite;
}

.whatsapp-btn:hover {
  background-color: #1ebd5a;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.carousel-inner img {
  height: 400px;
  object-fit: cover;
}

/* Product Detail Section */

/* Reviews Section */
.customer-reviews {
  background-color: #fff7f0;
  border-top: 2px solid #ffbb99;
}

.review-box {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.review-box p {
  font-size: 16px;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.review-box h5 {
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
}

.review-box .stars {
  font-size: 20px;
  color: #f8c200;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 2px solid black;
  border-radius: 50%;
  position: relative;
}

.carousel-control-prev-icon::after,
.carousel-control-next-icon::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid black;
  border-right: 2px solid black;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(220deg);
}

.carousel-control-next-icon::after {
  transform: translate(-50%, -50%) rotate(50deg);
}

/* Related Products */
.related-products {
  margin-top: 50px;
}

.related-products h5 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

.related-products .product {
  text-align: center;
  padding: 15px;
}

.related-products img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .main-product-img {
    width: 100%;
    max-width: 250px;
  }

  .thumbnail-container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .buy-now-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

/* Product Description */
.product-description {
  text-align: left;
  background-color: #f9f9f9;
  padding: 15px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.product-description h5 {
  font-weight: bold;
  color: #333;
}

.product-description p {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}



.site-footer {
  background: #0d0d0d;
  color: #f0f0f0;
  font-size: 15px;
}

.footer-nav a {
  color: #f0f0f0;
  text-decoration: none;
  transition: 0.3s;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.trusted-text {
  font-style: italic;
  font-size: 14px;
}

.social-icons .social-btn {
  background: #ffffff;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: transform 0.3s ease, background 0.3s;
}

.social-icons .social-btn:hover {
  transform: scale(1.3);
}

/* Specific Colors */
.social-btn.whatsapp { color: #25D366; }
.social-btn.youtube { color: #FF0000; }
.social-btn.instagram { color: #E1306C; }
.social-btn.facebook { color: #1877F2; }

.social-label {
  color: #f0f0f0;
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
  text-align: center;
}


.footer-policy {
  color: #bbb;
  text-decoration: none;
}

.footer-policy:hover {
  color: #fff;
  text-decoration: underline;
}




