/* Variable Declaration */
:root {
  --font-primary2: "Manrope", sans-serif;
  --font-primary: "Fjalla One", sans-serif;
  --font-secondary: "Space Grotesk", sans-serif;
}
/* General Reset */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary2);
}

/* Base Styles */
.site-header {
  background: white;
  font-family: var(--font-primary2);
  border-bottom: 1px solid #ccc;
}

.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px 20px;
  justify-content: space-between;
  gap: 12px;
}

.left-logo {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: bold;
}

.search-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: white;
  padding: 4px;
  border-radius: 40px;
  border: 1px solid #ccc;
  flex: 1;
  max-width: 600px;
  gap: 10px;
}

.search-wrap input {
  font-family: var(--font-primary);
  flex: 1;
  padding: 10px 15px;
  margin-left: 15px;
  border: none;
  border-radius: 1rem;
  outline: none;
  background: transparent;
}

.camera-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.search-btn {
  background: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0px, transparent 86.18%), radial-gradient(66% 66% at 26% 20%, rgba(255, 255, 255, 0.55) 0px, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%),#1E90ff ;
  box-shadow: rgba(255, 255, 255, 0.1) -3px -3px 9px inset, rgba(255, 255, 255, 0.15) 0 3px 9px inset, rgba(255, 255, 255, 0.6) 0 1px 1px inset, rgb(46 131 195 / 30%) 0 -8px 36px inset, rgba(255, 255, 255, 0.6) 0 1px 5px inset, rgba(0, 0, 0, 0.2) 2px 19px 31px;
  border: 1px solid #ffffff10;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}

.signup-btn {
  background: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, 0.23) 0px, transparent 86.18%), radial-gradient(66% 66% at 26% 20%, rgba(255, 255, 255, 0.55) 0px, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%),#1E90ff ;
  box-shadow: rgba(255, 255, 255, 0.1) -3px -3px 9px inset, rgba(255, 255, 255, 0.15) 0 3px 9px inset, rgba(255, 255, 255, 0.6) 0 1px 1px inset, rgb(46 131 195 / 30%) 0 -8px 36px inset, rgba(255, 255, 255, 0.6) 0 1px 5px inset, rgba(0, 0, 0, 0.2) 2px 19px 31px;
  border: 1px solid #ffffff10;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
}

.desktop-menu {
  font-family: var(--font-primary);
  display: flex;
  gap: 25px;
  padding: 13px 23px;
  font-size: 16px;
  border-top: 1px solid #eee;
}

.desktop-menu span {
  cursor: pointer;
}

/* Mobile extras */
.mobile-location {
  display: none;
  flex-direction: column;
  align-items: flex-start;
}

.mobile-location h1 {
  font-family: var(--font-primary);
  font-size: 30px;
  margin: 0;
}

.mobile-location .blinkit {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
}

.mobile-location .location {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0;
}

.mobile-profile {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}

.mobile-profile i {
  color: white;
  font-size: 1.2rem;
}
.mobile-cart {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.mobile-cart i {
  color: white;
  font-size: 1.2rem;
}
.mobile-menu {
  display: none;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: -20px;
  background: none;
  color: white;
}

.mobile-menu .menu-item {
  font-family: var(--font-primary2);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85rem;

}
/* MOBILE VIEW */
@media screen and (max-width: 768px) {
  .left-logo,
  .header-icons,
  .desktop-menu {
    display: none;
  }

  .site-header {
  background-image: url('https://i.postimg.cc/W4wZ0BkV/GIWH.gif');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 1.2rem;
  }
  .mobile-location {
    display: flex;
  }

  .mobile-profile {
    display: flex;
  }
  .mobile-cart {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .header-top {
    padding: 0;
    margin: 0;
  }
  .search-wrap {
    width: 100%;
    max-width: none;
  }
  .search-btn {
    padding: 10px 13px;
    gap: 3px;
  }
}

/* DESKTOP VIEW */
@media screen and (min-width: 769px) {
  .mobile-location,
  .mobile-profile,
  .mobile-menu {
    display: none;
  }
}
/* caraousel VIEW */

.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: auto;
  margin: 0px;
}

.carousel-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-images img {
  width: 100%;
  flex-shrink: 0;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;

  


}

.product-sale-section {
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 20px;
  background: #fff;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: -46px;
}

.section-header h2 {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: -6px;
}
.section-header h2 span {
  position: relative; /* Needed for absolute positioning of pseudo-element */
  display: inline-block; /* Required for proper sizing of pseudo-elements */
  font-size: 30px;
  background: linear-gradient(180deg, #43B9FE 0%, #207CFE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback */
  padding-right: 24px; /* Make space for the red line */
  font-weight: 900;
}
.section-header h2 span::after {  /* Removed space between span and ::after */
  content: ""; 
  display: block;
  width: 24px;
  height: 2px; 
  background: #D83333;
  position: absolute;
  bottom: 0px; /* Adjusted to align with underline */
  left: 45px;
  right: 0;
}
.section-header .view-all {
  color: #0a4f90;
  text-decoration: none;
  font-weight: 600;
  margin-top: 23px;
}

/* Grid Container */
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px !important;
  justify-content: center;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0,0,0,0.06);
  background: #fff;
  transition: 0.3s;
}

