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;
}

.trending-section {
  background: #fff;
}

.section-title {
  font-weight: bold;
  font-size: 2rem;
  color: #333;
}

.product-card {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  transition: 0.3s ease;
  width: 100%;
  border-radius: 8px;
}

.product-img .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-img:hover .main-img {
  opacity: 0;
}

.product-img:hover .hover-img {
  opacity: 1;
}

.buy-btn {
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

.buy-btn:hover {
  background-color: #ffeb3b !important; /* yellow background */
  color: #000 !important;
}

.emoji-container {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
}

.buy-btn:hover .emoji-container {
  bottom: 5px;
  opacity: 1;
}


.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;
}

/* tranding body css */

/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
}

/* Trending Section */
.trending-section {
  padding: 50px 10%;
  text-align: center;
  background-color: #fff;
}

.trending-section h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 40px;
  text-transform: uppercase;
  animation: fadeIn 2s ease-in-out;
}

/* Product Cards */
.product-card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 15px;
  text-align: center;
  width: calc(33.33% - 40px);
  margin: 20px;
  animation: slideIn 1s ease-out;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-card h3 {
  font-size: 22px;
  color: #333;
  margin: 10px 0;
  text-transform: capitalize;
  font-weight: 600;
}

.product-card p {
  color: #777;
  font-size: 16px;
  margin-bottom: 15px;
}

.product-card .price {
  font-size: 18px;
  font-weight: bold;
  color: #ff4e50;
  margin-bottom: 15px;
}

.product-card .buy-btn {
  padding: 10px 20px;
  background-color: #ff4e50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.product-card .buy-btn:hover {
  background-color: #333;
}

/* Hover Animation for Card */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Flexbox Layout */
.trending-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trending-section {
    padding: 50px 20px;
  }

  .product-card {
    width: calc(50% - 40px);
  }

  .trending-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .trending-section h2 {
    font-size: 24px;
  }

  .product-card {
    width: 100%;
    margin: 15px 0;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .product-card .price {
    font-size: 16px;
  }

  .product-card .buy-btn {
    padding: 8px 15px;
  }
}

/* Keyframe Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


