/* Product Detail Page — 1688-style layout */
/* Inherits theme colors via --bc-* tokens in bc-global.css */

.bc-pdp {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/* --- Loading / Error --- */

.bc-pdp__loading {
  padding: 80px 6vw;
  text-align: center;
  font-size: 1.1rem;
  color: var(--bc-muted);
}

.bc-pdp__error {
  padding: 40px 6vw;
  text-align: center;
  font-size: 1rem;
  color: #b42318;
}

.bc-pdp__error[hidden] {
  display: none;
}

/* --- Breadcrumb --- */

.bc-pdp__breadcrumb {
  padding: 18px 2vw 0;
  font-size: 0.85rem;
  color: var(--bc-muted);
  max-width: 1500px;
  margin: 0 auto;
}

.bc-pdp__breadcrumb a {
  color: var(--bc-muted);
  text-decoration: none;
}

.bc-pdp__breadcrumb a:hover {
  text-decoration: underline;
}

.bc-pdp__breadcrumb-sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* --- Main 2-column layout --- */

.bc-pdp__main {
  display: flex;
  flex-wrap: wrap;
  gap: 52px;
  padding: 24px 2vw 60px;
  max-width: 1500px;
  margin: 0 auto;
}

/* Gallery — left column, fixed max width */
.bc-pdp__gallery {
  width: 55%;
  max-width: 760px;
  flex-shrink: 0;
}

/* Right panel — capped width so it doesn't spread too wide */
.bc-pdp__right {
  flex: 1;
  min-width: 0;
  max-width: 560px;
}

.bc-pdp__right-inner {
  padding-bottom: 40px;
  width: 100%;
  overflow: hidden;
}

/* Details — full width below both columns */
.bc-pdp__details {
  width: 100%;
  margin-top: 32px;
}

/* ===================================================================
   GALLERY — vertical thumbs on left, main image on right
   =================================================================== */

.bc-pdp__gallery {
  display: flex;
  gap: 12px;
}

.bc-pdp__gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 72px;
  flex-shrink: 0;
  max-height: 500px;
  overflow-y: auto;
}

.bc-pdp__gallery-thumbs::-webkit-scrollbar {
  width: 3px;
}
.bc-pdp__gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--bc-border, #e0e0e0);
  border-radius: 3px;
}

