/** Shopify CDN: Minification failed

Line 212:0 Unexpected "<"
Line 215:0 Unexpected "="
Line 218:1 Unexpected ">"

**/
/* =============================================================
   Delta Diesel Parts — Main Product Reference Design
   Every selector scoped under `.ddp-main-product` (the section
   wrapper) or `.ddp-mp__*` (the direct-render markup namespace).
   Values are read directly from _reference/product-reference.html.
   ============================================================= */

.ddp-main-product,
.ddp-main-product *,
.ddp-main-product *::before,
.ddp-main-product *::after { box-sizing: border-box; }

/* ── Two-column layout ────────────────────────────────────────── */
/* Override theme variable so its grid-template-columns produces 50/50.
   The theme uses `--product-info-width` (often 360px or 400px) for the right
   column width, which leaves the left media column much wider than reference.
   Reset it on this section so columns are balanced. */
.ddp-main-product { --product-info-width: minmax(0, 1fr); }

.ddp-main-product.product { display: block; }

@media (min-width: 1024px) {
  .ddp-main-product.product {
    display: grid !important;                         /* overrides theme's display rule when present */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important; /* overrides theme's fixed info-column width */
    column-gap: 56px !important;
    align-items: start;
    padding: 40px 0;
  }
}

/* ── LEFT — media card ────────────────────────────────────────── */
.ddp-main-product #product-media.product-media {
  position: sticky;
  top: 90px;
  background: #fafafa;
  border: 1.5px solid #e4e4e4;
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
}

@media (max-width: 1023.98px) {
  .ddp-main-product #product-media.product-media { position: static; margin-bottom: 24px; }
}

.ddp-main-product #product-media .media-gallery__main,
.ddp-main-product #product-media .media {
  background: #fafafa;
  aspect-ratio: 1; /* matches reference .main-img-box aspect-ratio:1 */
}

.ddp-main-product #product-media .media img,
.ddp-main-product #product-media .media-gallery__main img { object-fit: contain; }

/* Hover-zoom on main product image only (excludes thumbnails). Scoped to the
   main-image container — thumbnails use .media-gallery__thumb, unaffected.
   Cursor + transition only on hover-capable devices to avoid touch artifacts. */
.ddp-main-product #product-media .media-gallery__main img,
.ddp-main-product #product-media > .media img { transition: transform 0.4s ease; display: block; }
@media (hover: hover) {
  .ddp-main-product #product-media .media-gallery__main,
  .ddp-main-product #product-media > .media { cursor: zoom-in; }
  .ddp-main-product #product-media .media-gallery__main:hover img,
  .ddp-main-product #product-media > .media:hover img { transform: scale(1.08); }
}

/* L2 — "Aftermarket" badge over main image */
.ddp-main-product .ddp-mp-media-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: #b71514;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  line-height: 1.4;
}

/* L3 — "Hover to zoom" hint (desktop/hover-capable devices only) */
.ddp-main-product .ddp-mp-zoom-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(0, 0, 0, .45);
  color: #ffffff;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  line-height: 1.4;
  pointer-events: none;
}

/* Hide hover hint on touch devices — they have no real hover state */
@media (hover: none) {
  .ddp-main-product .ddp-mp-zoom-hint { display: none; }
}

/* Thumbnail strip */
.ddp-main-product .media-gallery__thumbs,
.ddp-main-product .product-media__thumbs { gap: 8px; margin-top: 12px; }

.ddp-main-product .media-gallery__thumb,
.ddp-main-product .product-media__thumb {
  width: 72px;
  height: 72px;
  border: 1.5px solid #e4e4e4;
  border-radius: 8px;
  background: #fafafa;
  overflow: hidden;
  transition: border-color .2s ease;
}

