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 {
  position: relative;
  height: 30px; /* Adjust if needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-banner {
  position: relative;
  width: 100%;
  height: 65vh; /* Responsive height based on viewport */
  min-height: 100px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gift-banner video.banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.gift-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
}

.gift-banner .banner-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 15px;
}

.banner-text h1 {
  color: #fff;
  font-size: 4vw;
  font-weight: bold;
  text-transform: uppercase;
  animation: fadeInUp 2s ease-in-out forwards;
  opacity: 0;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Extra responsive tweaks */
@media (max-width: 768px) {
  .banner-text h1 {
    font-size: 6vw;
  }
}

@media (max-width: 480px) {
  .banner-text h1 {
    font-size: 8vw;
  }
}


.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;
}

/* jewellery body css */

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
    }

    body {
      background: #fff;
    }

    .category-filter {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .category-filter button {
      padding: 10px 15px;
      border: none;
      background: #f3f3f3;
      border-radius: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .category-filter button:hover,
    .category-filter button.active {
      background: #ff007f;
      color: #fff;
    }

    .products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .product {
      background: #fff;
      border-radius: 10px;
      padding: 15px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: fadeIn 0.6s ease-in-out;
    }

    .product:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .product img {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .product h3 {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 5px;
    }

    .product p {
      color: #777;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media screen and (max-width: 600px) {
      .category-filter {
        gap: 6px;
      }

      .category-filter button {
        font-size: 12px;
        padding: 6px 10px;
      }
    }


    .buy-btn {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 75, 43, 0.5);
}

.buy-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10.01%);
  background-size: 10px 10px;
  animation: sparkle 2s linear infinite;
  pointer-events: none;
}

.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(255, 75, 43, 0.7);
}

@keyframes sparkle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

