/* ═════════════════════════════════════════════════════════════════
   SOBIE — PDP CSS  ·  V8 (clean)
   ─────────────────────────────────────────────────────────────────
   §0  Fonts
   §1  Tokens & reset
   §2  Breadcrumb
   §3  Hero — thumbs · gallery slider · info column
   §4  Benefits strip (tag-driven, auto-fit)
   §5  Tabbed details (story / size table / care / ship)
       — Material panel V9 styles trong snippet sobie-material-panel.liquid
   §6  Related collection (product cards)
   §7  Sticky buybar
   §8  Responsive (desktop tablets)
   §9  Lightbox
   §10 Size guide V4 (.sb-sg-*)
   §11 Hero rating (sync với widget)
   §12 Action row (delivery + mini actions)
   §13 Mix & Match grid

   ── ĐÃ XOÁ ở V8 (dead/duplicate) ──
   ✗ Material V8 layout: .sb-mat-row, .sb-material-grid, .sb-material-img, .sb-material-list
     (đã thay bằng V9 .sb-mat-card-feat trong snippet sobie-material-panel.liquid)
   ✗ Material V8.1 layout: .sb-mat-item (cùng lý do)
   ✗ Duplicate :hover rule trên .sb-actions-mini button (2 lần → gộp 1)
   ✗ Reference --accent-soft (chưa được định nghĩa) → đổi sang --accent

   NOTE: !important chỉ dùng khi cần override Haravan theme. Đã tối thiểu hoá.
═════════════════════════════════════════════════════════════════ */

/* ═══ §0 FONTS ════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap');


/* ═══ §1 TOKENS & RESET ═══════════════════════════════════════════ */
#sobie-classic-pdp.sb-pdp {
  --bg: #FFFFFF;
  --bg-soft: #F5F5F5;
  --bg-card: #FAFAFA;
  --ink: #11212A;
  --ink-2: #5B564E;
  --ink-3: #A39C90;
  --line: #E5E5E5;
  --line-soft: #EFEFEF;
  --accent: #1F4E5A;
  --coral: #C75A3C;
  --gold: #B89968;
  --blue: #1E3A8A;
  --blue-2: #1E40AF;
  --silver: #D6DBE0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  display: block;
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.sb-pdp *,
.sb-pdp *::before,
.sb-pdp *::after { box-sizing: border-box; }
.sb-pdp img,
.sb-pdp svg { display: block; max-width: 100%; }
.sb-pdp button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
.sb-pdp input { font: inherit; color: inherit; }
.sb-pdp a { color: inherit; text-decoration: none; }

