
    /* Explore Our Range Section */
.range-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  text-align: center;
}

.price-range-section {
      max-width: 1100px;
      margin: 0 auto;
    }

    .range-container {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: center;
    }

    .range-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease;
    }

    .range-item:hover {
      transform: translateY(-3px);
    }

    /* Outer ring (blue top, red bottom) */
    .circle-text {
      width: 125px;
      height: 125px;
      border-radius: 50%;
      padding: 4px; /* ring thickness */
      background: conic-gradient(
        #005275 0deg 180deg,      /* top half blue */
        #ff4d4f 180deg 360deg     /* bottom half red */
      );
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      margin-bottom: 14px;
    }

    /* Inner white circle + text centering */
    .circle-text p {
      margin: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.1;
    }

    /* "Under" */
    .price-label {
      font-size: 16px;
      font-weight: 700;
      color: #132743;
    }

    /* "₹XXX" */
    .price-value {
      margin-top: 4px;
      font-size: 26px;
      font-weight: 700;
      color: #ff4d4f;
    }

    /* Shop Now button */
    .shop-btn {
      display: inline-block;
      padding: 10px 24px;
      border-radius: 999px;
      background: #ff4d4f;
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.12);
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .shop-btn:hover {
      background: #ff3033;
      transform: translateY(-1px);
    }


.shop-btn {
  display: inline-block;
  margin-top: 12px;
  background-color: #ff4d4f;
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.shop-btn:hover {
  background-color: #d9363e;
  color: #fff;
}

.view-all-link {
  color: #000;
  font-weight: 500;
  text-decoration: none;
}

.view-all-link:hover {
  color: #ff4d4f;
}

/* Mobile view fixes */
@media (max-width: 767px) {
  .section-heading .row {
    text-align: center;
  }
  .section-heading .col-md-6 {
    width: 100%;
  }
  .text-md-end {
    text-align: center !important;
  }
  .range-container {
    flex-direction: column;
    align-items: center;
  }
  .circle-text {
    width: 100px;
    height: 100px;
    font-size: 16px;
  }
}
/* === Responsive Home Banner === */
.home-banner-slider .swiper-slide {
  position: relative;
}

.banner-img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.banner-overlay h2 {
  font-size: 2rem;
  font-weight: 700;
}

.banner-overlay p {
  font-size: 1.1rem;
}

@media (max-width: 991px) {
  .banner-img { height: 55vh; }
  .banner-overlay h2 { font-size: 1.6rem; }
}

@media (max-width: 767px) {
  .banner-img { height: 45vh; border-radius: 8px; }
  .banner-overlay h2 { font-size: 1.3rem; }
  .banner-overlay p { font-size: 0.95rem; }
}
.amz-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 8px;
}
.amz-qty .btnqty {
  background-color: #f5f5f5;
  color: #333;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  font-weight: 600;
  line-height: 1;
  padding: 0;
  transition: all 0.2s ease;
}
/* --- Equal Height Product Cards --- */
.product-card-8 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 12px;
  background-color: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card-8:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Fix image area height */
.product-card-8 .product-card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 10px;
}

.product-card-8 .product-card-image img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

/* Product info fixed alignment */
.product-card-8 .product-card-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

/* Fix title height for uniform layout */
.product-card-8 .product-title {
  min-height: 42px; /* Adjust depending on font size */
  margin-bottom: 8px;
}

/* Price section consistent */
.product-card-8 .product-price {
  margin-bottom: 8px;
}

/* Action area at bottom */
.product-card-8 .product-actions {
  margin-top: auto;
}

/* Equal height across slides */
.swiper-slide {
  height: auto !important;
}
.swiper-slide > div {
  height: 100%;
}
.swiper-slide * {
  pointer-events: auto !important;
}
