/** Shopify CDN: Minification failed

Line 23:38 Unterminated string token

**/
.bestsellers {
  padding: 50px 0;
  background: #000;
  color: #fff;
}

.bestsellers .container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.bestsellers .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  font-family: 'AtticAntique', serif';
  font-weight: 400;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-button {
  padding: 8px 18px;
  border: 1px solid #a00;
  background: transparent;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-button.active {
  background: #a00;
  border-color: #a00;
}

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

.bestsellers .product-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.bestsellers .product-card img {
  width: 100%;
  border-radius: 8px 8px 0 0;
  height: 250px;
  object-fit: cover;
}

.bestsellers .product-info {
  padding: 10px 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-rating {
  font-size: 14px;
  color: #ff9800;
  margin: 8px 0 5px;
}

.rating-count {
  font-size: 13px;
  color: #aaa;
  margin-left: 4px;
}

.bestsellers .product-title {
  font-size: 16px;
  color: #fff;
  margin: 5px 0;
}

.product-price {
  font-size: 15px;
  color: #fff;
  margin-bottom: 10px;
}

.btn.add-to-cart {
  display: block;
  width: 100%;
  background: #7f0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 10px;
}

.btn.add-to-cart:hover {
  background: #c00;
}

.product-guarantee {
  font-size: 12px;
  color: #ddd;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.bestsellers .checkmark img {
    height: 100% !important;
}

.bestsellers .swiper-wrapper {
    margin-bottom: 50px;
}

.bestsellers .swiper-button-next::after,
.bestsellers .swiper-button-prev::after {
  font-size: 14px;
  color: #fff;
}

.bestsellers .swiper-button-next,
.bestsellers .swiper-button-prev {
  height: 35px;
  width: 35px;
  background-color: #a00; /* default red */
  border-radius: 50%;
}

.bestsellers .swiper-button-next:hover,
.bestsellers .swiper-button-prev:hover {
  background-color: #fff;
}

.bestsellers .swiper-button-next:hover::after,
.bestsellers .swiper-button-prev:hover::after {
  color: #a00; /* red arrow when hovered */
}

/* .bestsellers span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #fff;
}

.bestsellers span.swiper-pagination-bullet {
  background-color: #666;
} */

.bestsellers .swiper-scrollbar {
  position: relative;
  height: 6px;
  margin-top: 20px;
  background: #333; /* track */
  border-radius: 3px;
}

.bestsellers .swiper-scrollbar-drag {
  background: #fff;
  border-radius: 3px;
  cursor: grab;
}
.bestsellers .swiper-scrollbar-drag:active {
  cursor: grabbing;
}


/* .swiper-button-prev,
.swiper-button-next {
  background: #a00;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 14px;
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: #888;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #a00;
}