.sb-pdp .sb-floral {
  font-family: 'Mulish', sans-serif;
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.sb-pdp .sb-mono {
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.sb-pdp .sb-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.sb-pdp .ic { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }


/* ═══ §2 BREADCRUMB ═══════════════════════════════════════════════ */
.sb-pdp .sb-crumbs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 22px 40px 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.sb-pdp .sb-crumbs a:hover { color: var(--ink); }
.sb-pdp .sb-crumbs .cur { color: var(--ink); }
.sb-pdp .sb-crumbs .sep { opacity: 0.5; }


/* ═══ §3 HERO ═════════════════════════════════════════════════════ */
.sb-pdp .sb-hero {
  max-width: 1440px;
  margin: 0 auto;
  padding: 28px 40px 80px;
  display: grid;
  grid-template-columns: 88px 1fr 480px;
  gap: 32px;
  align-items: flex-start;
}

/* ── Thumb strip ─────────────────────────────────────── */
.sb-pdp .sb-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  mask-image: linear-gradient(to bottom, black calc(100% - 24px), transparent);
  -webkit-mask-image: linear-gradient(to bottom, black calc(100% - 24px), transparent);
}
.sb-pdp .sb-thumbs::-webkit-scrollbar { width: 3px; }
.sb-pdp .sb-thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.sb-pdp .sb-thumbs::-webkit-scrollbar-track { background: transparent; }
.sb-pdp .sb-thumbs:hover { scrollbar-color: var(--ink-3) transparent; }
@supports (selector(:has(*))) {
  .sb-pdp .sb-thumbs:not(:has(.sb-thumb:nth-child(8))) {
    mask-image: none;
    -webkit-mask-image: none;
  }
}
.sb-pdp .sb-thumb {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s var(--ease);
  flex: none;
}
.sb-pdp .sb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sb-pdp .sb-thumb.active { border-color: var(--ink); }
.sb-pdp .sb-thumb:hover { border-color: var(--ink-2); }
.sb-pdp .sb-thumb-label {
  position: absolute;
  bottom: 4px;
  left: 6px;
  font-family: 'Mulish', sans-serif;
  font-size: 8.5px;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  background: rgba(251, 248, 242, 0.85);
  padding: 2px 4px;
  pointer-events: none;
}

/* ── Gallery slider ──────────────────────────────────── */
.sb-pdp .sb-gallery {
  position: relative;
  background: #fff;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: zoom-in;
  user-select: none;
  touch-action: pan-y;
}
.sb-pdp .sb-gallery.is-dragging { cursor: grabbing; }
.sb-pdp .sb-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.sb-pdp .sb-slide-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.sb-pdp .sb-slide {
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sb-pdp .sb-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  -webkit-user-drag: none;
}
/* Ẩn các element ảnh cũ của Haravan (giữ ẩn để theme JS không lỗi) */
.sb-pdp .sb-carousel-hidden,
.sb-pdp #sb-main-image,
.sb-pdp #MainPdpCarousel { display: none !important; }

.sb-pdp .sb-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--ink);
  color: var(--bg);
  padding: 8px 14px;
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 4;
  font-weight: 500;
}
/* ===== Sale badge nổi bật: đỏ gradient + bóng + ánh sáng quét ===== */
.sb-pdp .sb-badge.is-sale {
  background: linear-gradient(135deg, #FF4133 0%, #E11D48 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(225, 29, 72, 0.45);
  overflow: hidden;
}
.sb-pdp .sb-badge.is-sale::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  animation: sbBadgeShine 3.2s ease-in-out infinite;
}
@keyframes sbBadgeShine {
  0%        { left: -60%; }
  55%, 100% { left: 140%; }
}
.sb-pdp .sb-zoom-hint {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(17, 33, 42, 0.06);
  color: var(--ink);
  padding: 8px 14px;
  font-family: 'Mulish', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 4;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.sb-pdp .sb-progress {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 4;
}
.sb-pdp .sb-progress-bar {
  flex: 1;
  height: 2px;
  background: rgba(17, 33, 42, 0.18);
  transition: background 0.3s var(--ease), height 0.2s;
  cursor: pointer;
}
.sb-pdp .sb-progress-bar:hover { height: 3px; background: var(--ink-2); }
.sb-pdp .sb-progress-bar.on,
.sb-pdp .sb-progress-bar.on:hover { background: var(--ink); }

/* ── Info column ─────────────────────────────────────── */
@media (min-width: 993px) {
  .sb-pdp .sb-info {
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }
}
.sb-pdp .sb-brand-tag {
  font-family: 'Mulish', sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.sb-pdp .sb-h1 {
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 14px 0 12px;
  padding-right: 60px;
  color: var(--ink);
}
.sb-pdp .sb-sku-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
  flex-wrap: wrap;
  gap: 12px;
}
.sb-pdp .sb-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--ink);
  align-items: center;
  font-size: 12px;
}
.sb-pdp .sb-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 0 14px;
}
.sb-pdp .sb-price {
  font-family: 'Mulish', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.sb-pdp .sb-price-was {
  color: var(--ink-3);
  text-decoration: line-through;
  font-size: 16px;
}
.sb-pdp .sb-price-tag {
  background: var(--ink);
  color: var(--bg-card);
  padding: 4px 8px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.sb-pdp .sb-stock-bar {
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-2);
}
.sb-pdp .sb-stock-track {
  flex: 1;
  height: 3px;
  background: var(--line);
  position: relative;
  overflow: hidden;
  max-width: 100px;
}
.sb-pdp .sb-stock-fill {
  position: absolute;
  inset: 0;
  background: var(--accent);
  width: 70%;
}
.sb-pdp .sb-stock-bar.sb-out .sb-stock-fill { background: var(--coral); width: 18%; }
.sb-pdp .sb-stock-bar b { color: var(--ink); font-weight: 600; }

.sb-pdp .sb-info .sb-section {
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
  margin-top: 4px;
}
.sb-pdp .sb-info .sb-section:first-of-type { border-top: 0; padding-top: 24px; }
.sb-pdp .sb-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
  flex-wrap: wrap;
}
.sb-pdp .sb-title-row .sb-eyebrow { color: var(--ink); }
.sb-pdp .sb-help-link {
  font-size: 11.5px;
  color: var(--ink-2);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.sb-pdp .sb-help-link:hover { color: var(--ink); }

/* Sizes */
.sb-pdp .sb-sizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.sb-pdp .sb-size {
  padding: 14px 0;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: all 0.15s var(--ease);
  position: relative;
  display: block;
  margin: 0;
  font-weight: 500;
}
.sb-pdp .sb-size input { position: absolute; opacity: 0; pointer-events: none; }
.sb-pdp .sb-size:hover { border-color: var(--ink-2); }
.sb-pdp .sb-size.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.sb-pdp .sb-size.out { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.sb-pdp .sb-size-recommend {
  margin-top: 12px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  line-height: 1.5;
}
.sb-pdp .sb-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.sb-pdp .sb-size-recommend b { font-weight: 600; }

/* Ẩn "Tip chọn size" trên desktop (mobile đã ẩn sẵn) */
@media (min-width: 769px) {
  .sb-pdp .sb-size-recommend { display: none !important; }
}

/* Qty + CTA */
.sb-pdp .sb-qty-cta { display: flex; gap: 12px; }
.sb-pdp .sb-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ink);
  height: 56px;
}
.sb-pdp .sb-qty button {
  width: 44px;
  height: 100%;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.2s;
}
.sb-pdp .sb-qty button:hover { background: var(--bg-soft); }
.sb-pdp .sb-qty input {
  width: 40px;
  height: 100%;
  border: 0;
  text-align: center;
  font-weight: 500;
  background: transparent;
  -moz-appearance: textfield;
  font-size: 14px;
}
.sb-pdp .sb-qty input::-webkit-outer-spin-button,
.sb-pdp .sb-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.sb-pdp .sb-btn-cart {
  flex: 1;
  height: 56px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--silver);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.2s;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sb-pdp .sb-btn-cart:hover {
  background: var(--blue-2);
  border-color: var(--blue-2);
  color: #FFFFFF;
}
.sb-pdp .sb-btn-buy {
  width: 100%;
  height: 56px;
  background: var(--blue-2);
  color: var(--silver);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 10px;
  transition: all 0.2s;
  border: 1px solid var(--blue-2);
}
.sb-pdp .sb-btn-buy:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #FFFFFF;
}