.product-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.product-img {
  position: relative;
}

.product-img img {
  width: 100%;
  display: block;
}

.badge {
  font-family: var(--font-secondary);
  position: absolute;
  top: -2px;
  left: 0px;
  background: black;
  color: white;
  font-size: 11px;
  padding: 5px 7px;
  border-radius: 1px;
}

.badge.new {
  background: #1E90FF;
  box-shadow: rgba(255, 255, 255, 0.1) -3px -3px 9px inset, rgba(255, 255, 255, 0.15) 0 3px 9px inset, rgba(255, 255, 255, 0.6) 0 1px 1px inset, rgb(46 131 195 / 30%) 0 -8px 36px inset, rgba(255, 255, 255, 0.6) 0 1px 5px inset, rgba(0, 0, 0, 0.2) 2px 19px 31px;
  background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, .23) 0, transparent 86.18%), radial-gradient(66% 66% at 26% 20%, rgba(255, 255, 255, .55) 0, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%) !important;
  border: 1px solid #ffffff10;
  border-radius: 0px 0px 10px 0px;
}
.badge.bestseller {
  background-color: #e91e63;
}

.badge.trending {
  background-color: #ff9800;
}

.product-info {
  padding: 10px;
}

.highlight {
  font-family: var(--font-primary);
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  background-color: #ffd700;
  padding: 2px 8px;
  border-radius: 0px 0px 15px 10px;
  font-size: 12px;
  margin-bottom: -8px;
  margin-top: -10px;
  margin-left: -10px;
  margin-right: -10px;
}
.rating {
 display: flex;
 background-color: #fff;
 padding: 1px 5px 1px 2px;
 border-radius: 8px;
}
.product-info h3 {
  font-family: var(--font-secondary);
  font-size: 18px;
  margin-bottom: 8px;
}
.product-divider-line {
  height: 1px;
  background-color: #e0e0e0;
  margin: 5px 0;
  width: 100%;
  position: relative;
}
.product-divider-line::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ffd700; /* Accent yellow like your design */
}
.price {
  font-size: 15px;
  margin-bottom: 3px;
}

.price strong {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
}

.price small {
  text-decoration: line-through;
  color: #888;
  margin-left: 1px;
}

