/* Promo banners + discount price */
.promo-banners {
  margin: 12px 16px 4px;
  direction: ltr;
  touch-action: pan-y;
}
.promo-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  background: var(--surface2, #eee);
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.promo-viewport:active { cursor: grabbing; }
.promo-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  will-change: transform;
  transition: transform .35s ease;
}
.promo-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: var(--surface2, #eee);
  cursor: default;
}
.promo-slide.is-link { cursor: pointer; }
.promo-slide img {
  width: 100%;
  height: clamp(120px, 34vw, 180px);
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}
.promo-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.55));
  color: #fff; font-size: 13px; font-weight: 700; text-align: start;
  direction: rtl;
}
.promo-dots { display: flex; justify-content: center; gap: 6px; margin-top: 8px; direction: ltr; }
.promo-dot {
  width: 7px; height: 7px; border-radius: 50%; border: 0; padding: 0;
  background: rgba(255,255,255,.28); cursor: pointer;
}
.promo-dot.on { background: var(--primary); transform: scale(1.15); }
.price-block { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px; line-height: 1.2; }
.price-sale { font-weight: 800; color: var(--primary); }
.price-old { font-size: 11px; color: var(--text-sub); text-decoration: line-through; font-weight: 600; }
.disc-badge {
  position: absolute; top: 8px; inset-inline-start: 8px; z-index: 2;
  background: #c62828; color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 7px; border-radius: 8px; line-height: 1;
}
.product-card-img-wrap, .pc-image, .product-card-img { position: relative; }
.pc-price-ribbon .price-block { align-items: flex-end; gap: 0; }
.pc-price-ribbon .price-sale { font-size: 12px; color: var(--primary-dark, #1A1A1B); }
.pc-price-ribbon .price-old { color: rgba(26,16,20,.55); font-size: 9px; }
.order-type-row { display: flex; gap: 8px; margin-top: 6px; }
.order-type-opt {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 8px; border-radius: 12px; border: 1px solid var(--divider);
  font-size: 13px; font-weight: 700; color: var(--text); cursor: pointer; background: var(--surface2);
}
.order-type-opt:has(input:checked) { border-color: var(--primary); background: var(--primary-lt); color: var(--primary); }
.order-type-opt input { accent-color: var(--primary); }
.delivery-fee-hint { font-size: 12px; color: var(--text-sub); margin: 6px 0 0; line-height: 1.5; }
.cart-ship-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
  font-size: 13px; color: var(--text-sub);
}
.cart-ship-row b { margin-inline-start: auto; color: var(--primary); font-weight: 700; }
@media (max-width: 480px) {
  .promo-banners { margin: 10px 12px 2px; }
  .promo-slide img { height: clamp(110px, 40vw, 150px); }
}
