 h2 {
      font-size: 2rem;
      margin: 40px 0;
      color: #3a2d1f;
      font-weight: 600;
    }
    
body {
       font-family: 'Noto Sans Devanagari', sans-serif;
     }

    .category-section 
    {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      max-width: 1100px;
      margin: auto;
      padding: 0 20px 60px;
    }

    .category-card 
    {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transform: translateY(40px);
      opacity: 0;
      animation: fadeUp 1s ease forwards;
    }

    /* Staggered animation */
    .category-card:nth-child(1) { animation-delay: 0.2s; }
    .category-card:nth-child(2) { animation-delay: 0.4s; }
    .category-card:nth-child(3) { animation-delay: 0.6s; }
    .category-card:nth-child(4) { animation-delay: 0.8s; }

    .category-card img 
    {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .category-card:hover img 
    {
      transform: scale(1.1);
    }

    .category-title 
    {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.9);
      color: #3a2d1f;
      padding: 12px 0;
      font-size: 1.1rem;
      font-weight: bold;
      letter-spacing: 0.5px;
      transition: background 0.3s ease;
    }

    .category-card:hover .category-title 
    {
      background: rgba(255, 215, 179, 0.95);
    }

    @keyframes fadeUp 
    {
      to 
      {
        transform: translateY(0);
        opacity: 1;
      }
    }

     .hero-header 
     {
         background: url("https://baisajewel.com/img/raj_jewel_image3.png");
         width: 100%;
         height: auto;
         min-height: 90vh; /* full screen height */
         background-color: #f8f8f8; /* fallback color */
         display: flex;
         align-items: center;
         justify-content: center;
     }
   
   /* Optional: prevent white space around image */
      @media (max-width: 768px) 
      {
        .hero-header 
        {
          min-height: 80vh; /* reduce height on mobile */
          background-size: contain;
        }
      }


   /* 💻 Desktop fix — make it edge-to-edge and cover */
   @media (min-width: 992px) 
   {
        .hero-header 
        {
          background-size: cover;
          background-position: center center;
          width: 100vw; /* ensure it spans full viewport width */
          margin-left: calc(50% - 50vw); /* remove container side margins */
        }
      }

     
     /* Overlay */
     .hero-header::before 
     {
       content: "";
       position: absolute;
       inset: 0;
       background: rgba(0, 0, 0, 0.15);
       z-index: 1;
     }

     /* Responsive handling */
     @media (max-width: 992px) {
       .hero-header {
         min-height: 31vh;
         background-size: contain;
         background-position: center top;
       }
     }

     @media (max-width: 768px) {
       .hero-header {
         min-height: 31vh;
         background-size: contain;
         background-position: center;
       }
     }

     @media (max-width: 480px) {
       .hero-header {
         min-height: 30vh !important;
         background-size: contain;
       }
     }

  
  
   /* Top Bar */
  .top-bar {
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .icon-btn {
    cursor: pointer;
    font-size: 24px;
    color: #333;
    transition: 0.2s;
  }

  .icon-btn:hover {
    color: #a2784d; /* subtle hover color */
  }
  
  .search-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 50px 80px;
  overflow-y: auto;
  z-index: 9999;
}

.search-container.active {
  display: flex;
}

.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  border-bottom: 2px solid #ccc;
}

.search-input {
  flex: 1;
  border: none;
  font-size: 22px;
  outline: none;
  padding: 10px;
}

.close-icon {
  font-size: 20px;
  cursor: pointer;
}

.search-results {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
  max-width: 1000px;
  gap: 40px;
  margin-top: 40px;
}

/* --- Left Side (Category) --- */
.left-side h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.left-side ul {
  list-style: none;
  padding: 0;
}

.left-side li {
  padding: 5px 0;
  cursor: pointer;
  color: #555;
}


.left-side li:hover {
  color: #a67c52;
}