.price .discount {
  font-family: var(--font-secondary);
  color: green;
  margin-left: 3px;
  font-size: 12px;
}
.btn.btn-primary {
  font-family: var(--font-primary2);
  font-weight: 500;
  font-size: 15px;
  display: flex;
  justify-content: center;
  width: 100%;
  background: #1E90FF;
  margin-top: 5px;
  color: #fff;
  border-radius: 8px;
  box-shadow: rgba(255, 255, 255, 0.1) -3px -3px 9px inset, rgba(255, 255, 255, 0.15) 0 3px 9px inset, rgba(255, 255, 255, 0.6) 0 1px 1px inset, rgb(46 131 195 / 30%) 0 -8px 36px inset, rgba(255, 255, 255, 0.6) 0 1px 5px inset, rgba(0, 0, 0, 0.2) 2px 19px 31px;
  background-image: radial-gradient(93% 87% at 87% 89%, rgba(0, 0, 0, .23) 0, transparent 86.18%), radial-gradient(66% 66% at 26% 20%, rgba(255, 255, 255, .55) 0, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%) !important;
  border: 1px solid #ffffff10;
  padding: 6px;
}
/* Responsive Grid for Mobile */
@media screen and (max-width: 768px) {
  .product-sale-section {
  margin-top: 30px;
  margin-left: 7px;
  margin-right: 7px;
  margin-bottom: 20px;
  background: #fff;
 }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px !important;
  }
   .highlight {
  font-size: 7px;
   }
   .product-info h3 {
  font-size: 11px;
  margin-bottom: 3px;
   }
   .price strong {
    font-size: 13px;
   }
  .price small {
    font-size: 8px;
  }
  .price .discount {
    font-size: 9px;
  }
  .badge {
    border-radius: 0px 0px 10px 0px !important;
  }
  .badge.new {
  font-size: 9px;
  padding: 3px 6px;
  border-radius: 1px;
  }
  .btn.btn-primary {
   font-size: 13px; 
   padding: 2px;
   margin-top: 5px;
  }
}
  .product-section {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    margin-top: 10px;
 
  }

  .category-box {
    flex: 1;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0,0,0,0.06);
    background: #fff;
  }

  .category-title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .category-icons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }
 .category-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 20px;
 }
.category-icons {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #ddd;
  box-shadow: 10px;
  background-color: #fafafa;
}
.category-icons img {
  border-radius: 10px;
  width: 100%;
  object-fit: contain;
  margin-right: 12px;
}
.vertical-divider {
  width: 1px;
  height: 40px;
  background-color: #ccc;
  margin-right: 12px;
}

