* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= FILTER BAR ================= */

.top-filter-bar {
    background: #fbf6ee;
    padding: 18px 0;
    border-bottom: 2px solid #e5dfd6;
}

.filter-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left Filter */
.filter-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.filter-icon {
    font-size: 18px;
}

.filter-text {
    border-bottom: 1px solid #000;
}

/* Right Sort */
.filter-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.filter-right select {
    border: 1px solid #ccc;
    padding: 4px 10px;
    font-size: 13px;
    background: #fff;
    cursor: pointer;
}

/* Responsive */
@media(max-width:576px) {
    .filter-bar-inner {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}


/* FILTER PANEL */
/* FILTER PANEL */
.filter-panel {
    display: none;
    background: #fbf6ee;
    border-top: 1px solid #e2d9cf;
    padding: 18px 24px 30px;
}

.filter-panel.active {
    display: block;
}

/* Header */
.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.filter-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.filter-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* Tabs */
.filter-tabs-wrapper {
    display: flex;
    gap: 14px;
    position: relative;
    z-index: 50;
}

/* Button */
.filter-btn {
    background: #fff;
    border: 1px solid #d7cec3;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active {
    border: 2px solid #5a2d0c;
}

.filter-btn .arrow {
    transition: .3s;
}

.filter-btn.active .arrow {
    transform: rotate(180deg);
}

.filter-tab-item {
    position: relative;
}

.filter-dropdown {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    width: 260px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    padding: 14px;
    z-index: 999;
}

/* 🔥 THIS LINE IS MUST */
.filter-tab-item.active .filter-dropdown {
    display: block;
}
/* Head */
.filter-dropdown-head {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
}

.reset-btn {
    background: none;
    border: none;
    font-size: 13px;
    cursor: pointer;
}

/* Labels */
.filter-dropdown label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    cursor: pointer;
}

/* Price */
.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-top: 6px;
}


.filter-item {
    position: relative;
}

.filter-dropdown-box {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    width: 260px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
    padding: 14px;
    z-index: 999;
}

/* 🔥 OPEN STATE */
.filter-item.is-open .filter-dropdown-box {
    display: block;
}

