 h3 {
      font-weight: 700;
      margin-bottom: 20px;
    }

    .swiper {
      padding: 20px 10px;
    }

    .swiper-slide {
      height: auto;
    }

    .category-card {
      /* border: 1px solid #ddd;
      border-radius: 15px; */
      /* background-color: #fff; */
      overflow: hidden;
      text-align: center;
      transition: 0.3s ease-in-out;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 10px;
    }

    .category-card img {
      width: 100%;
      height: 140px;
      object-fit: contain;
      /* background-color: #f0f0f0; */
      border-radius: 10px;
    }

    .category-card p {
      margin-top: 10px;
      font-weight: 500;
      color: #350264;
      font-size: 14px;
    }
.category-card:hover p {
  color: #7D0EE6; /* Change this to any color you like on hover */
}
    /* .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    } */

      body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 0;
    }

/* 🔹 Sticky Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* 🔹 Announcement Bar */





/* 🔹 Logo */
.logo {
    height: 50px;
    width: 50px;
}

/* 🔹 Search Box */
.search-box {
    flex: 1;
    display: flex;
    max-width: 400px;
}

.search-box input {
    border-right: none;
    flex: 1;
}

.search-box button {
    border-left: none;
}
/* Icons को बड़ा करने के लिए */
.icons {
    font-size: 36px; /* पहले 30px था, अब बड़ा कर दिया */
   
}

.icons a {
    font-size: 1.8rem; /* पहले 1.5rem था, अब 1.8rem */
    color: black;
    
}


/* 🔹 Navbar */
.navbar {
    background-color: 	#2C3E50;
    height: 50px;
    
}

.navbar-nav .nav-item {
    padding: 0 10px;
    /* color: white; */
}

.navbar-nav .nav-link {
    color: white;
    font-size: 14px;
}

.navbar-toggler {
    border: none;
    color: white;
}

/* 🔹 Responsive Styles */
@media (max-width: 1024px)
 {
    /* .search-box {
        max-width: 100%;
    } */
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
    }

    /* .search-box {
        margin-top: 10px;
        width: 100%;
    } */

    .icons {
        margin-top: 10px;
    }

    .icons a:not(:last-child) { 
        display: none; /* Only WhatsApp icon visible on mobile */
    }

    .navbar-nav .nav-item {
       color: white;
    }
}

/* Dropdown Menu Styling */
.navbar .dropdown-menu {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-menu a {
    color: black;
    padding: 10px;
}

.navbar .dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* Full-width Logo Section */
.top-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: white;
}
/* Common Styles for Icons Section */
/* .icons {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.icons .btn {
    font-size: 18px;
    color: #333;
    padding: 5px 10px;
} */

/* Ensure same design for all devices */
@media (max-width: 768px) {
    .icons {
        justify-content: space-around;
        width: 100%;
    }
    
    .icons .btn {
        font-size: 16px;
        padding: 5px;
    }

    /* Mobile-specific adjustments */
    .search-box {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-box input {
        width: 100%;
        max-width: 300px;
    }

    .location-box-mobile {
        position: absolute;
        width: 90%;
        left: 5%;
        z-index: 1000;
    }
}

/* Location Box for Desktop & Mobile */
.location-box, .location-box-mobile {
    width: 270px;
    position: absolute;
    background: white;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 8px;
    z-index: 1000;
}

/* Button and Icons */
.location-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: #333;
}

.location-btn:hover {
    color: #ff6600;
}



/* Navbar Off-Canvas for Mobile */
@media (max-width: 768px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -250px; /* Initially hidden */
        width: 250px;
        height: 100vh;
        background: #333; /* Change background color */
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease-in-out;
        padding-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: start;
        padding-left: 20px;
    }
    
    .navbar-collapse.show {
        right: 0; /* Slide-in effect */
    }
    
    .navbar-nav .nav-link {
        color: white; /* Change menu text color */
    }
    
    .navbar-toggler {
        border: none;
        color: white;
    }
    
    /* Close Button */
    /* .close-menu {
        color: white;
        font-size: 24px;
        background: none;
        border: none;
        position: absolute;
        top: 10px;
        right: 15px;
        cursor: pointer;
    } */
}
/* Search Box Styling */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