.category-icons span {
  font-size: 16px;
  font-weight: 500;
}

  .category-icons div {
    text-align: center;
    flex: 1;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
  }

  .product-item {
    height: 100px;
    background: #eee;
    border-radius: 8px;
  }

  @media (max-width: 768px) {
    .product-section {
      flex-direction: column;
    }
  }

    nav {
      background: #fff;

    }

    .desktop-menu {
      display: flex;
      gap: 30px;
      align-items: center;
      position: relative;
    }

    .desktop-menu > .menu-item {
      position: relative;
      cursor: pointer;
      padding: 5px 0;
    }

    .desktop-menu > .menu-item:hover {
      color: #007bff;
    }

    .dropdown {
      position: absolute;
      top: 50px;
      left: 0;
      width: 100%;
      background: #fff;
      border: 1px solid #ddd;
      display: none;
      padding: 20px 30px;
      z-index: 1000;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .menu-item:hover .dropdown {
      display: block;
    }

    .dropdown-wrapper {
      display: flex;
      gap: 40px;
    }

    .dropdown-column {
      flex: 1;
    }

    .dropdown-column strong {
      display: block;
      margin-bottom: 10px;
    }

    .dropdown-column ul {
      list-style: none;
      padding: 0;
    }

    .dropdown-column ul li {
      margin-bottom: 6px;
      cursor: pointer;
    }

    .dropdown-column ul li:hover {
      color: #007bff;
    }

    /* Responsive: Hide on mobile */
    @media (max-width: 767px) {
      .desktop-menu {
        display: none;
       }
        .nav {
        display: none;
      }
    }



.shop-category {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

.shop-category h2 {
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-left: 15px;
}
.shop-category h2 span {
  position: relative; /* Needed for absolute positioning of pseudo-element */
  display: inline-block; /* Required for proper sizing of pseudo-elements */
  font-size: 30px;
  background: linear-gradient(180deg, #43B9FE 0%, #207CFE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent; /* Fallback */
  padding-right: 24px; /* Make space for the red line */
  font-weight: 900;
}
.shop-category h2 span::after {  /* Removed space between span and ::after */
  display: block;
  width: 24px;
  height: 2px; 
  background: #D83333;
  position: absolute;
  bottom: 0px; /* Adjusted to align with underline */
  left: 45px;
  right: 0;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  gap: 2rem;
}

.tab {
  background: none;
  border: none;
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  position: relative;
  color: #888;
}

.tab.active {
  color: #000;
  font-weight: bold;
}

.tab.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #00aaff;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-item img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

.category-item p {
  font-size: 1rem;
  font-weight: 500;
}
/* Already included base styles from previous answer */

@media (max-width: 768px) {
  .tabs {
    flex-direction: row;
    gap: 1rem;
    justify-content: space-around;
    margin-bottom: 1rem;
  }

  .tab {
    font-size: 0.9rem;
    padding: 0.4rem 0.6rem;
  }

  .category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .category-item img {
    width: 80px;
    height: 80px;
  }

  .category-item p {
    font-size: 0.85rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.frequent-carousel-section {
  background: linear-gradient(to bottom, #1E90FF, #B0E0E6); /* Powder Blue */
  box-shadow: 
    rgba(255, 255, 255, 0.1) -3px -3px 9px inset,
    rgba(255, 255, 255, 0.15) 0 3px 9px inset,
    rgba(255, 255, 255, 0.6) 0 1px 1px inset,
    rgb(46 131 195 / 30%) 0 -8px 36px inset,
    rgba(255, 255, 255, 0.6) 0 1px 5px inset,
    rgba(0, 0, 0, 0.2) 2px 19px 31px;
  border: 1px solid #ffffff10;
  border-radius: 12px;
  padding: 15px 0;
  margin: 10px auto 20px auto; /* This centers the section */
  max-width: 1450px;
  overflow: hidden;
}

.carousel-title {
  font-family: var(--font-primary);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-left: 12px;
  margin-top: 5px;
}

.frequent-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
}

.frequent-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.frequent-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  background: white;
  border-radius: 12px;
  padding: 16px;
  flex: 0 0 auto;
  margin-left: 11px;
  width: 220px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.carousel-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.card-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
}

.card-info p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

.card-info small {
  font-size: 12px;
  color: #555;
  display: block;
  margin-top: 4px;
}

.card-info strong {
  display: block;
  margin-top: 6px;
  font-size: 16px;
}

.card-info span {
  font-size: 12px;
  color: #999;
}

.icons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.icons .wishlist,
.icons .zoom {
  font-size: 18px;
  cursor: pointer;
}

.carousel-nav {
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
}

.carousel-nav.prev {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-nav.next {
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bestseller .badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #00c4cc;
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 1;
}

@media (max-width: 768px) {
  .frequent-carousel-section {
    margin-left: 7px;
  }
  .carousel-card {
    width: 180px;
  }
}

.insta-carousel-wrapper {
  max-width: 800px;
  margin: 0 auto;
}


    .insta-carousel-title {
      font-family: var(--font-primary);
      margin-left: 7px;
      text-align: left;
      font-size: 26px;
      margin-top: 10px;
      margin-bottom: 5px;
    }

    .insta-carousel-title span {
      font-weight: bold;
      font-size: 30px;
      background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .insta-carousel-subtitle {
      margin-left: 7px;
      text-align: left;
      font-size: 14px;
      color: #666;
      margin-bottom: 20px;
    }

    .insta-carousel {
      margin-left: 7px;
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 5px 0;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .insta-card {
      flex: 0 0 auto;
      width: 180px;
      border-radius: 14px;
      background-color: #fff;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      position: relative;
      scroll-snap-align: start;
      display: flex;
      flex-direction: column;
    }

    .insta-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: rgba(0, 0, 0, 0.75);
      color: #fff;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 14px;
      font-weight: 600;
      z-index: 1;
    }

    .insta-card-media {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .insta-card-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .insta-card-info {
      padding: 10px;
    }

    .insta-card-info h3 {
      font-size: 14px;
      margin: 0 0 6px;
      font-weight: 600;
      color: #111;
    }

    .insta-card-info a {
      font-size: 12px;
      color: #fff;
      background: linear-gradient(to right, #1E90FF, #00bfff);
      padding: 5px 10px;
      border-radius: 12px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
    }

    @media (min-width: 768px) {
      .insta-carousel {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: nowrap;
      }

      .insta-card {
        flex: 0 0 200px;
      }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    

  .sidebar,
  .filter-sidebar {
    border-right: 1px solid #eee;
    margin-left: 20px;
  }

  .filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin-bottom: 8px;
    cursor: pointer;
  }

  .filter-body,
  .filter-group {
    margin-bottom: 1rem;
  }

  .filter-group h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .form-select.mb-2 {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    height: auto;
  }

  .sort-select {
    width: 200px;
    margin-bottom: 20px;
  }

  .switch-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 10px;
    margin: 15px 0;
  }

  /* ------- BANNER -------- */
  .banner-img {
    width: calc(100% - 40px);
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    margin: 20px;
  }

  .banner-mob {
    display: none;
  }

  @media (max-width: 768px) {
    .banner-img {
      display: none;
    }

    .banner-mob {
      display: block;
      width: calc(100% - 20px);
      height: auto;
      object-fit: cover;
      border-radius: 20px;
      margin: 10px;
    }
  }

  /* ------- FILTER SHAPES -------- */
  input[type="checkbox"].shape-img {
    display: none;
  }

  .shape-label {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 6px 10px;
    margin: 4px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
  }

  input[type="checkbox"].shape-img:checked + .shape-label {
    border-color: #1E90FF;
    background: #f0f8ff;
    box-shadow: 0 0 0 2px #1E90FF inset;
  }

  /* ------- FILTER CHIPS -------- */
  .chip {
    display: inline-flex;
    align-items: center;
    background: #eee;
    border-radius: 20px;
    padding: 6px 12px;
    margin: 0 6px 6px 0;
    font-size: 13px;
  }

  .chip i {
    margin-left: 6px;
    cursor: pointer;
  }

  /* ------- MOBILE TOOLBAR -------- */
  #toolbar,
  .floating-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 10px 15px;
    z-index: 1000;
    display: none;
    justify-content: space-around;
  }

  #toolbar button,
  .floating-toolbar button {
    flex: 1;
    margin: 0 5px;
    border-radius: 30px;
  }

  @media (max-width: 767px) {
    #toolbar {
      display: flex;
    }
  }

  .filter-panel-mobile {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 9999;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
  }

  .filter-panel-mobile.active {
    display: block;
    transform: translateY(0);
  }

  /* ------- PRODUCT GRID -------- */
  #products .card {
    border: none;
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    border-radius: 14px;
    transition: transform 0.2s;
    overflow: hidden;
  }

  #products .card:hover {
    transform: translateY(-2px);
  }

  #products img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-bottom: 1px solid #f3f3f3;
    border-radius: 14px 14px 0 0;
  }

  /* ------- PRODUCT CARD DETAIL -------- */
  .product-card .card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s;
  }

  .product-card .card:hover {
    transform: translateY(-4px);
  }

  .card-img-top {
    height: 220px;
    width: 100%;
    object-fit: cover;
    background-color: #f9f9f9;
  }

  .wishlist-icon {
  font-size: 20px;
  color: #555;
  background: white;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 5px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;   /* vertically center */
  justify-content: center; /* horizontally center */
  position: absolute;    /* position it */
  top: 10px;             /* adjust as needed */
  right: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  z-index: 10;
}
  .rating {
    font-size: 14px;
    color: #000;
    font-weight: bold;
    background: white;
    padding: 2px 4px!important;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }

  .rating i {
    font-size: 13px;
    margin-left: 2px;
  }

  .view-similar {
    font-size: 13px;
    color: #3f3fff;
    cursor: pointer;
  }

  .product-card .card-body {
    padding: 14px 16px;
  }

  .product-card .card-body h6 {
    font-size: 14px;
  }

  .product-card .card-body p {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .product-price {
    font-size: 15px;
  }

  .product-price del {
    font-size: 13px;
    color: #888;
  }

  .badge-offer {
    font-size: 12px;
    color: #1e88e5;
    font-weight: 600;
  }

  .coupon {
    background-color: #f0f4ff;
    border: 1px dashed #1e88e5;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
    color: #1e88e5;
    display: inline-block;
  }

  .delivery {
    font-size: 12px;
    color: #888;
  }

  .color-dots .dot {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 4px;
    border: 1px solid #ddd;
  }

  .page-item.active .page-link {
    background-color: #1e88e5;
    border-color: #1e88e5;
    color: white;
  }

  .page-link {
    color: #1e88e5;
  }
  
