/* ============================================================
   OSJ Sharp — product detail page
   ============================================================ */

.osj-pdp { padding-block: 28px 72px; }
.osj-pdp .osj-breadcrumb { margin-bottom: 28px; }

.osj-pdp__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-7);
  align-items: start;
}

/* ============================================================
   Gallery
   ============================================================ */
.osj-pdp__gallery { display: flex; flex-direction: column; gap: 14px; }
.osj-pdp__stage {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-sunken);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.osj-pdp__stage img { width: 100%; height: 100%; object-fit: cover; }

.osj-pdp__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.osj-pdp__thumb {
  position: relative;
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-sunken);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  transition: border-color var(--dur-base) var(--ease-out);
}
.osj-pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.osj-pdp__thumb:hover { border-color: var(--border-strong); }
.osj-pdp__thumb.is-active { border-color: var(--ink-900); }

/* ============================================================
   Buy box
   ============================================================ */
.osj-pdp__title {
  margin: 12px 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: var(--weight-ultra);
  line-height: 1.06;
  letter-spacing: -0.026em;
  color: var(--text-strong);
  text-wrap: pretty;
}
.osj-pdp__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-body);
}
.osj-pdp__price {
  margin-bottom: 6px;
  font-family: var(--font-mono);
  font-weight: var(--weight-semibold);
  font-size: 2rem;
  font-variant-numeric: tabular-nums;
  color: var(--price);
}
.osj-pdp__price del { font-size: 1.4rem; opacity: 0.5; margin-right: 10px; }
.osj-pdp__price ins { text-decoration: none; color: var(--price-sale); }
.osj-pdp__lead {
  margin-bottom: var(--space-5);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-link);
}
.osj-pdp__excerpt {
  max-width: 52ch;
  margin-bottom: 26px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
}
.osj-pdp__buynow { margin-bottom: 28px; }

.osj-pdp__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
  list-style: none;
}
.osj-pdp__feature-title { margin-bottom: 2px; font-weight: var(--weight-semibold); font-size: 14.5px; color: var(--text-strong); }
.osj-pdp__features p { font-size: 13.5px; line-height: 1.5; color: var(--text-body); }

/* ============================================================
   Woo's add-to-cart form, restyled in place.
   The markup belongs to woocommerce_template_single_add_to_cart — it is
   deliberately not overridden, because that is where the variation form's
   script dependencies are attached (BUILD-HANDOFF §6).
   ============================================================ */
.osj-pdp__buybox form.cart { margin-bottom: var(--space-5); }
.osj-pdp__buybox form.cart::after { content: ""; display: table; clear: both; }

.osj-pdp__buybox .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  overflow: hidden;
}
.osj-pdp__buybox .quantity input[type="number"] {
  width: 58px;
  height: 52px;
  padding: 0;
  border: none;
  background: none;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: var(--weight-semibold);
}

.osj-pdp__buybox .single_add_to_cart_button {
  flex: 1;
  min-height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--brand);
  color: var(--text-on-brand);
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background var(--dur-base) var(--ease-out);
}
.osj-pdp__buybox .single_add_to_cart_button:hover { background: var(--brand-hover); }
.osj-pdp__buybox .single_add_to_cart_button.disabled { opacity: 0.45; cursor: not-allowed; }

/* Quantity and Add to cart share one row. */
.osj-pdp__buybox form.cart:not(.variations_form),
.osj-pdp__buybox .woocommerce-variation-add-to-cart {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}