/* Search Input Styling */
.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px; /* Left padding for text, right for icon */
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

/* Search Icon Inside Input */
.search-icon {
    position: absolute;
    right: 15px; /* Icon ko right side par rakhne ke liye */
    color: gray;
    font-size: 16px;
    cursor: pointer;
}

/* 🔹 Search Box Styling */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
}

/* 🔹 Search Input */
.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px; /* Left padding for text, right for icon */
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

/* 🔹 Search Icon Inside Input */
.search-icon {
    position: absolute;
    right: 15px;
    color: gray;
    font-size: 16px;
    cursor: pointer;
}

/* 🔹 Responsive Styles */
@media (max-width: 768px) {
    .search-box {
        width: 100%;
        max-width: 100%;
    }

    .search-input {
        padding: 12px 40px 12px 15px; /* Mobile ke liye padding thodi badhayi */
        font-size: 16px; /* Mobile par text readable ho */
    }

    .search-icon {
        right: 80px; /* Mobile view me icon ka spacing adjust */
        font-size: 18px;
    }
}


.container{
  width: 1100px;
}
.navbar-brand {
      font-weight: bold;
      color: blueviolet !important;
    }

    .nav-link {
      font-weight: 500;
      color: #333 !important;
    }

    .nav-link:hover {
      color: blueviolet !important;
    }

    .navbar-nav-center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

    @media (max-width: 991.98px) {
      .navbar-nav-center {
        position: static;
        transform: none;
      }
    }

    .navbar-toggler {
      border: none;
    }

    .icon-btn {
      background: none;
      border: none;
      font-size: 18px;
      margin-left: 10px;
      color: #333;
    }

    .icon-btn:hover {
      color: blueviolet;
    }

/* By default, hide close button on desktop */
.close-menu {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: #000;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}

/* Show close button only on mobile */
@media (max-width: 768px) {
    .close-menu {
        display: block;
    }
}
@media (min-width: 768px) {
    .navbar-nav {
        justify-content: flex-start !important;
        text-align: justify;
    }
}

.navbar-nav .nav-link,
.navbar-nav .dropdown-menu  {
  color: white !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .dropdown-menu S:hover {
  color: #ddd !important;
}

/* ======================================================== */



.carousel-inner img {
    width: 100%;
    height: auto;
    max-height: 500px; /* Adjust this value as per need */
    object-fit: cover;
}

/* Responsive caption styling */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5); 
    padding: 15px;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-inner img {
        max-height: 300px;
    }
    .carousel-caption h5 {
        font-size: 16px;
    }
    .carousel-caption p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .carousel-inner img {
        max-height: 250px;
    }
    .carousel-caption {
        padding: 10px;
    }
    .carousel-caption h5 {
        font-size: 14px;
    }
    .carousel-caption p {
        font-size: 10px;
    }
}




.product-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease-in-out;
    /* margin-bottom: 20px; */

    /* ✅ Ensure all cards are same height */
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  }

  .product-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  .product-info {
    padding: 12px;
  }

  .product-info h6 {
    font-size: clamp(11px, 1.8vw, 14px);
    font-weight: 600;
    margin: 0;
  }

  .product-price {
    font-size: clamp(13px, 1.8vw, 15px);
    margin-top: 5px;
    color: #222;
    font-weight: bold;
  }

  .product-price del {
    color: #888;
    margin-right: 6px;
  }

  .rating {
    color: #ffc107;
    font-size: clamp(12px, 1.6vw, 14px);
    margin-top: 4px;
  }

  .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }

  .section-title h4 {
    font-size: 25px;
    margin: 0;
  }
/* 
  .section-title a {
    font-size: clamp(13px, 2vw, 15px);
    text-decoration: none;
    color: #0d6efd;
  } */


  /* Tablet (≥576px) */