.sb-pdp .sb-wishlist-row button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: all 0.2s var(--ease);
}
.sb-pdp .sb-wishlist-row button:hover {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.sb-pdp .sb-wish.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--bg-card);
}
.sb-pdp .sb-wish.is-active svg { fill: currentColor; stroke: currentColor; }

/* Delivery */
.sb-pdp .sb-delivery {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line-soft);
  font-size: 12.5px;
}
.sb-pdp .sb-delivery-lbl { flex: 1; color: var(--ink-2); line-height: 1.5; }
.sb-pdp .sb-delivery-lbl b {
  color: var(--ink);
  font-weight: 600;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}


/* ═══ §4 BENEFITS STRIP — tag-driven, auto-fit ════════════════════ */
.sb-pdp .sb-benefits {
  max-width: 1440px;
  margin: 0 auto 80px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@supports (selector(:has(*))) {
  .sb-pdp .sb-benefits:has(.sb-benefit:nth-child(7)) {
    grid-template-columns: repeat(6, 1fr);
  }
}
.sb-pdp .sb-benefit {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sb-pdp .sb-benefit:last-child { border-right: 0; }
.sb-pdp .sb-benefit svg {
  width: 30px;
  height: 30px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.3;
}
.sb-pdp .sb-benefit .num {
  font-family: 'Mulish', sans-serif;
  font-size: 22px;
  line-height: 1;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.sb-pdp .sb-benefit .name {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.sb-pdp .sb-benefit .desc {
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.5;
}


/* ═══ §5 TABBED DETAILS ═══════════════════════════════════════════
   Material panel (V9 cards) styles → snippet sobie-material-panel.liquid
═════════════════════════════════════════════════════════════════ */
.sb-pdp .sb-detail-section {
  max-width: 1440px;
  margin: 0 auto 100px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: flex-start;
}
.sb-pdp .sb-detail-nav {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
}
.sb-pdp .sb-detail-nav button {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}
.sb-pdp .sb-detail-nav button .arrow {
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.sb-pdp .sb-detail-nav button.active { color: var(--ink); font-weight: 600; }
.sb-pdp .sb-detail-nav button.active .arrow { opacity: 1; transform: translateX(2px); }
.sb-pdp .sb-detail-nav button:hover { color: var(--ink); }
.sb-pdp .sb-detail-panel { display: none; }
.sb-pdp .sb-detail-panel.active { display: block; }

/* Story */
.sb-pdp .sb-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sb-pdp .sb-h2 {
  font-family: 'Mulish', sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.sb-pdp .sb-h3 {
  font-family: 'Mulish', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--ink);
}
.sb-pdp .sb-sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 28px;
  max-width: 460px;
}
.sb-pdp .sb-story-body {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: 24px;
}
.sb-pdp .sb-story-body p { margin-bottom: 16px; }
.sb-pdp .sb-story-body p:first-child {
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 500;
}
.sb-pdp .sb-story-body img { max-width: 100%; height: auto; margin: 24px 0; }
.sb-pdp .sb-story-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
.sb-pdp .sb-story-img img { width: 100%; height: 100%; object-fit: cover; }

/* Size table */
.sb-pdp .sb-size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.sb-pdp .sb-size-table th,
.sb-pdp .sb-size-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13px;
}
.sb-pdp .sb-size-table th {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
  background: var(--bg-card);
}
.sb-pdp .sb-size-table td:first-child b {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

/* Care */
.sb-pdp .sb-care-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.sb-pdp .sb-care-list li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.sb-pdp .sb-care-list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 22px;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}
.sb-pdp .sb-care-list li b { color: var(--ink); font-weight: 600; }
.sb-pdp .sb-care-group { margin-top: 36px; }
.sb-pdp .sb-care-group:first-of-type { margin-top: 0; }
.sb-pdp .sb-care-h {
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 4px;
  display: inline-block;
}
.sb-pdp .sb-care-group .sb-care-list { margin-top: 0; }

/* Ship */
.sb-pdp .sb-ship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 24px;
}
.sb-pdp .sb-ship-grid h4 {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.sb-pdp .sb-ship-grid .sb-care-list { margin-top: 8px; }


/* ═══ §6 RELATED COLLECTION ═══════════════════════════════════════ */
.sb-pdp .sb-collection-section {
  max-width: 1440px;
  margin: 0 auto 100px;
  padding: 0 40px;
}
.sb-pdp .sb-collection-tail { margin-bottom: 100px; }
.sb-pdp .sb-collection-section:last-child { margin-bottom: 140px; }
.sb-pdp .sb-col-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.sb-pdp .sb-col-head .sb-h2 { font-size: 32px; margin-top: 8px; }
.sb-pdp .sb-col-right { display: flex; gap: 16px; align-items: center; }
.sb-pdp .sb-view-all {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}
.sb-pdp .sb-view-all:hover { color: var(--accent); }

/* Override Haravan grid mặc định → horizontal scroll slider */
.sb-pdp .sb-col-slider .pdp-slider-track {
  display: flex !important;
  gap: 20px !important;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  grid-template-columns: none !important;
}
.sb-pdp .sb-col-slider .pdp-slider-track::-webkit-scrollbar { display: none; }
.sb-pdp .sb-col-slider .slider-item {
  flex: 0 0 calc((100% - 60px) / 4);
  max-width: calc((100% - 60px) / 4);
  scroll-snap-align: start;
}
.sb-pdp .bottom-related-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

/* Product card */
.sb-pdp .sb-product-card { display: block; position: relative; }
.sb-pdp .sb-pc-img {
  display: block;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}
.sb-pdp .sb-pc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.sb-pdp .sb-product-card:hover .sb-pc-img img { transform: scale(1.04); }
.sb-pdp .sb-pc-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: var(--bg-card);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.sb-pdp .sb-pc-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s var(--ease);
  box-shadow: 0 1px 3px rgba(17, 33, 42, 0.08);
}
.sb-pdp .sb-pc-heart:hover { background: var(--ink); color: var(--bg); }
.sb-pdp .sb-pc-heart.is-active { background: var(--coral); color: var(--bg-card); }
.sb-pdp .sb-pc-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.sb-pdp .sb-pc-name {
  font-family: 'Mulish', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0;
  transition: color 0.2s;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sb-pdp .sb-pc-name:hover { color: var(--accent); }
.sb-pdp .sb-pc-price { text-align: right; white-space: nowrap; }
.sb-pdp .sb-pc-price .now {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  display: block;
}
.sb-pdp .sb-pc-price .was {
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: line-through;
}


/* ═══ §7 STICKY BUYBAR ════════════════════════════════════════════ */
.sb-pdp .sb-buybar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-card);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
  z-index: 60;
  box-shadow: 0 -8px 24px rgba(17, 33, 42, 0.06);
  padding: 14px 40px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.sb-pdp .sb-buybar.visible { transform: translateY(0); }
.sb-pdp .sb-bb-img {
  width: 56px;
  height: 70px;
  background: var(--bg);
  overflow: hidden;
  flex-shrink: 0;
}
.sb-pdp .sb-bb-img img { width: 100%; height: 100%; object-fit: cover; }
.sb-pdp .sb-bb-meta { flex: 1; min-width: 0; }
.sb-pdp .sb-bb-meta h6 {
  font-family: 'Mulish', sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sb-pdp .sb-bb-meta small { font-size: 11px; color: var(--ink-2); letter-spacing: 0.08em; }
.sb-pdp .sb-bb-price {
  font-family: 'Mulish', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.sb-pdp .sb-bb-sizes { display: flex; gap: 4px; }
.sb-pdp .sb-bb-sizes button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  transition: all 0.15s;
}
.sb-pdp .sb-bb-sizes button:hover { border-color: var(--ink); }
.sb-pdp .sb-bb-sizes button.on { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.sb-pdp .sb-bb-cta {
  padding: 16px 28px;
  background: var(--blue);
  color: var(--silver);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.sb-pdp .sb-bb-cta:hover { background: var(--blue-2); color: #FFFFFF; }


/* ═══ §8 RESPONSIVE ═══════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .sb-pdp .sb-hero { grid-template-columns: 72px 1fr 420px; gap: 24px; padding: 24px 28px 64px; }
  .sb-pdp .sb-detail-section { grid-template-columns: 220px 1fr; gap: 48px; padding: 0 28px; }
  .sb-pdp .sb-benefits { padding: 0 28px; }
  .sb-pdp .sb-collection-section { padding: 0 28px; }
  .sb-pdp .sb-col-slider .slider-item { flex: 0 0 calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); }
  .sb-pdp .bottom-related-grid { grid-template-columns: repeat(3, 1fr) !important; }
  .sb-pdp .sb-h1 { font-size: 22px; padding-right: 56px; }
  .sb-pdp .sb-h2 { font-size: 30px; }
}

@media (max-width: 992px) {
  .sb-pdp .sb-crumbs { padding: 18px 24px 0; }
  .sb-pdp .sb-hero { grid-template-columns: 1fr; gap: 28px; padding: 20px 24px 48px; }
  .sb-pdp .sb-thumbs {
    position: static;
    flex-direction: row;
    order: 2;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .sb-pdp .sb-thumbs::-webkit-scrollbar { display: none; }
  .sb-pdp .sb-thumb { flex: 0 0 60px; width: 60px; height: 80px; aspect-ratio: auto; }
  .sb-pdp .sb-thumb-label { display: none; }
  .sb-pdp .sb-gallery { order: 1; }
  .sb-pdp .sb-info { position: static; order: 3; }
  .sb-pdp .sb-detail-section {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 72px;
    padding: 0 24px;
  }
  .sb-pdp .sb-detail-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }
  .sb-pdp .sb-detail-nav::-webkit-scrollbar { display: none; }
  .sb-pdp .sb-detail-nav button {
    border-bottom: 0;
    padding: 14px 18px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .sb-pdp .sb-detail-nav button.active { border-bottom: 2px solid var(--ink); }
  .sb-pdp .sb-story,
  .sb-pdp .sb-ship-grid { grid-template-columns: 1fr; gap: 32px; }
  .sb-pdp .sb-collection-section { padding: 0 24px; }
  .sb-pdp .sb-col-head .sb-h2 { font-size: 26px; }
  .sb-pdp .sb-col-slider .slider-item {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
  .sb-pdp .bottom-related-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .sb-pdp .sb-buybar { padding: 12px 24px; gap: 16px; }
  .sb-pdp .sb-bb-sizes,
  .sb-pdp .sb-bb-img { display: none; }
}

@media (max-width: 640px) {
  .sb-pdp .sb-crumbs { font-size: 10px; padding: 14px 18px 0; }
  .sb-pdp .sb-hero { padding: 14px 18px 40px; gap: 22px; }
  .sb-pdp .sb-thumb { flex: 0 0 52px; width: 52px; height: 68px; }
  .sb-pdp .sb-badge {
    top: 12px; left: 12px;
    padding: 4px 9px;
    font-size: 8.5px;
    letter-spacing: 0.12em;
  }
  .sb-pdp .sb-zoom-hint {
    top: 12px; right: 12px;
    padding: 4px 9px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }
  .sb-pdp .sb-h1 { font-size: 20px; margin: 10px 0 8px; padding-right: 50px; }
  .sb-pdp .sb-price { font-size: 26px; }
  .sb-pdp .sb-qty-cta { flex-wrap: wrap; }
  .sb-pdp .sb-qty { height: 52px; }
  .sb-pdp .sb-btn-cart { height: 52px; font-size: 11px; letter-spacing: 0.16em; flex: 1 0 100%; margin-top: 10px; }
  .sb-pdp .sb-btn-buy { height: 52px; font-size: 11px; letter-spacing: 0.16em; }
  .sb-pdp .sb-wishlist-row { gap: 14px; }
  .sb-pdp .sb-benefit { padding: 24px 14px; }
  .sb-pdp .sb-benefit .num { font-size: 22px; }
  .sb-pdp .sb-benefit .name { font-size: 11px; }
  .sb-pdp .sb-detail-section { padding: 0 18px; }
  .sb-pdp .sb-h2 { font-size: 24px; }
  .sb-pdp .sb-h3 { font-size: 22px; }
  .sb-pdp .sb-size-table th,
  .sb-pdp .sb-size-table td { padding: 10px 8px; font-size: 11.5px; }
  .sb-pdp .sb-collection-section { padding: 0 18px; }
  .sb-pdp .sb-col-head .sb-h2 { font-size: 22px; }
  .sb-pdp .sb-col-slider .slider-item,
  .sb-pdp .sb-col-slider .pdp-slider-track > * {
    flex: 0 0 64% !important;
    max-width: 64% !important;
  }
  .sb-pdp .bottom-related-grid {
    grid-template-columns: none !important;
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 8px;
    margin: 0 -18px;
    padding-left: 18px;
    padding-right: 18px;
  }
  .sb-pdp .bottom-related-grid::-webkit-scrollbar { display: none; }
  .sb-pdp .bottom-related-grid > * {
    flex: 0 0 64% !important;
    max-width: 64% !important;
    scroll-snap-align: start;
  }
  .sb-pdp .sb-pc-name { font-size: 16px; }
  .sb-pdp .sb-pc-price .now { font-size: 16px; }
  .sb-pdp .sb-buybar { padding: 10px 16px; gap: 12px; }
  .sb-pdp .sb-bb-meta h6 { font-size: 15px; }
  .sb-pdp .sb-bb-meta small { font-size: 10px; }
  .sb-pdp .sb-bb-price { font-size: 19px; }
  .sb-pdp .sb-bb-cta { padding: 12px 16px; font-size: 10px; letter-spacing: 0.16em; }
}


/* ═══ §9 LIGHTBOX ═════════════════════════════════════════════════ */
.sb-pdp .sb-lightbox,
.sb-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 22, 0.94);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  font-family: 'Mulish', sans-serif;
}
.sb-lightbox.is-open {
  display: flex;
  opacity: 1;
}
.sb-lightbox .sb-lb-stage {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sb-lightbox .sb-lb-img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  cursor: zoom-out;
  transition: opacity 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
}
.sb-lightbox .sb-lb-close,
.sb-lightbox .sb-lb-prev,
.sb-lightbox .sb-lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(8px);
  z-index: 2;
}
.sb-lightbox .sb-lb-close:hover,
.sb-lightbox .sb-lb-prev:hover,
.sb-lightbox .sb-lb-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.sb-lightbox .sb-lb-close { top: 24px; right: 24px; font-size: 24px; }
.sb-lightbox .sb-lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.sb-lightbox .sb-lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
.sb-lightbox .sb-lb-prev:hover { transform: translateY(-50%) scale(1.05); }
.sb-lightbox .sb-lb-next:hover { transform: translateY(-50%) scale(1.05); }
.sb-lightbox .sb-lb-count {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}

@media (max-width: 640px) {
  .sb-lightbox .sb-lb-close,
  .sb-lightbox .sb-lb-prev,
  .sb-lightbox .sb-lb-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .sb-lightbox .sb-lb-close { top: 16px; right: 16px; }
  .sb-lightbox .sb-lb-prev { left: 12px; }
  .sb-lightbox .sb-lb-next { right: 12px; }
}


/* ═══ §10 SIZE GUIDE V4 (.sb-sg-*) ════════════════════════════════ */
.sb-pdp .sb-sg-title {
  font-family: 'Mulish', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--ink);
}
.sb-pdp .sb-sg-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.sb-pdp .sb-sg-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EAEEFA;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
}
.sb-pdp .sb-sg-desc {
  font-size: 14px;
  color: var(--ink-2);
  max-width: 720px;
  margin: 0 0 24px;
  line-height: 1.55;
}

/* Note bar */
.sb-pdp .sb-sg-note {
  background: var(--bg-card);
  border-left: 3px solid var(--blue);
  padding: 14px 18px;
  margin: 0 0 24px;
  font-size: 13px;
  color: var(--ink-2);
  font-style: italic;
}
.sb-pdp .sb-sg-note b { font-weight: 700; }

/* Master size table */
.sb-pdp .sb-sg-table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 0;
  font-size: 13px;
}
.sb-pdp .sb-sg-table caption {
  text-align: left;
  padding: 8px 0;
  font-size: 12px;
  color: var(--ink-2);
  font-style: italic;
  font-weight: 600;
  caption-side: top;
}
.sb-pdp .sb-sg-table thead th {
  background: #F5F5F5;
  padding: 14px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-bottom: 2px solid var(--ink);
}
.sb-pdp .sb-sg-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #EFEFEF;
}
.sb-pdp .sb-sg-table tbody td:first-child {
  font-weight: 700;
  color: var(--blue);
}
.sb-pdp .sb-sg-table + .sb-sg-table { margin-top: 24px; }

