/** Shopify CDN: Minification failed

Line 6:7 Unexpected "/"

**/
section/best-selling.css << 'EOF'
/* ============================================================
   Best Selling Section — best-selling.css
   ============================================================ */

.bs-section {
  padding: var(--bs-pad-top, 20px) 0 var(--bs-pad-bottom, 20px);
}

.bs-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---- Title ---- */
.bs-title {
  text-align: center;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #000000;
}

/* ====================================================
   CAROUSEL LAYOUT
   Arrow | Overflow | Arrow  — flex row
   ==================================================== */
.bs-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* overflow clips the scrolling track */
.bs-overflow {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.bs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ---- Card ---- */
.bs-card {
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.bs-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* ---- Card Image ---- */
.bs-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #f8f8f8;
}

.bs-img-wrap a {
  display: block;
  height: 100%;
}

.bs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.bs-card:hover .bs-img-wrap img {
  transform: scale(1.05);
}

/* ---- Badge ---- */
.bs-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--bs-accent, #8B5CF6);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  pointer-events: none;
  letter-spacing: 0.3px;
  z-index: 2;
}

/* ---- Wishlist Button ---- */
.bs-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  transition: background 0.2s, color 0.2s;
  padding: 0;
  z-index: 2;
}

.bs-wish:hover {
  background: #ffffff;
  color: var(--bs-accent, #8B5CF6);
}

.bs-wish.bs-wish--liked {
  color: var(--bs-accent, #8B5CF6);
}

.bs-wish.bs-wish--liked svg {
  fill: var(--bs-accent, #8B5CF6);
  stroke: var(--bs-accent, #8B5CF6);
}

/* ---- Card Body ---- */
.bs-info {
  padding: 12px 14px 16px;
}

.bs-name {
  font-size: 13.5px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.45;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs-prices {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bs-sale {
  color: var(--bs-accent, #8B5CF6);
  font-size: 15px;
  font-weight: 700;
}

.bs-orig {
  color: #aaa;
  font-size: 12.5px;
  text-decoration: line-through;
}

/* ---- Add to Cart Button ---- */
.bs-atc-btn {
  margin-top: 11px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--bs-accent, #8B5CF6);
  background: transparent;
  color: var(--bs-accent, #8B5CF6);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.bs-atc-btn:hover:not(:disabled) {
  background: var(--bs-accent, #8B5CF6);
  color: #ffffff;
}

.bs-atc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- Arrow Buttons ----
   Part of flex row, NOT absolutely positioned
   Centered vertically by align-items: center on .bs-wrap
   -------------------------------------------------------- */
.bs-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 0;
  /* vertically center on the card image area */
  align-self: center;
}

.bs-arrow:hover {
  background: var(--bs-accent, #8B5CF6);
  color: #ffffff;
  border-color: var(--bs-accent, #8B5CF6);
}

.bs-arrow.bs-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ---- Progress Bar ---- */
.bs-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}

.bs-dots {
  width: 160px;
  height: 3px;
  background: #e0e0e0;
  border-radius: 99px;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1.2s ease-in-out;
}

.bs-dots.hidden {
  opacity: 0;
}

.bs-dots-bar {
  height: 100%;
  background: var(--bs-accent, #8B5CF6);
  border-radius: 99px;
  transition: width 0.35s ease;
  width: 0%;
}

/* ============================================================
   Responsive
   ============================================================ */
@media screen and (max-width: 1024px) {
  .bs-track { gap: 16px; }
}

@media screen and (max-width: 480px) {
  .bs-container { padding: 0 12px; }
  .bs-wrap { gap: 0; }
  .bs-track { gap: 14px; }
  .bs-title { font-size: 28px; }
  .bs-img-wrap { height: 200px; }
  /* hide arrows on mobile — swipe only */
  .bs-arrow { display: none; }
}