/* Variation selectors as chips-in-a-row rather than Woo's table. */
.osj-pdp__buybox .variations {
  width: 100%;
  margin-bottom: 22px;
  border: none;
}
.osj-pdp__buybox .variations tr { display: block; }
.osj-pdp__buybox .variations th,
.osj-pdp__buybox .variations td { display: block; padding: 0; text-align: left; }
.osj-pdp__buybox .variations th label {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.osj-pdp__buybox .variations select {
  width: 100%;
  padding: 12px 34px 12px 14px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A7C63' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
  font-size: 14px;
}
.osj-pdp__buybox .reset_variations {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
}
.osj-pdp__buybox .woocommerce-variation-price {
  margin-bottom: var(--space-4);
  font-family: var(--font-mono);
  font-weight: var(--weight-semibold);
  font-size: 1.35rem;
  color: var(--price);
}
.osj-pdp__buybox .woocommerce-variation-availability { margin-bottom: var(--space-3); font-size: 14px; }
.osj-pdp__buybox .stock.out-of-stock { color: var(--danger); }

/* ============================================================
   Details + specification
   ============================================================ */
.osj-pdp__details {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-7);
  margin-top: var(--space-9);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
}
.osj-pdp__section-title {
  margin-bottom: 18px;
  font-size: 1.5rem;
  font-weight: var(--weight-ultra);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.osj-pdp__cross { margin-top: var(--space-9); }
.osj-pdp__cross-title {
  margin-bottom: 28px;
  font-size: 1.9rem;
  font-weight: var(--weight-ultra);
  letter-spacing: -0.024em;
  text-transform: uppercase;
}

/* ============================================================
   Variant picker gallery — MOBILE-VARIANT-HANDOFF Part 2
   ============================================================ */
.osj-vpicker { gap: 16px; }
.osj-vpicker__stage { position: relative; }

/* Caption chip: with near-identical photos the name is what identifies the
   variant, so it sits on the image rather than beneath it. */
.osj-vpicker__caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  background: rgba(20, 17, 11, 0.9);
  color: var(--sand-50);
}
.osj-vpicker__caption-name { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 15px; }
.osj-vpicker__caption-set { font-family: var(--font-mono); font-size: 11.5px; color: var(--sand-400); }

.osj-vpicker__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.osj-vpicker__hint {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.osj-vpicker__browse {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-strong);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.osj-vpicker__browse:hover { background: var(--surface-sunken); }

/* Rail: one tile per set, not one per variant. */
.osj-vpicker__rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--border-field) transparent;
}
.osj-vpicker__rail::-webkit-scrollbar { height: 6px; }
.osj-vpicker__rail::-webkit-scrollbar-thumb { background: var(--border-field); border-radius: var(--radius-pill); }

.osj-vpicker__tile,
.osj-vpicker__more {
  flex: 0 0 108px;
  scroll-snap-align: start;
  padding: 0;
  border-radius: 7px;
  overflow: hidden;
  text-align: left;
  transition: border-color 150ms ease, transform 150ms var(--ease-out);
}
.osj-vpicker__tile {
  background: var(--surface-card);
  border: 2px solid var(--border-subtle);
}
.osj-vpicker__tile:hover { border-color: var(--text-link); transform: translateY(-2px); }
.osj-vpicker__tile.is-active { border-color: var(--ink-900); }
.osj-vpicker__tile-media { display: block; aspect-ratio: 1 / 1; background: var(--surface-sunken); overflow: hidden; }
.osj-vpicker__tile-media img { width: 100%; height: 100%; object-fit: cover; }
.osj-vpicker__tile-name {
  display: block;
  padding: 8px 9px 10px;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 11.5px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-strong);
}
.osj-vpicker__more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  background: var(--surface-sunken);
  border: 1px dashed var(--border-strong);
  color: var(--text-body);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1.3;
}
.osj-vpicker__more:hover { border-color: var(--text-link); color: var(--text-link); }

/* ============================================================
   Selected strip + bundle tiers
   ============================================================ */
.osj-selected {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-card);
}
.osj-selected__thumb {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface-sunken);
}
.osj-selected__thumb img { width: 100%; height: 100%; object-fit: cover; }
.osj-selected__body { flex: 1; min-width: 0; }
.osj-selected__label {
  margin-bottom: 3px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.osj-selected__name { font-family: var(--font-display); font-weight: var(--weight-bold); font-size: 16px; line-height: 1.25; color: var(--text-strong); }
.osj-selected__sku { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-muted); }
.osj-selected__change {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0 15px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-strong);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.osj-selected__change:hover { background: var(--surface-sunken); }