/* SOBIE wave */
.sb-pdp .sb-sg-wave {
  margin: -16px 0 32px;
  max-width: 240px;
}
.sb-pdp .sb-sg-wave-svg {
  display: block;
  width: 100%;
  height: 14px;
}

/* Garment grid */
.sb-pdp .sb-sg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.sb-pdp .sb-sg-grid-single {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
}
.sb-pdp .sb-sg-card {
  background: #FFF;
  border: 1px solid #E0E4E8;
  padding: 24px 20px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sb-pdp .sb-sg-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
}
.sb-pdp .sb-sg-card-img img {
  max-width: 100%;
  height: auto;
  max-height: 280px;
}
.sb-pdp .sb-sg-card-img-dual { gap: 8px; }
.sb-pdp .sb-sg-card-img-dual img { max-height: 160px; }
.sb-pdp .sb-sg-card-label {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #EFEFEF;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.sb-pdp .sb-sg-card-placeholder .sb-sg-card-img {
  background: var(--bg-card);
  color: #999;
  font-style: italic;
  font-size: 12px;
}

/* Sub-section */
.sb-pdp .sb-sg-sub {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid #EFEFEF;
}
.sb-pdp .sb-sg-sub-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--ink);
}

/* Priority tip */
.sb-pdp .sb-sg-tip {
  font-size: 13px;
  color: var(--ink-2);
  margin-top: 16px;
  padding: 14px 18px;
  background: #F5F5F5;
  border-radius: 4px;
  line-height: 1.7;
}
.sb-pdp .sb-sg-tip b { color: var(--blue); }