.bc-pdp__gallery-thumb {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  transition: opacity 0.15s, border-color 0.15s;
  flex-shrink: 0;
  background: var(--bc-grey-100, #F5F5F5);
}

.bc-pdp__gallery-thumb:hover {
  opacity: 1;
}

.bc-pdp__gallery-thumb.is-active {
  border-color: var(--bc-accent, #E8572A);
  opacity: 1;
}

.bc-pdp__gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--bc-radius-xl, 16px);
  overflow: hidden;
  background: var(--bc-grey-100, #F5F5F5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-pdp__gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* ===================================================================
   RIGHT PANEL — title, price, variants, cart
   =================================================================== */

.bc-pdp__title {
  margin: 0;
  font-family: var(--bc-font-serif, Georgia, serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--bc-text, #1a1a1a);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.bc-pdp__meta {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: var(--bc-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bc-pdp__price-block {
  margin: 16px 0 0;
  padding: 16px 18px;
  background: linear-gradient(135deg, #FFF5F2, #FFF8F0);
  border-radius: var(--bc-radius-md, 12px);
  border: 1px solid rgba(232, 87, 42, 0.12);
}

.bc-pdp__price {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--bc-accent, #E8572A);
}

.bc-pdp__original-price {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: var(--bc-muted);
  text-decoration: line-through;
}

/* --- Quantity Ranges --- */

.bc-pdp__qty-ranges {
  margin-top: 16px;
}

.bc-pdp__qty-ranges[hidden] {
  display: none;
}

.bc-pdp__ranges-title {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-muted);
  margin-bottom: 8px;
}

.bc-pdp__ranges-grid {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bc-pdp__range-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--bc-border, #e5e7eb);
  border-radius: 8px;
  font-size: 0.82rem;
  background: var(--bc-cream, #FAFAFA);
}

.bc-pdp__range-qty {
  color: var(--bc-muted);
  font-size: 0.75rem;
}

.bc-pdp__range-price {
  font-weight: 700;
  color: var(--bc-accent, #E8572A);
  margin-top: 2px;
}

/* --- Variants --- */

.bc-pdp__variants {
  margin-top: 20px;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 4px;
}

.bc-pdp__variants::-webkit-scrollbar {
  width: 4px;
}
.bc-pdp__variants::-webkit-scrollbar-thumb {
  background: var(--bc-border, #e0e0e0);
  border-radius: 4px;
}

.bc-pdp__variants[hidden] {
  display: none;
}

.bc-pdp__variant-group {
  margin-bottom: 16px;
}

.bc-pdp__variant-group-label {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bc-text, #1a1a1a);
}

.bc-pdp__variant-group-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
}

.bc-pdp__variant-group-options > * {
  max-width: 100%;
}

.bc-pdp__variant-btn {
  border: 1.5px solid var(--bc-border, #e5e7eb) !important;
  border-radius: 8px !important;
  padding: 6px 14px !important;
  font-size: 0.84rem !important;
  background: #fff !important;
  color: var(--bc-text, #1a1a1a) !important;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bc-pdp__variant-btn:hover {
  border-color: var(--bc-accent, #E8572A) !important;
}

.bc-pdp__variant-btn.is-selected {
  border-color: var(--bc-accent, #E8572A) !important;
  background: #FFF5F2 !important;
  box-shadow: 0 0 0 1px var(--bc-accent, #E8572A);
  font-weight: 600;
}

.bc-pdp__variant-swatch {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.bc-pdp__variant-price {
  font-size: 0.78rem;
  color: var(--bc-muted);
}

.bc-pdp__variant-stock {
  font-size: 0.72rem;
  color: var(--bc-muted);
  opacity: 0.7;
}

/* --- Stock --- */

.bc-pdp__stock {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--bc-muted);
}

.bc-pdp__stock[hidden] {
  display: none;
}

/* --- Quantity --- */

.bc-pdp__quantity {
  margin-top: 20px;
}

.bc-pdp__quantity-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bc-pdp__quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--bc-border, #e5e7eb);
  border-radius: var(--bc-radius, 8px);
  overflow: hidden;
}

.bc-pdp__qty-btn {
  border: 0 !important;
  background: var(--bc-cream, #F7F8FA) !important;
  width: 38px;
  height: 38px;
  font-size: 1.1rem !important;
  cursor: pointer;
  color: var(--bc-text) !important;
  display: grid;
  place-items: center;
  border-radius: 0 !important;
  padding: 0 !important;
  transition: background 0.15s;
}

.bc-pdp__qty-btn:hover {
  background: var(--bc-grey-200, #E5E7EB) !important;
}

.bc-pdp__qty-input {
  border: 0;
  border-left: 1px solid var(--bc-border);
  border-right: 1px solid var(--bc-border);
  width: 52px;
  height: 38px;
  text-align: center;
  font-size: 0.95rem;
  background: transparent;
  color: inherit;
  -moz-appearance: textfield;
}

.bc-pdp__qty-input::-webkit-inner-spin-button,
.bc-pdp__qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* --- Actions --- */

.bc-pdp__actions {
  margin-top: 20px;
}

.bc-pdp__add-cart {
  width: 100%;
  height: 48px;
  border: 0 !important;
  border-radius: var(--bc-radius, 8px) !important;
  background: var(--bc-accent, #E8572A) !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.15s;
}

.bc-pdp__add-cart:hover {
  opacity: 0.9;
}

.bc-pdp__add-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.bc-pdp__status {
  margin-top: 8px;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.bc-pdp__status.is-error {
  color: #b42318;
}

.bc-pdp__status.is-ok {
  color: var(--bc-muted);
}

/* --- Source link --- */

.bc-pdp__source {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bc-border, #e5e7eb);
  font-size: 0.82rem;
}

.bc-pdp__source[hidden] {
  display: none;
}

.bc-pdp__source a {
  color: var(--bc-muted);
  text-decoration: none;
}

.bc-pdp__source a:hover {
  text-decoration: underline;
}

/* ===================================================================
   DETAIL SECTIONS — attributes, packing, description
   =================================================================== */

.bc-pdp__section {
  padding: 28px 0;
  border-top: 1px solid var(--bc-border, #e5e7eb);
}

.bc-pdp__section[hidden] {
  display: none;
}

.bc-pdp__section-title {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bc-text, #1a1a1a);
}

/* Attributes grid — 2 columns */
.bc-pdp__attrs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--bc-grey-100, #F1F3F5);
  border-radius: 8px;
  overflow: hidden;
}

.bc-pdp__attr-item {
  display: flex;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--bc-grey-100, #F1F3F5);
}

.bc-pdp__attr-item:last-child,
.bc-pdp__attr-item:nth-last-child(2):nth-child(odd) {
  border-bottom: 0;
}

.bc-pdp__attr-name {
  background: var(--bc-offwhite, #F7F8FA);
  color: var(--bc-navy, #0A1628);
  font-weight: 600;
  min-width: 130px;
  max-width: 130px;
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-right: 1px solid var(--bc-grey-100, #F1F3F5);
}

.bc-pdp__attr-value {
  color: var(--bc-text-secondary, #4B5563);
  padding: 10px 14px;
  word-break: break-word;
  background: #fff;
}

/* Packing / info table */
.bc-pdp__info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.bc-pdp__info-table tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bc-pdp__info-table td {
  padding: 10px 12px;
  vertical-align: top;
}

.bc-pdp__info-table td:first-child {
  color: var(--bc-muted);
  width: 160px;
  padding-right: 16px;
}

/* Description */
.bc-pdp__desc-content {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--bc-text, #333);
  column-count: 2;
  column-gap: 16px;
}

.bc-pdp__desc-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 6px 0;
  break-inside: avoid;
}

/* ===================================================================
   QUANTITY ROW (qty controls + Add button)
   =================================================================== */

.bc-pdp__quantity-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bc-pdp__add-order-btn {
  height: 38px;
  padding: 0 18px !important;
  border: 1.5px solid var(--bc-accent, #E8572A) !important;
  border-radius: var(--bc-radius, 8px) !important;
  background: transparent !important;
  color: var(--bc-accent, #E8572A) !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.bc-pdp__add-order-btn:hover {
  background: var(--bc-accent, #E8572A) !important;
  color: #fff !important;
}

/* ===================================================================
   ORDER SUMMARY TABLE
   =================================================================== */

.bc-pdp__order-summary {
  margin-top: 16px;
  border: 1px solid var(--bc-border, #e5e7eb);
  border-radius: var(--bc-radius, 8px);
  overflow: hidden;
  max-width: 100%;
}

.bc-pdp__summary-table {
  table-layout: fixed;
}

.bc-pdp__order-summary[hidden] {
  display: none;
}

.bc-pdp__summary-header {
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bc-cream, #FAFAFA);
  border-bottom: 1px solid var(--bc-border, #e5e7eb);
  color: var(--bc-muted);
}

.bc-pdp__summary-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.bc-pdp__summary-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bc-pdp__summary-table td {
  padding: 8px 10px;
  vertical-align: middle;
}

.bc-pdp__summary-cell-item {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.bc-pdp__summary-cell-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bc-pdp__summary-thumb {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.bc-pdp__summary-cell-qty {
  color: var(--bc-muted);
  white-space: nowrap;
}

.bc-pdp__summary-qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--bc-border, #e5e7eb);
  border-radius: 6px;
  overflow: hidden;
}

.bc-pdp__summary-qty-btn {
  border: none !important;
  background: var(--bc-cream, #F7F8FA) !important;
  width: 28px;
  height: 28px;
  font-size: 14px !important;
  cursor: pointer;
  color: var(--bc-text, #1a1a1a) !important;
  display: grid;
  place-items: center;
  padding: 0 !important;
  border-radius: 0 !important;
  transition: background 0.15s;
  line-height: 1;
}

.bc-pdp__summary-qty-btn:hover {
  background: var(--bc-grey-200, #E5E7EB) !important;
}

.bc-pdp__summary-qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bc-text, #1a1a1a);
  border-left: 1px solid var(--bc-border, #e5e7eb);
  border-right: 1px solid var(--bc-border, #e5e7eb);
  padding: 0 2px;
  height: 28px;
  line-height: 28px;
}

.bc-pdp__summary-cell-price {
  font-weight: 600;
  white-space: nowrap;
}

.bc-pdp__summary-cell-remove {
  width: 30px;
  text-align: center;
}

.bc-pdp__summary-remove {
  border: none !important;
  background: none !important;
  color: var(--bc-muted) !important;
  font-size: 1.1rem !important;
  cursor: pointer;
  padding: 0 4px !important;
  line-height: 1;
  opacity: 0.5;
  transition: opacity 0.15s;
}

.bc-pdp__summary-remove:hover {
  opacity: 1;
  color: #b42318 !important;
}

.bc-pdp__summary-table tfoot td {
  padding: 10px 10px;
  border-top: 1px solid var(--bc-border, #e5e7eb);
  background: var(--bc-cream, #FAFAFA);
}

/* ===================================================================
   STICKY BOTTOM BAR
   =================================================================== */

.bc-pdp__sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 1px solid var(--bc-border, #e5e7eb);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
}

.bc-pdp__sticky-bar[hidden] {
  display: none;
}

.bc-pdp__sticky-bar-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bc-pdp__sticky-bar-info {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.bc-pdp__sticky-bar-title {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--bc-text, #1a1a1a);
}

.bc-pdp__sticky-bar-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bc-accent, #E8572A);
  flex-shrink: 0;
}

.bc-pdp__sticky-bar-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.bc-pdp__quantity-control--sm {
  transform: scale(0.9);
}

.bc-pdp__sticky-bar-cart {
  height: 42px;
  padding: 0 28px !important;
  border: 0 !important;
  border-radius: var(--bc-radius, 8px) !important;
  background: var(--bc-accent, #E8572A) !important;
  color: #fff !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}

.bc-pdp__sticky-bar-cart:hover {
  opacity: 0.9;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */

@media (max-width: 960px) {
  .bc-pdp__main {
    flex-direction: column;
    gap: 20px;
    padding: 20px 16px 40px;
  }

  .bc-pdp__gallery {
    width: 100%;
    max-width: 100%;
  }

  .bc-pdp__right {
    width: 100%;
    max-width: 100%;
  }

  .bc-pdp__right-inner {
    padding-bottom: 0;
  }

  .bc-pdp__details {
    margin-top: 20px;
  }

  /* Gallery goes horizontal on mobile */
  .bc-pdp__gallery {
    flex-direction: column-reverse;
  }

  .bc-pdp__gallery-thumbs {
    flex-direction: row;
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    gap: 6px;
  }

  .bc-pdp__gallery-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
  }

  .bc-pdp__gallery-main {
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  /* Attributes — single column, full width */
  .bc-pdp__attrs-grid {
    grid-template-columns: 1fr;
  }

  .bc-pdp__attr-name {
    min-width: 0;
    max-width: none;
  }

  .bc-pdp__variants {
    max-height: 260px;
  }

  /* Sticky bar on tablet */
  .bc-pdp__sticky-bar-inner {
    padding: 0 4vw;
  }
}

@media (max-width: 520px) {
  .bc-pdp__breadcrumb {
    padding: 10px 16px 0;
    font-size: 0.75rem;
  }

  .bc-pdp__main {
    padding: 12px 16px 100px;
    gap: 0;
  }

  .bc-pdp__gallery-thumb {
    width: 52px;
    height: 52px;
  }

  .bc-pdp__gallery-main {
    aspect-ratio: 1 / 1;
  }

  .bc-pdp__title {
    font-size: 1.05rem;
  }

  .bc-pdp__meta {
    font-size: 0.72rem;
  }

  .bc-pdp__price {
    font-size: 1.3rem;
  }

  .bc-pdp__price-block {
    padding: 12px 14px;
    margin-top: 12px;
  }

  .bc-pdp__original-price {
    font-size: 0.78rem;
  }

  .bc-pdp__variant-group-label {
    font-size: 0.78rem;
  }

  .bc-pdp__variant-group-options {
    gap: 6px;
  }

  .bc-pdp__variant-btn {
    padding: 5px 10px !important;
    font-size: 0.78rem !important;
  }

  .bc-pdp__variant-swatch {
    width: 26px;
    height: 26px;
  }

  .bc-pdp__variants {
    max-height: 220px;
  }

  .bc-pdp__quantity {
    margin-top: 16px;
  }

  .bc-pdp__quantity-label {
    font-size: 0.78rem;
  }

  .bc-pdp__quantity-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .bc-pdp__add-cart {
    height: 44px;
    font-size: 0.84rem !important;
    border-radius: 12px !important;
  }

  .bc-pdp__actions {
    margin-top: 16px;
  }

  /* Sticky bar — compact for small screens */
  .bc-pdp__sticky-bar {
    padding: 8px 0;
  }

  .bc-pdp__sticky-bar-inner {
    padding: 0 16px;
    gap: 8px;
  }

  .bc-pdp__sticky-bar-info {
    gap: 8px;
  }

  .bc-pdp__sticky-bar-title {
    font-size: 0.78rem;
    max-width: 120px;
  }

  .bc-pdp__sticky-bar-price {
    font-size: 0.95rem;
  }

  .bc-pdp__sticky-bar-cart {
    height: 36px;
    padding: 0 14px !important;
    font-size: 0.75rem !important;
    border-radius: 10px !important;
  }

  .bc-pdp__quantity-control--sm {
    transform: scale(0.85);
  }

  /* Ranges */
  .bc-pdp__ranges-grid {
    gap: 4px;
  }

  .bc-pdp__range-item {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .bc-pdp__ranges-title {
    font-size: 0.72rem;
  }

  /* Detail sections */
  .bc-pdp__section {
    padding: 20px 0;
  }

  .bc-pdp__section-title {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .bc-pdp__attrs-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 0;
  }

  .bc-pdp__attr-item {
    flex-direction: column;
    gap: 0;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--bc-grey-100, #F1F3F5);
  }

  .bc-pdp__attr-name {
    min-width: 0;
    max-width: none;
    font-weight: 600;
    padding: 8px 10px 4px;
    border-right: none;
    font-size: 0.72rem;
  }

  .bc-pdp__attr-value {
    padding: 0 10px 8px;
  }

  .bc-pdp__info-table td {
    display: block;
    padding: 6px 10px;
    font-size: 0.82rem;
  }

  .bc-pdp__info-table td:first-child {
    width: auto;
    font-weight: 600;
    padding-bottom: 0;
  }

  /* Source link */
  .bc-pdp__source {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 0.78rem;
  }

  /* Order summary */
  .bc-pdp__summary-table {
    font-size: 0.78rem;
  }

  .bc-pdp__summary-thumb {
    width: 24px;
    height: 24px;
  }

  /* Description images — single column on mobile */
  .bc-pdp__desc-content {
    font-size: 0.85rem;
    column-count: 1;
  }

  .bc-pdp__desc-content img {
    border-radius: 6px;
    margin: 8px 0;
  }
}