.osj-bundles { margin-bottom: 22px; }
.osj-bundles__label {
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: var(--weight-medium);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.osj-bundles__list { display: flex; flex-direction: column; gap: 9px; }
.osj-bundle {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  background: var(--surface-card);
  color: var(--text-strong);
}
.osj-bundle:hover { border-color: var(--border-strong); text-decoration: none; }
.osj-bundle.is-active { border-color: var(--ink-900); }
.osj-bundle__body { flex: 1; }
.osj-bundle__title { display: block; font-weight: var(--weight-semibold); font-size: 15px; color: var(--text-strong); }
.osj-bundle__note { display: block; font-size: 13px; color: var(--text-body); }
.osj-bundle__price { font-family: var(--font-mono); font-weight: var(--weight-semibold); font-size: 15px; color: var(--text-strong); }

/* Rule-driven bundle contents, on the bundle's own product page. */
.osj-bundle-contents {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--surface-card);
}
.osj-bundle-contents__title {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: var(--weight-black);
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-strong);
}
.osj-bundle-contents__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 16px;
  /* Long rosters scroll inside the card rather than pushing add-to-cart
     off the screen. */
  max-height: 220px;
  overflow-y: auto;
  list-style: none;
  font-size: 13.5px;
  color: var(--text-body);
}
.osj-bundle-contents__note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
@media (max-width: 480px) {
  .osj-bundle-contents__list { grid-template-columns: minmax(0, 1fr); }
}

/* ============================================================
   Picker overlay
   ============================================================ */
.osj-picker {
  position: fixed;
  inset: 0;
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  visibility: hidden;
}
.osj-picker[data-open="true"] { visibility: visible; }
.osj-picker__scrim {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(14, 11, 7, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.osj-picker[data-open="true"] .osj-picker__scrim { opacity: 1; }

.osj-picker__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1040px;
  max-height: 100%;
  overflow: hidden;
  background: var(--surface-page);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 90px -30px rgba(20, 17, 11, 0.6);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.osj-picker[data-open="true"] .osj-picker__panel { opacity: 1; transform: translateY(0); }

/* Head and search stay pinned; only the grid scrolls. */
.osj-picker__head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border-subtle);
}
.osj-picker__head-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); }
.osj-picker__title {
  font-family: var(--font-display);
  font-weight: var(--weight-ultra);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-strong);
}
.osj-picker__count {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.osj-picker__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: none;
  background: none;
  color: var(--text-body);
}
.osj-picker__close:hover { color: var(--text-strong); }

.osj-picker__search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border-field);
  border-radius: var(--radius-sm);
  background: var(--surface-card);
}
.osj-picker__search svg { color: var(--text-muted); flex-shrink: 0; }
.osj-picker__search input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-strong);
}
.osj-picker__search input:focus { outline: none; }
.osj-picker__search:focus-within { box-shadow: var(--focus-glow); }

.osj-picker__chips {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: thin;
}
.osj-picker__chip { flex-shrink: 0; min-height: 40px; display: inline-flex; align-items: center; white-space: nowrap; }

.osj-picker__body { flex: 1; overflow-y: auto; padding: 22px 24px 26px; }
.osj-picker__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }

.osj-picker__tile {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  text-align: left;
  background: var(--surface-card);
  border: 2px solid var(--border-subtle);
  border-radius: 7px;
  transition: border-color 150ms ease, transform 150ms var(--ease-out);
}
.osj-picker__tile:hover { border-color: var(--text-link); transform: translateY(-2px); }
.osj-picker__tile.is-out { opacity: 0.5; }
.osj-picker__tile-media { display: block; aspect-ratio: 1 / 1; background: var(--surface-sunken); overflow: hidden; }
.osj-picker__tile-media img { width: 100%; height: 100%; object-fit: cover; }
.osj-picker__tile-body { display: block; padding: 9px 10px 11px; }
.osj-picker__tile-name {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 12.5px;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-strong);
}
.osj-picker__tile-set { display: block; margin-top: 3px; font-family: var(--font-mono); font-size: 10.5px; color: var(--text-muted); }

