.category-banner-slider {
  width: 100%;
  padding: 10px 0 40px; /* Extra bottom padding for pagination */
  position: relative;
  height: fit-content;
}

.category-banner-slider .swiper-slide {
  width: calc(50% - 10px);
  height: auto;
  margin-right: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: white;
}

.category-banner-item {
  position: relative;
  height: 180px;
}

.category-banner-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.banner-caption {
  padding: 15px;
  background: white;
}

.product-tag {
  color: #666;
  font-size: 12px;
  margin-bottom: 5px;
}

.product-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: #333;
}

.product-desc {
  font-size: 13px;
  color: #666;
  margin: 0 0 8px 0;
  line-height: 1.4;
  min-height: 36px; /* Ensure consistent height for 2 lines */
}

.product-feature {
  display: inline-block;
  font-size: 12px;
  background: #f0f7ff;
  color: #0066cc;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.original-price {
  font-weight: bold;
  color: #d70018;
  font-size: 16px;
}

.discount {
  background: #d70018;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.sale-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #d70018;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  z-index: 2;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  backdrop-filter: blur(2px);
  top: 45%; /* Center vertically */
  margin-top: 0;
  opacity: 0; /* Hide by default */
  transition: opacity 0.3s ease; /* Smooth transition */
}

.category-banner-slider:hover .swiper-button-next,
.category-banner-slider:hover .swiper-button-prev {
  opacity: 1; /* Show on hover */
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
}

/* Hover effect for buttons */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.7);
}

.swiper-pagination {
  bottom: 15px;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #f37021;
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .category-banner-slider .swiper-slide {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .category-banner-slider .swiper-slide {
    width: 85%;
  }
  .product-desc {
    min-height: auto;
  }
}
.product-policies-title {
  background-color: rgb(238, 238, 238);
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

/*# sourceMappingURL=product-archive.css.map */