/* Size guide mobile */
@media (max-width: 640px) {
  .sb-pdp .sb-sg-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sb-pdp .sb-sg-card { padding: 16px 12px 12px; }
  .sb-pdp .sb-sg-card-img { min-height: 180px; }
  .sb-pdp .sb-sg-table { font-size: 12px; }
  .sb-pdp .sb-sg-table thead th,
  .sb-pdp .sb-sg-table tbody td { padding: 10px 8px; }
}


/* ═══ §11 HERO RATING — sync với widget ═══════════════════════════ */
.sb-pdp .sb-hero-rating {
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sb-pdp .sb-hero-rating:hover { opacity: 0.65; }

.sb-pdp .sb-hero-stars-icons {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  color: var(--ink);
}
.sb-pdp .sb-hero-star {
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 0;
}
.sb-pdp .sb-hero-star img,
.sb-pdp .sb-hero-star svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.sb-pdp .sb-hero-star img { opacity: 0.25; transition: opacity 0.15s; }
.sb-pdp .sb-hero-star-full img { opacity: 1; }
.sb-pdp .sb-hero-star-half img { opacity: 0.55; }

.sb-pdp .sb-hero-rating-num {
  margin-left: 6px;
  font-weight: 600;
  color: var(--ink);
}
.sb-pdp .sb-hero-rating-count {
  margin-left: 2px;
  color: var(--ink-3);
  font-size: 11.5px;
}


/* ═══ §12 ACTION ROW — delivery + mini actions ════════════════════ */
.sb-pdp .sb-action-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.sb-pdp .sb-action-row .sb-delivery {
  flex: 1;
  margin: 0;
}
.sb-pdp .sb-actions-mini {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.sb-pdp .sb-actions-mini button {
  width: 44px;
  height: 44px;
  align-self: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--bg-card);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  transition: all 0.2s var(--ease);
}
.sb-pdp .sb-actions-mini button:hover {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.sb-pdp .sb-actions-mini .sb-wish.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--bg-card);
}
.sb-pdp .sb-actions-mini .sb-wish.is-active svg {
  fill: currentColor;
  stroke: currentColor;
}