.osj-picker__empty,
.osj-picker__loading { padding: var(--space-9) 0; text-align: center; color: var(--text-body); }
.osj-picker__empty-title {
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: 17px;
  text-transform: uppercase;
  color: var(--text-strong);
}

@media (max-width: 1000px) {
  .osj-picker__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Full-screen sheet on a phone: 32px of margin costs a whole grid column. */
@media (max-width: 760px) {
  .osj-picker { padding: 0; }
  .osj-picker__panel { max-width: none; height: 100%; max-height: none; border: none; border-radius: 0; }
  .osj-picker__head { padding: 14px 16px 12px; }
  .osj-picker__body { padding: 16px; padding-bottom: calc(16px + env(safe-area-inset-bottom)); }
  .osj-picker__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
  /* Edge-bleeding rails, per the comp. */
  .osj-vpicker__rail { margin-inline: calc(var(--gutter-mobile) * -1); padding-inline: var(--gutter-mobile); }
  .osj-picker__chips { margin-inline: -16px; padding-inline: 16px; }
}

@media (max-width: 400px) {
  .osj-picker__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ============================================================
   Sticky mobile buy bar — §1.4
   ============================================================ */
.osj-buybar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  align-items: center;
  gap: 14px;
  padding: 12px var(--gutter-mobile);
  /* env() clears the iPhone home indicator; it resolves to 0 elsewhere. */
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(251, 247, 240, 0.95);
  backdrop-filter: var(--blur-panel);
  -webkit-backdrop-filter: var(--blur-panel);
  border-top: 1px solid var(--border-subtle);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .osj-buybar { background: var(--surface-page); }
}

/* The meta column yields; the button keeps its width and never wraps. */
.osj-buybar__meta { flex: 0 1 auto; min-width: 0; }
.osj-buybar__cta { white-space: nowrap; }

/* Variant-picker bar: 50px thumbnail doubling as the picker trigger (§1.4). */
.osj-buybar__thumb {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-sunken);
}
.osj-buybar__thumb img { width: 100%; height: 100%; object-fit: cover; }
.osj-buybar__name {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  line-height: 1.2;
  color: var(--text-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* With a name above it the price steps down and the column can flex. */
.osj-buybar__thumb ~ .osj-buybar__meta { flex: 1 1 auto; }
.osj-buybar__thumb ~ .osj-buybar__meta .osj-buybar__price { font-size: 15px; }
.osj-buybar__price {
  font-family: var(--font-mono);
  font-weight: var(--weight-semibold);
  font-size: 19px;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  color: var(--text-strong);
  white-space: nowrap;
}
.osj-buybar__price del { display: none; }
.osj-buybar__price ins { text-decoration: none; }
.osj-buybar__lead {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-link);
  white-space: nowrap;
}
.osj-buybar__cta { flex: 1; min-height: 50px; }
.osj-btn--disabled { opacity: 0.45; pointer-events: none; }

@media (max-width: 760px) {
  .osj-buybar { display: flex; }
  /* So the bar never covers the last section of the page. */
  body.single-product #osj-main { padding-bottom: 120px; }

  .osj-pdp__details { gap: 36px; }
  .osj-pdp__thumbs { gap: 8px; }
}

@media (min-width: 1001px) {
  .osj-pdp { padding-block: 28px 88px; }
  .osj-pdp__layout { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 56px; }
  .osj-pdp__buybox { position: sticky; top: var(--sticky-offset); }
  .osj-pdp__details { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; margin-top: 80px; padding-top: 48px; }
}
