
  /* ============ BREADCRUMB ============ */
  .pdp-breadcrumb {
    background: var(--white);
    border-bottom: 1px solid rgba(26,23,20,0.06);
    padding: 18px 0;
  }
  .pdp-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
  }
  .pdp-breadcrumb a {
    color: rgba(26,23,20,0.7);
    text-decoration: none;
    transition: color .2s;
  }
  .pdp-breadcrumb a:hover { color: var(--gold); }
  .pdp-breadcrumb .sep { color: rgba(26,23,20,0.3); }
  .pdp-breadcrumb [aria-current="page"] { color: var(--ink); }

  /* ============ PDP HERO ============ */
  .pdp-hero { padding: 56px 0 80px; background: var(--white); }
  @media (max-width: 900px) {
    .pdp-hero { padding-top: 20px; padding-bottom: 48px; }
  }
  .pdp-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 72px;
    align-items: start;
  }
  /* let columns shrink below the thumbnail strip's intrinsic width
     (otherwise >4 thumbs widen the gallery past the viewport) */
  .pdp-hero-grid > * { min-width: 0; }
  .pdp-swiper-thumbs { width: 100%; }

  /* ----- gallery ----- */
  .pdp-gallery { position: sticky; top: 32px; }
  .pdp-main {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(26,23,20,0.06);
    transition: background .4s ease;
  }
  .pdp-main img {
    width: 100%; height: 100%;
    object-fit: contain;
    display: block;
    transition: transform .6s ease;
  }
  .pdp-main:hover img { transform: scale(1.03); }
  .pdp-main-tag {
    position: absolute;
    top: 18px; left: 18px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(255,255,255,0.92);
    padding: 6px 10px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(26,23,20,0.08);
  }

  /* ----- info ----- */
  .pdp-info { padding-top: 12px; }
  .pdp-eyebrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: "Geist Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .pdp-cat { color: var(--gold); }
  .pdp-sku { color: rgba(26,23,20,0.5); }

  .pdp-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 4vw, 60px);
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--ink);
  }
  .pdp-subtitle {
    margin-top: 12px;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    color: rgba(26,23,20,0.7);
    line-height: 1.4;
  }

  .pdp-price {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(26,23,20,0.12);
  }
  .pdp-price-value {
    display: block;
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
    font-size: 22px;
    font-style: normal;
    color: var(--ink);
    letter-spacing: 0;
    line-height: 1;
  }
  .pdp-price-tax {
    display: block;
    margin-top: 8px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
  }

  .pdp-stock {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink);
  }
  .pdp-stock-dot {
    width: 8px; height: 8px;
    background: #4a8c4a;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(74,140,74,0.18);
  }
  .pdp-stock strong { font-weight: 500; }
  .pdp-stock-note { color: rgba(26,23,20,0.8); }

  .pdp-lead {
    margin-top: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(26,23,20,0.78);
  }

  .pdp-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: stretch;
  }
  .pdp-cta {
    flex: 1;
    padding: 18px 26px;
    font-size: 13px;
  }
  .pdp-wishlist {
    width: 56px;
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.18);
    color: var(--ink);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, color .2s, background .2s;
  }
  .pdp-wishlist:hover { border-color: var(--gold); color: var(--gold); }

  /* Force Sells note: break the "this will also add..." message onto its own
     full-width row below the button/wishlist row instead of beside them. */
  .pdp-actions > .clear { display: none; }
  .pdp-actions .wc-force-sells {
    flex-basis: 100%;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(26,23,20,0.7);
  }
  .pdp-actions .wc-force-sells p { margin: 0 0 4px; }
  .pdp-actions .wc-force-sells ul { margin: 0; padding-left: 18px; }

  .pdp-ask {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.14);
    font-size: 13px;
    color: var(--ink);
    text-decoration: none;
    transition: border-color .2s, color .2s;
  }
  .pdp-ask:hover { border-color: var(--gold); color: var(--gold); }
  .pdp-ask svg { flex-shrink: 0; color: var(--gold); }
  .pdp-ask-text { flex: 1; }
  .pdp-ask b { font-weight: 500; }
  .pdp-ask .arr { flex-shrink: 0; color: var(--gold); transition: transform .2s; }
  .pdp-ask:hover .arr { transform: translateX(3px); }

  .pdp-trust {
    margin: 32px 0 0;
    padding: 24px 0 0;
    list-style: none;
    border-top: 1px solid rgba(26,23,20,0.10);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 24px;
  }
  .pdp-trust li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--ink);
  }
  .pdp-trust svg {
    flex-shrink: 0;
    color: var(--gold);
    margin-top: 2px;
  }
  .pdp-trust b { display: block; font-weight: 500; line-height: 1.25; }
  .pdp-trust span {
    color: rgba(26,23,20,0.8);
    font-size: 12px;
    line-height: 1.4;
  }

  @media (max-width: 980px) {
    .pdp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .pdp-gallery { position: static; }
    .pdp-trust { grid-template-columns: 1fr; }
  }

  /* ============ shared section heads ============ */
  .pdp-section { padding: 100px 0; }
  .pdp-section-h {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-top: 14px;
  }
  .pdp-section-h em { color: var(--gold); font-style: italic; }
  .pdp-block-h {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin-top: 10px;
    margin-bottom: 28px;
  }
  .pdp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
  }

  /* ============ DESCRIPTION ============ */
  .pdp-section--desc { background: var(--paper); }
  .pdp-desc-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .pdp-desc-text p {
    font-size: 16.5px;
    line-height: 1.65;
    color: rgba(26,23,20,0.82);
    margin-bottom: 18px;
  }
  .pdp-quote {
    margin-top: 28px;
    padding: 20px 0 4px 24px;
    border-left: 1px solid var(--gold);
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink);
  }
  .pdp-quote cite {
    display: block;
    margin-top: 12px;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.55);
  }
  @media (max-width: 900px) {
    .pdp-desc-grid { grid-template-columns: 1fr; gap: 32px; }
  }

  /* ============ SPECS + STONES ============ */
  .pdp-section--specs { background: var(--white); }
  .pdp-specs-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .pdp-spec-list {
    margin: 0;
    border-top: 1px solid rgba(26,23,20,0.12);
  }
  .pdp-spec-list > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .pdp-spec-list dt {
    font-family: "Geist Mono", monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.8);
    align-self: center;
  }
  .pdp-spec-list dd {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: normal;
    color: var(--ink);
    line-height: 1.2;
  }
  .pdp-spec-list dd small {
    font-style: normal;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(26,23,20,0.5);
    margin-left: 4px;
  }

  /* stones */
  .pdp-stones {
    background: var(--cream);
    padding: 36px 36px 30px;
    border: 1px solid rgba(26,23,20,0.08);
  }
  .pdp-stone {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(26,23,20,0.10);
  }
  .pdp-stone:last-child { border-bottom: 0; padding-bottom: 4px; }
  .pdp-stone:first-of-type { padding-top: 4px; }
  .pdp-stone-icon {
    width: 64px; height: 64px;
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
  }
  .pdp-stone h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
  }
  .pdp-stone p {
    font-size: 14px;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 6px;
  }
  .pdp-stone p b { font-weight: 500; }
  .pdp-stone small {
    font-size: 12.5px;
    color: rgba(26,23,20,0.62);
    line-height: 1.5;
  }
  @media (max-width: 900px) {
    .pdp-specs-grid { grid-template-columns: 1fr; gap: 40px; }
    .pdp-spec-list > div { grid-template-columns: 1fr; gap: 4px; }
  }

  /* ============ SERVICE GRID ============ */
  .pdp-section--service { background: var(--paper); }
  .pdp-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(26,23,20,0.12);
    border-left: 1px solid rgba(26,23,20,0.12);
    background: var(--paper);
  }
  /* White cells on the paper section for contrast; no hover shift - these are
     not links, and the darkening read as clickable (same fix as .adv-cell). */
  .pdp-service-grid article {
    padding: 32px 28px 30px;
    border-right: 1px solid rgba(26,23,20,0.12);
    border-bottom: 1px solid rgba(26,23,20,0.12);
    background: var(--white);
    min-height: 220px;
    display: flex;
    flex-direction: column;
  }
  .pdp-service-num {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.22em;
  }
  .pdp-service-grid h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.005em;
  }
  .pdp-service-grid p {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(26,23,20,0.72);
    margin-top: auto;
  }
  @media (max-width: 1000px) {
    .pdp-service-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .pdp-service-grid { grid-template-columns: 1fr; }
  }

  /* ============ RELATED (reuses .new-grid from home) ============ */
  .pdp-section--related { background: var(--cream); overflow: hidden; }

  /* On mobile, behave like the home "Neu im Haus" slider */
  @media (max-width: 760px) {
    .pdp-section--related .new-grid {
      display: flex !important;
      grid-template-columns: none;
      gap: 14px;
      overflow-x: auto;
      overflow-y: visible;
      scroll-snap-type: x mandatory;
      padding: 4px 0 18px;
      margin-right: -24px;
      padding-right: 24px;
      scrollbar-width: thin;
      scrollbar-color: rgba(26,23,20,0.25) transparent;
    }
    .pdp-section--related .new-grid::-webkit-scrollbar { height: 6px; }
    .pdp-section--related .new-grid::-webkit-scrollbar-track { background: transparent; }
    .pdp-section--related .new-grid::-webkit-scrollbar-thumb {
      background: rgba(26,23,20,0.18);
      border-radius: 3px;
    }
    .pdp-section--related .new-grid > .new-card {
      flex: 0 0 78vw;
      max-width: 320px;
      scroll-snap-align: start;
    }
  }

  /* ============ QUESTION CTA ============ */
  .pdp-question {
    background: var(--ink);
    color: var(--cream);
    padding: 88px 0;
  }
  .pdp-question-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .pdp-question .eyebrow { color: var(--gold-light); }
  .pdp-question h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 3.4vw, 50px);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-top: 14px;
  }
  .pdp-question h2 em { color: var(--gold-light); font-style: italic; }
  .pdp-question p {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(244,243,239,0.78);
    max-width: 520px;
  }
  .pdp-question-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .pdp-question-phone {
    color: var(--cream);
    text-decoration: none;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-style: italic;
    line-height: 1;
    padding: 14px 0;
    border-bottom: 1px solid var(--gold-light);
    width: 100%;
    transition: color .2s, border-color .2s;
  }
  .pdp-question-phone:hover { color: var(--gold); border-color: var(--gold); }
  .pdp-question-phone small {
    display: block;
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    font-style: normal;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(244,243,239,0.5);
    margin-bottom: 6px;
  }
  .pdp-question .btn-primary {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }
  .pdp-question .btn-primary:hover {
    background: var(--cream);
    color: var(--ink);
  }
  .pdp-question .btn-ghost {
    padding: 2px 0;
    border-bottom: 0;
    color: rgba(244,243,239,0.5);
    font-size: 11px;
    letter-spacing: 0.16em;
  }
  .pdp-question .btn-ghost:hover {
    color: var(--gold-light);
    border-color: transparent;
  }
  @media (max-width: 880px) {
    .pdp-question { padding: 60px 0; }
    .pdp-question-inner { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ============ STICKY BUY BAR ============ */
  .pdp-sticky {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    background: var(--white);
    border-top: 1px solid rgba(26,23,20,0.10);
    box-shadow: 0 -8px 24px rgba(26,23,20,0.08);
    z-index: 90;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .pdp-sticky.is-visible { transform: translateY(0); }
  .pdp-sticky-inner {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .pdp-sticky-prod {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
  }
  .pdp-sticky-prod img {
    width: 48px; height: 48px;
    object-fit: cover;
    border: 1px solid rgba(26,23,20,0.08);
    flex-shrink: 0;
  }
  .pdp-sticky-prod > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .pdp-sticky-prod strong {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1;
    color: var(--ink);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .pdp-sticky-prod span {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(26,23,20,0.8);
  }
  .pdp-sticky .btn-primary {
    padding: 12px 22px;
    font-size: 11px;
  }
  @media (max-width: 540px) {
    .pdp-sticky-prod strong { font-size: 15px; }
    .pdp-sticky-prod img { width: 40px; height: 40px; }
  }

  /* ============ NEW-CARD reused (already styled in home build, but the
     PDP can be built independently of the home so we copy minimal styles) ============ */
  .new-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .new-card {
    background: var(--white);
    border: 1px solid rgba(26,23,20,0.10);
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
  }
  .new-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px -28px rgba(26,23,20,0.22);
    border-color: var(--gold);
  }
  .new-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--cream);
    overflow: hidden;
    border-bottom: 1px solid rgba(26,23,20,0.08);
  }
  .new-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .new-card:hover .new-media img { transform: scale(1.04); }
  .new-media-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 2;
    font-family: "Geist Mono", monospace;
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(255,255,255,0.92);
    padding: 5px 9px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(26,23,20,0.08);
  }
  .new-body { padding: 22px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .new-body h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.005em;
  }
  .new-spec { font-size: 13px; line-height: 1.45; color: rgba(26,23,20,0.68); }
  .new-foot {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(26,23,20,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .new-price {
    font-family: "Geist", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-size: 16px;
    color: var(--ink);
  }
  .new-cta {
    font-family: "Geist Mono", monospace;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .25s ease, color .2s;
  }
  .new-card:hover .new-cta { gap: 14px; color: var(--gold); }
  .home-section-link {
    font-family: "Geist Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s, gap .25s ease;
  }
  .home-section-link:hover { color: var(--gold); gap: 18px; }
  @media (max-width: 1000px) { .new-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 540px) { .new-grid { grid-template-columns: 1fr; } }

  /* sg2 additions */
  .pdp-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
  }
  .pdp-thumb {
    width: 64px;
    height: 64px;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(26,23,20,0.12);
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s;
  }
  .pdp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pdp-thumb:hover { border-color: rgba(26,23,20,0.35); }
  .pdp-thumb.is-active { border-color: var(--gold); }
  .pdp-cta[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
  }
  .pdp-stock.is-out .pdp-stock-dot { background: #b0473a; }

  /* ============ Swiper product gallery (sg2 additions) ============ */
  .pdp-gallery { --pdp-bg: #ffffff; }

  /* square via padding-ratio (aspect-ratio loops to a degenerate height
     inside the sticky grid item); wrapper is absolutely filled */
  .pdp-swiper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    border: 1px solid rgba(26,23,20,0.06);
    overflow: hidden;
    background: var(--pdp-bg);
  }
  .pdp-swiper > .swiper-wrapper { position: absolute; inset: 0; }
  .pdp-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pdp-bg);
    overflow: hidden;
  }
  .pdp-slide--image .swiper-zoom-container {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: var(--pdp-bg);
    cursor: zoom-in;
  }
  .pdp-slide--image img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .pdp-slide--video { background: #0c0b0a; }
  .pdp-video { width: 100%; height: 100%; object-fit: cover; display: block; }

  /* nav arrows */
  .pdp-swiper .swiper-button-prev,
  .pdp-swiper .swiper-button-next {
    width: 40px; height: 40px; margin: 0;
    top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(26,23,20,0.1);
    border-radius: 50%;
    color: var(--ink);
    box-shadow: 0 6px 16px -8px rgba(26,23,20,0.3);
    transition: background .2s, color .2s;
  }
  .pdp-swiper .swiper-button-prev { left: 14px; }
  .pdp-swiper .swiper-button-next { right: 14px; }
  .pdp-swiper .swiper-button-prev::after,
  .pdp-swiper .swiper-button-next::after { font-size: 15px; font-weight: 700; }
  .pdp-swiper .swiper-button-prev:hover,
  .pdp-swiper .swiper-button-next:hover { background: var(--ink); color: #fff; }
  .pdp-swiper .swiper-button-disabled { opacity: 0; pointer-events: none; }

  /* pagination */
  .pdp-swiper .swiper-pagination { bottom: 12px; }
  .pdp-swiper .swiper-pagination-bullet {
    background: rgba(255,255,255,0.95);
    opacity: 0.6;
    box-shadow: 0 0 0 1px rgba(26,23,20,0.18);
  }
  .pdp-swiper .swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

  /* zoom (magnifier) button */
  .pdp-zoom-btn {
    position: absolute;
    bottom: 14px; right: 14px;
    z-index: 11; /* above the swiper pagination (z-index 10) so the button stays clickable */
    width: 48px; height: 48px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(26,23,20,0.1);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 8px 20px -8px rgba(26,23,20,0.35);
    transition: background .2s, color .2s, transform .15s;
    -webkit-tap-highlight-color: transparent;
  }
  .pdp-zoom-btn svg { width: 20px; height: 20px; }
  .pdp-zoom-btn:hover { background: var(--ink); color: #fff; }
  .pdp-zoom-btn:active { transform: scale(0.92); }
  .pdp-zoom-close { display: none; }

  /* thumbnails */
  .pdp-swiper-thumbs { margin-top: 12px; }
  .pdp-swiper-thumbs .swiper-slide {
    width: 72px;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    border: 1px solid rgba(26,23,20,0.12);
    overflow: hidden;
    opacity: 0.55;
    transition: opacity .2s, border-color .2s;
    position: relative;
    background: var(--cream);
  }
  .pdp-swiper-thumbs .swiper-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pdp-swiper-thumbs .swiper-slide-thumb-active { opacity: 1; border-color: var(--gold); }
  .pdp-thumb-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: #fff; background: rgba(0,0,0,0.28);
  }

  /* fullscreen pinch-zoom view */
  body.pdp-zoom-lock { overflow: hidden; }
  .pdp-gallery.is-fullscreen {
    position: fixed !important;
    inset: 0;
    top: 0 !important;
    z-index: 1100;
    margin: 0;
    background: rgba(15,13,11,0.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .pdp-gallery.is-fullscreen .pdp-swiper {
    width: 100%; height: 100%;
    padding-bottom: 0;
    border: 0;
    background: transparent;
  }
  .pdp-gallery.is-fullscreen .swiper-slide,
  .pdp-gallery.is-fullscreen .pdp-slide--image .swiper-zoom-container { background: transparent; cursor: default; }
  .pdp-gallery.is-fullscreen .pdp-swiper-thumbs,
  .pdp-gallery.is-fullscreen .pdp-zoom-btn,
  .pdp-gallery.is-fullscreen .pdp-main-tag { display: none; }
  /* dark backing so the icons stay visible over white product images */
  .pdp-gallery.is-fullscreen .pdp-zoom-close {
    display: inline-flex; align-items: center; justify-content: center;
    position: fixed;
    top: 18px; right: 18px;
    z-index: 4;
    width: 46px; height: 46px;
    background: rgba(15,13,11,0.6);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s;
  }
  .pdp-gallery.is-fullscreen .pdp-zoom-close:hover { background: rgba(15,13,11,0.85); }
  .pdp-gallery.is-fullscreen .swiper-button-prev,
  .pdp-gallery.is-fullscreen .swiper-button-next {
    background: rgba(15,13,11,0.6);
    border-color: rgba(255,255,255,0.35);
    color: #fff;
  }
  .pdp-gallery.is-fullscreen .swiper-button-prev:hover,
  .pdp-gallery.is-fullscreen .swiper-button-next:hover { background: rgba(15,13,11,0.85); }

/* Cormorant headlines at weight 500 (see base.css tail note). */
.pdp-title,
.pdp-section-h,
.pdp-block-h,
.pdp-stone h4,
.pdp-service-grid h4,
.pdp-question h2,
.new-body h3 {
  font-weight: 500;
}