/* Button */
.filter-toggle-btn {
    background: #fff;
    border: 1px solid #d7cec3;
    padding: 10px 18px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-toggle-btn.is-open {
    border: 2px solid #5a2d0c;
}

.filter-toggle-btn .arrow {
    transition: .3s;
}

.filter-toggle-btn.is-open .arrow {
    transform: rotate(180deg);
}
/* FILTER BAR END */
/* ================= TOP WINNING CHOICES ================= */

.top-winning-section {
    /* background: #f7f3ef; */
    background: #fbf6ee;
    padding: 90px 0;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
}

.section-title h2 span {
    color: #2f6b2f;
    font-style: italic;
}

/* ================= PRODUCT CARD ================= */

.product-card-urban {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
    height: 100%;
}

.product-img-box {
    width: 100%;
    height: 280px;
    /* 👈 yahin card image height control hoti hai */
    overflow: hidden;
}

.product-img-box img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

/* Info */
.product-info {
    padding: 14px 16px 18px;
    text-align: left;
}

.product-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

/* Bottom Row */
.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.product-rating {
    font-size: 12px;
    color: #f5a623;
}

.product-rating span {
    color: #000;
    margin-left: 4px;
}

/* Button */
.add-cart-btn {
    display: inline-block;
    width: 100%;
    background: #2f6b2f;
    color: #ffffff;
    text-align: center;
    padding: 8px 0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.add-cart-btn:hover {
    background: #1f4d1f;
    color: #ffffff;
}

/* IMAGE HOVER FIX */
.product-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

/* ALL images stacked */
.product-img-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease, transform .5s ease;
}

/* Default states */
.img-main {
    opacity: 1;
    z-index: 1;
}

.img-hover,
.img-hover-2 {
    opacity: 0;
    z-index: 2;
}

/* Hover effects */
.product-card-urban:hover .img-main {
    opacity: 0;
    transform: scale(1.08);
}

.product-card-urban:hover .img-hover {
    opacity: 1;
}

/* Optional: second hover image */
.product-card-urban:hover .img-hover-2 {
    opacity: 1;
    transition-delay: .25s;
}
/* TOP WINNING CHOICES end  */

 /* ================= PEOPLE ALSO ASK ================= */

 .people-ask-section {
     background: linear-gradient(180deg, #f6ffef 0%, #ecffe3 50%, #f6ffef 100%);
     padding: 80px 0;
 }

 /* Heading */
 .people-ask-section h2 {
     font-size: 26px;
     font-weight: 700;
     /* margin-bottom: 40px; */
 }

 .people-ask-section h2 span {
     color: #2f6b2f;
     font-style: italic;
 }

 /* Accordion Item */
 .accordion-item {
     border: none;
     border-radius: 8px;
     overflow: hidden;
 }

 /* Accordion Button */
 .accordion-button {
     background: #ffffff;
     color: #000;
     font-size: 15px;
     font-weight: 600;
     padding: 16px 20px;
     box-shadow: none;
 }

 .accordion-button:not(.collapsed) {
     background: #ffffff;
     color: #2f6b2f;
     box-shadow: none;
 }

 .accordion-button:focus {
     box-shadow: none;
     border: none;
 }

 /* Remove default arrow bg */
 .accordion-button::after {
     background-size: 14px;
 }

 /* Body */
 .accordion-body {
     font-size: 14px;
     font-family: var(--font-inter, 'Inter', sans-serif);
     color: #555;
     line-height: 1.6;
     padding: 12px 20px 18px;
 }

 /* Responsive */
 @media (max-width: 768px) {
     .people-ask-section h2 {
         font-size: 22px;
     }

     .accordion-button {
         font-size: 14px;
     }

     .accordion-body {
         font-size: 13px;
     }
 }


 /* ===== REMOVE BOOTSTRAP BLUE BACKGROUND ===== */

 .accordion-button {
     background-color: #ffffff !important;
     color: #000 !important;
 }

 .accordion-button:not(.collapsed) {
     background-color: #f3ffe9 !important;
     color: #2f6b2f !important;
     box-shadow: none !important;
 }

 /* Remove blue focus ring */
 .accordion-button:focus {
     box-shadow: none !important;
     border-color: #d0f0c0 !important;
     outline: none !important;
 }

 /* Hover effect */
 .accordion-button:hover {
     background-color: #ecffe3 !important;
 }

 /* Arrow icon color */
 .accordion-button::after {
     filter: brightness(0) saturate(100%) invert(24%) sepia(12%) saturate(1323%) hue-rotate(71deg) brightness(92%) contrast(89%);
 }

 /* ================= PEOPLE ALSO ASK END ================= */



 /* ---------- FILTER BAR ---------- */
 @media (max-width: 768px) {

     .filter-bar-inner {
         flex-direction: column;
         align-items: flex-start;
         gap: 12px;
     }

     .filter-left,
     .filter-right {
         width: 100%;
         justify-content: space-between;
     }

     .filter-right select {
         width: 100%;
     }

     .filter-tabs-wrapper {
         flex-wrap: wrap;
         gap: 10px;
     }

     .filter-btn,
     .filter-toggle-btn {
         width: 100%;
         justify-content: space-between;
     }

     .filter-dropdown,
     .filter-dropdown-box {
         width: 100%;
         left: 0;
         top: 46px;
     }
 }

  /* ---------- FILTER BAR  END---------- */

  /* ---------- PRODUCT GRID ---------- */

  /* Tablet */
  @media (max-width: 991px) {
      .product-img-box {
          height: 240px;
      }

      .product-info h5 {
          font-size: 14px;
      }
  }

  /* Mobile */
  @media (max-width: 767px) {

      .top-winning-section {
          padding: 50px 0;
      }

      .section-title h2 {
          font-size: 22px;
      }

      .product-img-box {
          height: 390px;
      }

      .product-info {
          padding: 12px 14px;
      }

      .product-bottom {
          flex-direction: column;
          align-items: flex-start;
          gap: 6px;
      }

      .add-cart-btn {
          font-size: 12px;
          padding: 7px 0;
      }
  }

  /* Small Mobile */
  @media (max-width: 360px) {

      .product-img-box {
          /*height: 180px;*/
      }

      .product-info h5 {
          font-size: 13px;
      }

      .product-price {
          font-size: 13px;
      }

      .product-rating {
          font-size: 11px;
      }
  }

  /* PRODUCT GRID END */

  /* .out-stock-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #c62828;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 4px;
      z-index: 5;
  }

  .disabled-btn {
      background: #ccc !important;
      color: #555 !important;
      cursor: not-allowed;
  } */

  .in-stock-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #2e7d32;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 4px;
      z-index: 5;
  }

  .out-stock-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: #c62828;
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      padding: 5px 10px;
      border-radius: 4px;
      z-index: 5;
  }

  .disabled-btn {
      background: #ccc !important;
      color: #555 !important;
      cursor: not-allowed;
  }



  

  