/* Mobile: stack actions */
@media (max-width: 480px) {
  .sb-pdp .sb-action-row { flex-wrap: wrap; }
  .sb-pdp .sb-action-row .sb-delivery { flex: 1 0 100%; order: 2; }
  .sb-pdp .sb-actions-mini { order: 1; width: 100%; justify-content: flex-end; }
}


/* ═══ §13 MIX & MATCH GRID ════════════════════════════════════════ */
.sb-pdp .sb-mix-section {
  max-width: 1440px;
  margin: 0 auto 80px;
  padding: 0 40px;
}
.sb-pdp .sb-mix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .sb-pdp .sb-mix-section { padding: 0 28px; }
  .sb-pdp .sb-mix-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
  .sb-pdp .sb-mix-section { padding: 0 24px; }
  .sb-pdp .sb-mix-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sb-pdp .sb-mix-section { padding: 0 18px; }
  .sb-pdp .sb-mix-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin: 0 -18px;
    padding: 0 18px 8px;
    gap: 12px;
  }
  .sb-pdp .sb-mix-grid::-webkit-scrollbar { display: none; }
  .sb-pdp .sb-mix-grid > * {
    flex: 0 0 64%;
    max-width: 64%;
    scroll-snap-align: start;
  }
}
/* ═══ §14 SALE BADGE (eyebrow trên giá) ═══════════════════════════ */
.sb-pdp .sb-sale-badge-row {
  margin: 18px 0 0;        /* đẩy lên ngay phía trên giá */
  line-height: 1;
}