.ddp-main-product .media-gallery__thumb:hover,
.ddp-main-product .media-gallery__thumb.is-active,
.ddp-main-product .media-gallery__thumb[aria-current="true"],
.ddp-main-product .product-media__thumb:hover,
.ddp-main-product .product-media__thumb.is-active,
.ddp-main-product .product-media__thumb[aria-current="true"] { border-color: #b71514; }

/* ──────────────────────────────────────────────────────────────
   RIGHT COLUMN — Direct-render markup (use_ddp_reference_design)
   ────────────────────────────────────────────────────────────── */
.ddp-main-product .product-info { padding-top: 4px; }

/* ── 1. Pills row ─────────────────────────────────────────────── */
.ddp-main-product .ddp-mp__pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0 0 14px;
}

.ddp-main-product .ddp-mp__pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
}

.ddp-main-product .ddp-mp__pill--solid {
  background: rgba(183, 21, 20, .09);
  border: 1px solid rgba(183, 21, 20, .2);
  color: #b71514;
}

.ddp-main-product .ddp-mp__pill--outline {
  background: #f2f2f2;
  border: 1px solid #e4e4e4;
  color: #666666;
}

.ddp-main-product .ddp-mp__pill--amber {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.ddp-main-product .ddp-mp__pill--amber svg { width: 12px; height: 12px; fill: currentColor; flex-shrink: 0; }

/* ── 2. Title ─────────────────────────────────────────────────── */
.ddp-main-product .ddp-mp__title {
  font-family: var(--font-head);
  font-size: clamp(22px, 2.6vw, 33px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.2px;
  color: #1c1c1c;
  margin: 0 0 12px;
}

/* ── 3. Meta row (SKU / OEM / Rating) ─────────────────────────── */
.ddp-main-product .ddp-mp__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #888888;
  margin: 0 0 20px;
}

.ddp-main-product .ddp-mp__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

<<<<<<< HEAD
.ddp-main-product .ddp-mp__meta-label { color: #000; font-weight: 500; }
.ddp-main-product .ddp-mp__meta-value { color: #000; font-weight: 600; }
=======
.ddp-main-product .ddp-mp__meta-label { color: var(--ddp-mp-text, #1c1c1c); font-weight: 500; }
.ddp-main-product .ddp-mp__meta-value { color: var(--ddp-mp-text, #1c1c1c); font-weight: 600; }
>>>>>>> 8820dee4e20d273e1ae41ef8675ee42c364cfea1

.ddp-main-product .ddp-mp__rating .rating { display: inline-block; vertical-align: middle; }
.ddp-main-product .ddp-mp__rating .rating__stars {
  color: #f59e0b;
  letter-spacing: 1px;
  font-size: 13px;
  background:
    linear-gradient(90deg, #f59e0b var(--rating-percent, 0%), #e4e4e4 0) text;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.ddp-main-product .ddp-mp__rating .rating__count {
  font-size: 12px;
  color: #888888;
  margin-left: 4px;
  display: inline-block;
}

/* ── 4. Price card ────────────────────────────────────────────── */
.ddp-main-product .ddp-mp__price-card {
  background: #fafafa;
  border: 1.5px solid #e4e4e4;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 0 0 20px;
}

.ddp-main-product .ddp-mp__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ddp-main-product .ddp-mp__price-current {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: #1c1c1c;
}

.ddp-main-product .ddp-mp__price-compare {
  font-size: 18px;
  color: #aaaaaa;
  text-decoration: line-through;
  font-weight: 500;
}

.ddp-main-product .ddp-mp__save-badge {
  background: #b71514;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-left: auto;
  flex-shrink: 0;
  line-height: 1.4;
}

.ddp-main-product .ddp-mp__price-caption {
  font-size: 12px;
  color: #aaaaaa;
  margin: 4px 0 0;
  line-height: 1.5;
}

.ddp-main-product .ddp-mp__price-sep { color: #cccccc; }

/* ── 5. Stock pill row ────────────────────────────────────────── */
.ddp-main-product .ddp-mp__stock-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 4px;
  column-gap: 8px;
  margin: 0 0 20px;
}

@media (min-width: 1024px) {
  .ddp-main-product .ddp-mp__stock-row { flex-wrap: nowrap; white-space: nowrap; }
  .ddp-main-product .ddp-mp__stock-sub { min-width: 0; overflow: hidden; text-overflow: ellipsis; }
}

.ddp-main-product .ddp-mp__stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ddp-main-product .ddp-mp__stock-dot--in { background: #22c55e; }
.ddp-main-product .ddp-mp__stock-dot--out { background: #b71514; }

.ddp-main-product .ddp-mp__stock-text { font-size: 13px; font-weight: 600; }
.ddp-main-product .ddp-mp__stock-text--in { color: #16a34a; }
.ddp-main-product .ddp-mp__stock-text--out { color: #b71514; }

.ddp-main-product .ddp-mp__stock-sep { color: #cccccc; }
.ddp-main-product .ddp-mp__stock-sub { font-size: 13px; color: #888888; font-weight: 500; }

/* ── 6. Variant picker wrapper ────────────────────────────────── */
.ddp-main-product .ddp-mp__variants {
  margin: 0 0 16px;
}

.ddp-main-product .ddp-mp__variants .opt-label__title {
  font-size: 12px;
  font-weight: 700;
  color: #888888;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ddp-main-product .ddp-mp__variants .opt-btn {
  border-radius: 8px;
  border: 1.5px solid #e4e4e4;
  font-weight: 600;
  transition: border-color .15s ease, color .15s ease;
}

.ddp-main-product .ddp-mp__variants .opt-btn[aria-checked="true"],
.ddp-main-product .ddp-mp__variants input:checked + .opt-btn { border-color: #b71514; color: #b71514; }

/* ── 7. Quantity + Add-to-Cart ────────────────────────────────── */
.ddp-main-product .ddp-mp__form { display: block; margin: 0 0 10px; }

.ddp-main-product .ddp-mp__qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
}

.ddp-main-product .ddp-mp__qty-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ddp-main-product .ddp-mp__qty-control quantity-input { display: inline-block; }
.ddp-main-product .ddp-mp__qty-control .label.visually-hidden { display: none; }

.ddp-main-product .ddp-mp__qty-control .qty-input {
  display: inline-flex;
  align-items: stretch;
  border: 1.5px solid #e4e4e4;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  height: 44px;
}

.ddp-main-product .ddp-mp__qty-control .qty-input__btn {
  width: 40px;
  height: 44px;
  background: #f2f2f2;
  border: none;
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 0;
}

.ddp-main-product .ddp-mp__qty-control .qty-input__btn:hover:not(:disabled) { background: #e4e4e4; }

.ddp-main-product .ddp-mp__qty-control .qty-input__input {
  width: 52px;
  height: 44px;
  border: none;
  border-left: 1.5px solid #e4e4e4;
  border-right: 1.5px solid #e4e4e4;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  background: #ffffff;
  color: #1c1c1c;
  font-family: var(--font-body);
  outline: none;
  padding: 0;
}

.ddp-main-product .ddp-mp__cta-wrap { display: block; }

.ddp-main-product .ddp-mp__add-to-cart {
  width: 100%;
  background: #b71514;
  color: #ffffff;
  border: 1px solid #b71514;
  border-radius: 10px;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.2;
  margin: 0;
  transition: background .2s ease, border-color .2s ease, transform .15s ease, box-shadow .15s ease, opacity .2s ease;
}

.ddp-main-product .ddp-mp__add-to-cart:hover:not(:disabled),
.ddp-main-product .ddp-mp__add-to-cart.btn--primary:hover:not(:disabled) {
  background: #7f0d08;
  border-color: #7f0d08;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 21, 20, .3);
}

.ddp-main-product .ddp-mp__add-to-cart:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ddp-main-product .ddp-mp__add-to-cart svg { flex-shrink: 0; }

/* ── 8. Wishlist button ───────────────────────────────────────── */
.ddp-main-product .ddp-mp__wishlist {
  width: 100%;
  background: #ffffff;
  color: #1c1c1c;
  border: 1.5px solid #e4e4e4;
  border-radius: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
  margin: 0 0 26px;
  transition: border-color .2s ease, background .2s ease;
}

.ddp-main-product .ddp-mp__wishlist:hover { border-color: #aaaaaa; background: #fafafa; }

.ddp-main-product .ddp-mp__wishlist svg { flex-shrink: 0; }

/* ── 9. Trust badges row ──────────────────────────────────────── */
.ddp-main-product .ddp-mp__trust-grid {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 0 0 26px;
}

.ddp-main-product .ddp-mp__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fafafa;
  border: 1px solid #e4e4e4;
  border-radius: 100px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  line-height: 1.25;
}

.ddp-main-product .ddp-mp__trust-item svg {
  width: 14px;
  height: 14px;
  stroke: #b71514;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── 10. Description ──────────────────────────────────────────── */
.ddp-main-product .ddp-mp__description {
  font-size: 14px;
  line-height: 1.7;
  color: #444444;
}

.ddp-main-product .ddp-mp__description p { margin: 0 0 12px; }
.ddp-main-product .ddp-mp__description p:last-child { margin: 0; }
.ddp-main-product .ddp-mp__description strong { color: #1c1c1c; font-weight: 700; }
.ddp-main-product .ddp-mp__description a { color: #b71514; font-weight: 600; text-decoration: none; border-bottom: 1px solid #b71514; }
.ddp-main-product .ddp-mp__description a:hover { color: #7f0d08; border-bottom-color: #7f0d08; }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768.98px) {
  .ddp-main-product .ddp-mp__title { font-size: 22px; }
  .ddp-main-product .ddp-mp__price-current { font-size: 32px; }
  .ddp-main-product .ddp-mp__price-card { padding: 14px 16px; }
  .ddp-main-product .ddp-mp__add-to-cart { padding: 14px 20px; font-size: 14px; }
  .ddp-main-product .ddp-mp__trust-item { font-size: 11px; padding: 5px 10px; }
}

/* ── Sub-480px hardening — small phones (320px–479px range) ───── */
@media (max-width: 480px) {
  /* Image safety net — any img inside the section never overflows */
  .ddp-main-product img { max-width: 100%; height: auto; }

  /* iOS auto-zoom prevention: input must be ≥16px on focus */
  .ddp-main-product .ddp-mp__qty-control .qty-input__input { font-size: 16px; }

  /* Title scales for smallest phones */
  .ddp-main-product .ddp-mp__title { font-size: 20px; line-height: 1.15; }

  /* Pills keep desktop visual style at every breakpoint — only safety
     overrides allowed below: container width hint + long-word break. */

  /* Trust badges row keeps wrapping nicely */
  .ddp-main-product .ddp-mp__trust-grid { gap: 6px; margin-bottom: 18px; }

  /* Meta row (SKU / OEM / rating) wraps without overflow */
  .ddp-main-product .ddp-mp__meta-row { gap: 12px; font-size: 12px; }

  /* Long titles / SKUs / OEM strings break instead of overflowing.
     .ddp-mp__pills also gets overflow-wrap so absurdly long pill text
     (e.g., a long brand vendor name) breaks rather than causing
     horizontal scroll, but pill SIZE / PADDING / FONT remain desktop. */
  .ddp-main-product .ddp-mp__title,
  .ddp-main-product .ddp-mp__meta-row,
  .ddp-main-product .ddp-mp__pills { overflow-wrap: anywhere; }

  /* Price card uses tighter horizontal padding */
  .ddp-main-product .ddp-mp__price-card { padding: 14px; }
  .ddp-main-product .ddp-mp__price-current { font-size: 28px; }
}

/* ── Sub-380px — smallest phones (iPhone SE 1st gen, etc.) ─────── */
@media (max-width: 380px) {
  .ddp-main-product .ddp-mp__title { font-size: 19px; }
  .ddp-main-product .ddp-mp__price-current { font-size: 26px; }
  .ddp-main-product .ddp-mp__add-to-cart { padding: 13px 16px; font-size: 13px; letter-spacing: .04em; }
}

/* ── Product tabs (merged from former ddp-product-tabs) ───────── */
.ddp-main-product .ddp-mp__tabs-wrap {
  max-width: 100%;
  margin: 32px 0 0;
  padding: 26px 0 0;
  border-top: 1.5px solid var(--ddp-mp-line, #e4e4e4);
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .ddp-main-product .ddp-mp__tabs-wrap { margin-top: 0; }
}

.ddp-main-product .ddp-mp__tabs-nav {
  display: flex;
  border-bottom: 1.5px solid var(--ddp-mp-line, #e4e4e4);
  margin-bottom: 22px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ddp-main-product .ddp-mp__tabs-nav::-webkit-scrollbar { display: none; }

.ddp-main-product .ddp-mp__tab-trigger {
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ddp-mp-muted, #888888);
  border-bottom: 2.5px solid transparent;
  margin-bottom: -1.5px;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  transition: color .2s ease, border-color .2s ease;
}

.ddp-main-product .ddp-mp__tab-trigger:hover { color: #1c1c1c; }

.ddp-main-product .ddp-mp__tab-trigger.is-active {
  color: var(--ddp-mp-accent, #b71514);
  border-bottom-color: var(--ddp-mp-accent, #b71514);
}

.ddp-main-product .ddp-mp__tab-panel { display: none; }

.ddp-main-product .ddp-mp__tab-panel.is-active {
  display: block;
  animation: ddpMpTabFade .2s ease;
}

@keyframes ddpMpTabFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.ddp-main-product .ddp-mp__tab-content {
  font-size: 13px;
  line-height: 1.7;
  color: var(--ddp-mp-soft-text, #444444);
}

.ddp-main-product .ddp-mp__tab-content p { margin: 0 0 12px; }
.ddp-main-product .ddp-mp__tab-content p:last-child { margin: 0; }
.ddp-main-product .ddp-mp__tab-content strong { color: #1c1c1c; font-weight: 700; }
.ddp-main-product .ddp-mp__tab-content a { color: var(--ddp-mp-accent, #b71514); font-weight: 600; text-decoration: none; }
.ddp-main-product .ddp-mp__tab-content a:hover { text-decoration: underline; }

@media (max-width: 768.98px) {
  .ddp-main-product .ddp-mp__tab-trigger { padding: 11px 12px; font-size: 11px; }
}

/* ──────────────────────────────────────────────────────────────
   Right-side info panel — scrollable on desktop so the tabs
   (now rendered inside) don't push the page tall. Lets the
   left-side media stay stable while the right side scrolls
   independently for long content.
   ────────────────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  /* .ddp-main-product .ddp-mp__info-panel {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: visible;
    padding-right: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .25) transparent;
  } */
  .ddp-main-product .ddp-mp__info-panel::-webkit-scrollbar { width: 8px; }
  .ddp-main-product .ddp-mp__info-panel::-webkit-scrollbar-track { background: transparent; }
  .ddp-main-product .ddp-mp__info-panel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, .2);
    border-radius: 100px;
  }
  .ddp-main-product .ddp-mp__info-panel::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, .35); }
}

@media (max-width: 1023.98px) {
  .ddp-main-product .ddp-mp__info-panel {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* Tabs spacing tweak — sit cleanly under the description inside the info panel.
   Tabs already use .ddp-mp__tabs-wrap defined further up; this is a placement
   adjustment for the in-panel location only. */
.ddp-main-product .ddp-mp__info-panel .ddp-mp__tabs-wrap {
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1.5px solid #e4e4e4;
}

/* ──────────────────────────────────────────────────────────────
   FALLBACK PATH — block-loop styling (keeps original behavior
   for sections where use_ddp_reference_design is turned off)
   ────────────────────────────────────────────────────────────── */

/* These selectors only fire when the merchant disables the DDP
   reference design and reverts to the block-loop render. They
   were authored in earlier passes; kept intact for compatibility. */

.ddp-main-product .product-info > .product-info__block { margin-bottom: 14px; }
.ddp-main-product .product-info > .product-info__block:last-child { margin-bottom: 0; }

/* ── Hide money currency suffix the theme's price snippet may emit
   (e.g. "USD" subscript). Reference shows prices without suffix. ── */
.ddp-main-product .ddp-mp__price-current .money__currency,
.ddp-main-product .ddp-mp__price-current sup,
.ddp-main-product .ddp-mp__price-current .currency-code,
.ddp-main-product .ddp-mp__price-compare .money__currency,
.ddp-main-product .ddp-mp__price-compare sup,
.ddp-main-product .ddp-mp__price-compare .currency-code { display: none !important; /* overrides theme price snippet */ }

/* ── Sticky right-column scroll behaviour on .product-info__sticky
   (theme already applies position:sticky via the web component;
   we only add max-height + overflow-y so long tab content scrolls
   inside the panel instead of pushing the page tall) ── */
@media (min-width: 1024px) {
  /* .ddp-main-product .product-info__sticky {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, .2) transparent;
  } */
  .ddp-main-product .product-info__sticky::-webkit-scrollbar { width: 6px; }
  .ddp-main-product .product-info__sticky::-webkit-scrollbar-track { background: transparent; }
  .ddp-main-product .product-info__sticky::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .15); border-radius: 3px; }
  .ddp-main-product .product-info__sticky::-webkit-scrollbar-thumb:hover { background: rgba(0, 0, 0, .3); }
}

@media (max-width: 1023.98px) {
  .ddp-main-product .product-info__sticky {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
}

/* ── Tabs inside .product-info__sticky — final spacing override ── */
.ddp-main-product .product-info__sticky .ddp-mp__tabs-wrap {
  margin-top: 8px;
  padding-top: 26px;
  border-top: 1.5px solid #e4e4e4;
}

/* ── Tab content typography — tables, lists, links — match reference ── */
.ddp-main-product .product-info__sticky .ddp-mp__tab-content { padding-top: 4px; }

.ddp-main-product .product-info__sticky .ddp-mp__tab-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 14px;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content table tr {
  border-bottom: 1px solid #f2f2f2;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content table tr:last-child {
  border-bottom: none;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content table td {
  padding: 11px 0;
  font-size: 13px;
  vertical-align: top;
  color: #1c1c1c;
  border: none;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content table tbody {
  border: hidden;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content table td:first-child {
  width: 44%;
  font-weight: 700;
  color: #888888;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-right: 14px;
}

.ddp-main-product .product-info__sticky .ddp-mp__tab-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content ul li {
  background: #ffffff;
  border: 1.5px solid #e4e4e4;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #444444;
}

.ddp-main-product .product-info__sticky .ddp-mp__tab-content p {
  margin: 0 0 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content p:last-child { margin-bottom: 0; }
.ddp-main-product .product-info__sticky .ddp-mp__tab-content strong { color: #1c1c1c; font-weight: 700; }
.ddp-main-product .product-info__sticky .ddp-mp__tab-content a, .ddp-main-product .product-info__sticky .ddp-mp__tab-content a strong {
  color: #b71514;
  font-weight: 600;
  text-decoration: none;
}
.ddp-main-product .product-info__sticky .ddp-mp__tab-content a:hover {
    text-decoration: underline;
    opacity: 1;
}

/* ── Description block typography — reference values ── */
.ddp-main-product .ddp-mp__description {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #444444;
}
.ddp-main-product .ddp-mp__description p {
  margin: 0 0 12px;
}
.ddp-main-product .ddp-mp__description p:last-child { margin-bottom: 0; }
.ddp-main-product .ddp-mp__description strong { color: #1c1c1c; font-weight: 700; }
.ddp-main-product .ddp-mp__description a {
  color: #b71514;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #b71514;
}
.ddp-main-product .ddp-mp__description a:hover { color: #7f0d08; border-bottom-color: #7f0d08; }

/* ============================================================
   DDP Structured Tab Content
   Companion styles for snippets/product-tab-content.liquid
   ============================================================ */

.ddp-tab-content__desc {
  color: var(--ddp-mp-soft-text, #666);
  line-height: 1.7;
  font-size: 13px;
  margin-bottom: 16px;
}
.ddp-tab-content__desc p { margin: 0 0 12px; }
.ddp-tab-content__desc p:last-child { margin-bottom: 0; }
.ddp-tab-content__desc strong { color: var(--ddp-mp-text, #1c1c1c); font-weight: 700; }
.ddp-tab-content__desc a { color: var(--ddp-mp-accent, #b71514); font-weight: 600; }
.ddp-tab-content__desc .metafield-rich_text_field { display: contents; }

.ddp-tab-content__table {
  width: 100%;
  border-collapse: collapse;
  margin: 8px 0 16px;
}
.ddp-tab-content__table tr { border-bottom: 1px solid #f2f2f2; }
.ddp-tab-content__table tr:last-child { border-bottom: none; }
.ddp-tab-content__table td {
  padding: 11px 0;
  font-size: 13px;
  vertical-align: top;
}
.ddp-tab-content__table td:first-child {
  color: var(--ddp-mp-muted, #888);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  width: 44%;
  padding-right: 14px;
}
.ddp-tab-content__table td:last-child {
  color: var(--ddp-mp-text, #1c1c1c);
  font-weight: 500;
}

.ddp-tab-content__subhead {
  margin: 0 0 14px;
  color: var(--ddp-mp-soft-text, #666);
  font-size: 13px;
}
.ddp-tab-content__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.ddp-tab-content__pill {
  display: inline-block;
  padding: 3px 10px;
  border: 1.5px solid var(--ddp-mp-line, #e4e4e4);
  border-radius: 5px;
  font-size: 11px;
  color: #444;
  background: #fff;
  font-weight: 600;
}
.ddp-tab-content__cta {
  color: #aaa;
  font-size: 12px;
  margin-top: 8px;
}
.ddp-tab-content__cta a {
  color: var(--ddp-mp-accent, #b71514);
  text-decoration: underline;
  font-weight: 600;
}

.ddp-tab-content__card {
  background: #fafafa;
  border: 1.5px solid var(--ddp-mp-line, #e4e4e4);
  border-radius: 9px;
  padding: 18px;
  margin-bottom: 10px;
}
.ddp-tab-content__card h4 {
  margin: 0 0 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--ddp-mp-text, #1c1c1c);
  font-family: unset;
}
.ddp-tab-content__card-body {
  color: var(--ddp-mp-soft-text, #666);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 8px;
}
.ddp-tab-content__card-body p { margin: 0; }
.ddp-tab-content__card-body .metafield-rich_text_field { display: contents; }
.ddp-tab-content__card-body a {
  color: var(--ddp-mp-accent, #b71514);
  font-weight: 600;
  text-decoration: none;
}
.ddp-tab-content__card-body a:hover { text-decoration: underline; }

.ddp-tab-content__link {
  color: var(--ddp-mp-accent, #b71514);
  font-weight: 600;
  text-decoration: none;
  font-size: 12px;
}
.ddp-tab-content__link:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .ddp-tab-content__table td:first-child { width: 48%; font-size: 11px; }
  .ddp-tab-content__table td { padding: 12px 0; font-size: 13px; }
}