/* --- Right Side (Product) --- */
.product-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-item img 
{
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.product-item h4 
{
  margin: 0;
  font-weight: 500;
}

 .floating-cart 
 {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    z-index: 1000;
    text-decoration: none;
  }
  
  .floating-cart:hover 
  {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .floating-cart .badge 
  {
    font-size: 0.8rem;
    padding: 0.4em 0.5em;
  }
  
   /* -------- Base Styling -------- */
  #categories {
    padding: 50px 0;
  }

  .section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
    color: #222;
  }

  .category-carousel-container {
    position: relative;
    overflow: hidden;
  }

  .category-carousel {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .category-carousel::-webkit-scrollbar {
    display: none;
  }

  .category-card {
    flex: 0 0 auto;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .category-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .category-card:hover {
    transform: scale(1.05);
  }

  .category-title {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #000;
  }

  .arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 26px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    z-index: 5;
  }

  .arrow:hover {
    background-color: #eee;
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }

  .mobile-category-grid {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* -------- Responsive Styling -------- */

  /* ✅ For tablets (≤1024px) */
  @media (max-width: 1024px) {
    .category-card {
      width: 200px;
    }
    .category-card img {
      height: 220px;
    }
    .category-title {
      font-size: 16px;
    }
  }

  /* ✅ For mobile landscape (≤768px) */
  @media (max-width: 768px) {
    .category-carousel-container {
      display: none;
    }
    .mobile-category-grid {
      display: grid;
    }
    .category-card {
      width: 100%;
    }
    .category-card img {
      height: 180px;
    }
    .category-title {
      font-size: 15px;
    }
  }

  /* ✅ For small phones (≤480px) */
  @media (max-width: 480px) {
    #categories {
      padding: 30px 0;
    }
    .section-title {
      font-size: 22px;
      margin-bottom: 25px;
    }
    .mobile-category-grid {
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }
    .category-card img {
      height: 150px;
      border-radius: 10px;
    }
    .category-title {
      font-size: 14px;
      margin-top: 6px;
    }
  }

  /* ✅ For extra small phones (≤360px) */
  @media (max-width: 360px) {
    .mobile-category-grid {
      grid-template-columns: 1fr;
    }
    .category-card img {
      height: 200px;
    }
  }
  
  .section-title {
  font-size: 32px;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

/* Product card */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #000;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 10px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
}

.product-image {
  width: 100%;
  max-width: 240px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

/* Product info text */
.product-info {
  text-align: center;
  margin-top: 12px;
}

.product-name {
  font-size: 16px;
  font-weight: 300;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.product-price {
  font-family: 'Roboto', sans-serif;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
  margin-right: 8px;
}

.new-price {
  font-weight: 600;
  color: #b8860b;
  font-size: 18px;
}


/* Responsive */
@media (max-width: 768px) {
  
  .section-title {
    font-size: 24px;
  }
  
  .product-name {
    font-size: 14px;
  }
  
  .new-price {
    font-size: 16px;
  }
  
  .product-image {
    max-width: 180px;
    height: 160px;
  }
}

.product-card {
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.product-name {
  font-size: 1rem;
  font-weight: 500;
}

.old-price {
  color: #888;
  margin-right: 5px;
}

.new-price {
  color: #ff6d38;
}

.product-actions button 
{
  transition: transform 0.2s;
}

.product-actions button:hover {
  transform: scale(1.05);
}

 /* Base styling */
  .search-form {
    max-width: 300px;
  }

  .search-input {
    border-radius: 20px;
    flex: 1;
  }

  /* Mobile responsive adjustments */
  @media (max-width: 768px) {
    .search-form {
      flex: 1;
      max-width: none;
      width: 100%;
      margin-left: 10px;
      margin-right: 10px;
    }

    .search-input {
      width: 100%;
      margin-bottom: 8px;
    }

    .search-btn {
      flex-shrink: 0;
    }

    .navbar .container {
      flex-wrap: wrap;
    }
  }
  
  .testimonial-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #fff;
      overflow: hidden;
      position: relative;
    }

    .testimonial-section h2 {
      font-size: 28px;
      margin-bottom: 40px;
      color: #111;
      font-weight: 600;
    }

    /* Slider container */
    .slider {
      display: flex;
      transition: transform 0.6s ease;
      width: 300%;
    }

    .testimonial-wrapper {
      overflow: hidden;
      max-width: 1000px;
      margin: 0 auto;
    }

    .testimonial-card {
      flex: 1 0 33.33%;
      box-sizing: border-box;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      border-radius: 10px;
      padding: 25px 20px;
      margin: 0 10px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
    }

    .testimonial-img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
      border: 3px solid #f4c542;
    }

    .stars {
      color: gold;
      margin-bottom: 10px;
      font-size: 18px;
    }

    .testimonial-text {
      font-size: 15px;
      color: #333;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .testimonial-name {
      font-weight: 600;
      font-size: 16px;
      margin-bottom: 5px;
    }

    .testimonial-location {
      font-size: 14px;
      color: #666;
    }

    /* Dots Navigation */
    .dots {
      text-align: center;
      margin-top: 25px;
    }

    .dot {
      height: 10px;
      width: 10px;
      margin: 0 5px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .dot.active {
      background-color: #333;
    }

    @media (max-width: 768px) 
    {
      .testimonial-card 
      {
        flex: 1 0 100%;
        margin: 10px 0;
      }

      .slider 
      {
        width: 300%;
      }
    }
    
    .boutique-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  position: relative;
}

.boutique-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #c5a36d;
  margin: 10px auto 0;
  border-radius: 2px;
}

.boutique-image-wrapper {
  display: flex;
  justify-content: center;
}

.boutique-image {
  border-radius: 10px;
  width: 877px;
  height: 493px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

/* ✅ Responsive Media Queries */

/* Tablets (landscape and portrait) */
@media (max-width: 992px) {
  .boutique-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }

  .boutique-image {
    width: 90%;
    height: auto;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .boutique-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .boutique-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .boutique-section h2::after {
    width: 60px;
    height: 2px;
  }
}

.search-results {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.left-side h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
}

.left-side ul {
  list-style: none;
  padding: 0;
}


.left-side li {
  padding: 4px 0;
  color: #555;
  cursor: pointer;
}

.left-side li:hover {
  color: #a67c52;
}

.right-side .product-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.product-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.product-item h4 {
  margin: 0;
  font-weight: 500;
}

#searchResults .left-side, #searchResults .right-side {
  margin-bottom: 10px;
}
#searchResults ul {
  list-style: none;
  padding: 0;
}
#searchResults li a {
  text-decoration: none;
  color: #333;
}
#searchResults li a:hover {
  color: #b22222;
}
.product-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px;
  border-bottom: 1px solid #eee;
}
.product-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}
.product-item:hover {
  background-color: #f9f9f9;
}
  