.sb-pdp .sb-sale-badge {
  display: inline-block;
  background: var(--ink);   /* đen #11212A — đồng bộ theme */
  color: #FFFFFF;
  font-family: 'Mulish', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 3px;
  line-height: 1;
}

/* Bỏ padding-top mặc định của sb-price-row khi badge có mặt — sát vào nhau */
.sb-pdp .sb-sale-badge-row + .sb-price-row {
  padding-top: 8px;
}

/* Mobile */
@media (max-width: 992px) {
  .sb-pdp .sb-sale-badge-row {
    margin: 14px 0 0;
  }
  .sb-pdp .sb-sale-badge {
    font-size: 10.5px;
    padding: 4px 9px;
  }
  .sb-pdp .sb-sale-badge-row + .sb-price-row {
    padding-top: 6px;
  }
}

/* ═══ §15 BO TRÒN TẤT CẢ NÚT ══════════════════════════════════════ */
.sb-pdp .sb-btn-cart,
.sb-pdp .sb-btn-buy         { border-radius: 12px; }
.sb-pdp .sb-qty             { border-radius: 12px; overflow: hidden; }
.sb-pdp .sb-size            { border-radius: 10px; }
.sb-pdp .sb-bb-cta          { border-radius: 12px; }
.sb-pdp .sb-bb-sizes button { border-radius: 8px; }
.sb-pdp .sb-price-tag       { border-radius: 6px; }
.sb-pdp .sb-badge,
.sb-pdp .sb-sale-badge      { border-radius: 6px; }