@media (min-width: 576px) {
  .section-title h4 {
    font-size: 20px;
  }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .section-title h4 {
    font-size: 22px;
  }
}
  /* ✅ Mobile responsive heading center + smaller */
  @media (max-width: 576px) {
    .section-title {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 5px;
    }

    .section-title h4 {
      font-size: 18px !important;
    }

    .section-title a {
      font-size: 13px !important;
    }
  }


  /* ========================================================================= */

      .category-cards {
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .category-cards img {
      border-radius: 15px;
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .category-cards:hover img {
      transform: scale(1.05);
    }

    /* .category-card:hover {
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    } */
.category-name {
  text-align: center;
  font-size: clamp(12px, 2vw, 16px); /* responsive font size */
  font-weight: 500;
  margin-top: 8px;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

    @media (max-width: 767px) {
      .category-cards {
        margin-bottom: 20px;
      }
    }

    
.breadcrumb-item a {
  color: #333;              /* Home ka color */
  font-weight: 600;         /* Home bold */
  text-decoration: none;    /* Underline hatana */
}

  
.breadcrumb-item.active {
  color: #350264 !important; /* Birthday Decorations ka color (aap chahe toh change kar sakte) */
  font-weight: 700;          /* Birthday bold */
}

.dropdown .btn-outline-primary {
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #7d0ee6;
  border: 1px solid #7d0ee6;
  background-color: transparent;
  transition: all 0.3s ease;
}

.dropdown .btn-outline-primary:hover,
.dropdown .btn-outline-primary:focus {
  background-color: #7d0ee6;
  color: #fff;
  box-shadow: 0 2px 8px rgba(125, 14, 230, 0.2);
}

.dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  padding: 8px 0;
}

.dropdown-menu .dropdown-item {
  padding: 8px 20px;
  color: #333;
  transition: background 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #f3f3f3;
  color: #7d0ee6;
  font-weight: 500;
}
  .row.g-3:not(:target) {
    display: none;
  }

  .row.g-3:target {
    display: flex;
    flex-wrap: wrap;
  }

  /* Make tab buttons adapt to screen size */
.small-tab-btn {
  font-size: 14px;
  padding: 6px 12px;
  white-space: normal !important;
  text-align: center;
}

/* On smaller screens, reduce font */
@media (max-width: 576px) {
  .small-tab-btn {
    font-size: 12px;
    padding: 5px 8px;
  }
}


/* =================================================== */

   .img-thumbnail {
      cursor: pointer;
      transition: border 0.2s ease-in-out;
    }

    .img-thumbnail:hover {
      border: 2px solid #7D0EE6;
    }

    .btn-pink {
      background-color: #FF5DA2;
      color: white;
    }

    .btn-pink:hover {
      background-color: #e94c94;
    }

    .tab-content ul {
      padding-left: 1.2rem;
    }

    .tab-content ul li {
      margin-bottom: 0.5rem;
    }

    .product-price del {
      font-size: 14px;
    }

    .form-select-city {
      background: #f8f9fa;
      padding: 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    .select-city-label {
      font-weight: 600;
      margin-bottom: 4px;
    }

    .gap-5-custom {
      row-gap: 1rem;
      column-gap: 2rem;
    }

    @media (max-width: 991.98px) {
      .gap-5-custom {
        flex-direction: column;
      }
    }

    /* Responsive Tab Text */
.custom-tab-btn {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  padding: 8px 16px;
  white-space: nowrap;
}

.custom-tab-btn.active {
  color: #004AAD; /* Blue text like screenshot */
  border-bottom: 3px solid #004AAD;
  background-color: transparent;
}

/* Mobile font size adjustment */
@media (max-width: 576px) {
  .custom-tab-btn {
    font-size: 10px;
    padding: 6px 10px;
  }
}

  .custom-btn {
    padding: 12px 16px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease-in-out;
  }

  .btn-pink {
    background-color: #FF5DA2;
    color: white;
    border: none;
  }

  .btn-pink:hover {
    background-color: #e94c94;
  }

  .btn-success:hover {
    background-color: #218838;
  }

  @media (max-width: 576px) {
    .custom-btn {
      font-size: 14px;
      padding: 10px;
    }
  }

  /* Remove default active border */
.nav-tabs .nav-link {
  color: #2c49d8;
  border: none;
  padding-bottom: 8px;
  font-weight: 500;
}

/* Active Tab Style */
.nav-tabs .nav-link.active {
  color: #2c49d8; /* Blue shade for active text */
  border-bottom: 3px solid #2c49d8; /* Custom bottom border */
  font-weight: 600;
}

/* Optional hover effect */
.nav-tabs .nav-link:hover {
  color: #2c49d8;
}
