/* ══════════════════════════════════════════════════════════
   MR.DENIM — Premium PDP  |  Dark Luxury Edition
   Reference-image layout · Gold accents · Dark mode only
══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --pdp-bg:           #050505;
  --pdp-surface:      #0e0e0e;
  --pdp-gallery-bg:   #090909;
  --pdp-thumb-bg:     rgba(255,255,255,0.03);
  --pdp-thumb-border: rgba(255,255,255,0.08);
  --pdp-text:         #EDE6DA;
  --pdp-text-muted:   rgba(237,230,218,0.52);
  --pdp-border:       rgba(212,175,55,0.12);
  --pdp-gold:         #D4AF37;
  --pdp-gold-hover:   #F2C84B;
  --pdp-gold-dim:     rgba(212,175,55,0.15);

  --color-success:    #4ade80;
  --color-error:      #D32F2F;

  --font-serif: 'Playfair Display', 'Cinzel', serif;
  --font-sans:  'Inter', 'Jost', sans-serif;

  --shadow-luxury:       0 10px 40px rgba(0,0,0,0.5);
  --shadow-luxury-hover: 0 20px 60px rgba(0,0,0,0.7);
  --shadow-sticky:       0 -4px 24px rgba(0,0,0,0.6);

  /* navbar(64) + announcement(36) + breadcrumb(42) */
  --pdp-chrome-h: 142px;
  --pdp-hero-h:   calc(100vh - var(--pdp-chrome-h));
}

/* ── Base ───────────────────────────────────────────────── */
.page-product {
  background-color: var(--pdp-bg);
  color: var(--pdp-text);
  font-family: var(--font-sans);
  margin: 0; padding: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.pdp-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}

/* ── Typography helpers ─────────────────────────────────── */
.pdp-heading-serif { font-family: var(--font-serif); font-weight: 700; color: var(--pdp-text); }
.pdp-heading-sans  { font-family: var(--font-sans);  font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.pdp-breadcrumb {
  padding: 0.85rem 2rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pdp-text-muted);
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--pdp-border);
}
.pdp-breadcrumb a { color: var(--pdp-text-muted); text-decoration: none; transition: color .2s; }
.pdp-breadcrumb a:hover { color: var(--pdp-gold); }
.pdp-breadcrumb__current { color: var(--pdp-text); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   HERO LAYOUT
══════════════════════════════════════════════════════════ */
.pdp-hero {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--pdp-border);
}
@media (min-width: 1024px) {
  .pdp-hero {
    flex-direction: row;
    align-items: flex-start;
    min-height: var(--pdp-hero-h);
    max-height: var(--pdp-hero-h);
    overflow: hidden;
  }
}

/* ══════════════════════════════════════════════════════════
   GALLERY — Left 55%
══════════════════════════════════════════════════════════ */
.pdp-hero__gallery {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  background-color: var(--pdp-gallery-bg);
}
@media (min-width: 1024px) {
  .pdp-hero__gallery {
    width: 55%;
    height: 100%;
    max-height: var(--pdp-hero-h);
    overflow: hidden;
    flex-direction: row;
  }
}

/* ── Thumbnail strip ── */
.pdp-gallery__thumbs {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
  overflow-x: auto;
  width: 100%;
  background-color: var(--pdp-thumb-bg);
  border-top: 1px solid var(--pdp-thumb-border);
  scrollbar-width: none;
  align-items: center;
}
.pdp-gallery__thumbs::-webkit-scrollbar { display: none; }

@media (min-width: 1024px) {
  .pdp-gallery__thumbs {
    flex-direction: column;
    padding: 1rem 0.75rem;
    position: sticky; top: 0;
    height: 100%; overflow-y: auto; overflow-x: hidden;
    width: 90px; flex-shrink: 0;
    border-right: 1px solid var(--pdp-thumb-border);
    border-top: none;
    scrollbar-width: thin;
    scrollbar-color: var(--pdp-thumb-border) transparent;
  }
  .pdp-gallery__thumbs::-webkit-scrollbar { display: block; width: 3px; }
  .pdp-gallery__thumbs::-webkit-scrollbar-track { background: transparent; }
  .pdp-gallery__thumbs::-webkit-scrollbar-thumb { background: var(--pdp-thumb-border); border-radius: 4px; }
}

.pdp-gallery__thumb-btn {
  width: 66px; height: 82px; padding: 2px;
  border: 1.5px solid var(--pdp-thumb-border);
  background: var(--pdp-thumb-bg);
  cursor: pointer; opacity: 0.6; flex-shrink: 0;
  border-radius: 4px; overflow: hidden; position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s, opacity .25s;
}
.pdp-gallery__thumb-btn img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 2px;
  display: block; transition: transform .3s;
}
.pdp-gallery__thumb-btn:hover { opacity: 0.85; border-color: var(--pdp-gold); transform: scale(1.03); }
.pdp-gallery__thumb-btn.is-active {
  opacity: 1; border-color: var(--pdp-gold);
  box-shadow: 0 0 0 1px var(--pdp-gold), 0 4px 16px rgba(0,0,0,0.3);
  transform: scale(1.04);
}
.pdp-gallery__thumb-btn.is-active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--pdp-gold);
}

/* "+2 MORE" overflow pill */
.pdp-gallery__thumb-more {
  width: 66px; height: 82px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  color: var(--pdp-text-muted);
  font-family: var(--font-sans); font-size: 0.58rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.15rem; transition: border-color .25s, color .25s; flex-shrink: 0;
}
.pdp-gallery__thumb-more:hover { border-color: var(--pdp-gold); color: var(--pdp-text); }
.pdp-gallery__thumb-more strong { font-size: 0.8rem; font-weight: 700; color: var(--pdp-text); }

/* ── Main image area ── */
.pdp-gallery__main {
  flex: 1; position: relative;
  overflow: hidden; display: flex; flex-direction: column;
}
.pdp-gallery__main-img-wrap {
  width: 100%; aspect-ratio: 3/4;
  position: relative; cursor: zoom-in;
  overflow: hidden; flex: 1;
  background-color: var(--pdp-gallery-bg);
}
@media (min-width: 1024px) {
  .pdp-gallery__main-img-wrap {
    aspect-ratio: unset; height: 100%;
    max-height: var(--pdp-hero-h);
    display: flex; align-items: center; justify-content: center;
  }
}
/* Gallery Arrows */
.pdp-gallery__main-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20, 18, 16, 0.4); border: 1px solid rgba(255,255,255,0.1);
  color: var(--pdp-text); display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; transition: all 0.3s ease; z-index: 10;
  backdrop-filter: blur(4px);
}
.pdp-gallery__main-img-wrap:hover .pdp-gallery__main-nav { opacity: 1; }
.pdp-gallery__main-nav:hover { background: rgba(20, 18, 16, 0.8); border-color: var(--pdp-accent); color: var(--pdp-accent); }
.pdp-gallery__main-nav--prev { left: 16px; }
.pdp-gallery__main-nav--next { right: 16px; }

/* Crossfade animation classes */
.pdp-gallery__main-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .35s ease-out, opacity 0.4s ease; display: block;
  position: absolute; top: 0; left: 0;
}
@media (min-width: 1024px) {
  .pdp-gallery__main-img { object-fit: contain; object-position: center center; }
}
.pdp-gallery__main-img--entering { opacity: 0; z-index: 2; }
.pdp-gallery__main-img--active { opacity: 1; z-index: 2; }
.pdp-gallery__main-img--exiting { opacity: 0; z-index: 1; transform: scale(1.02); }

/* Gallery Badge — "NEW ARRIVAL" top-right */
.pdp-gallery-badge {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(10px) saturate(1.5);
  -webkit-backdrop-filter: blur(10px);
  color: var(--pdp-gold);
  font-family: var(--font-sans); font-size: 0.56rem;
  font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(212,175,55,0.35);
  pointer-events: none; z-index: 2;
}

/* View Full Size — bottom-left */
.pdp-gallery-view-full {
  position: absolute; bottom: 1rem; left: 1rem;
  display: flex; align-items: center; gap: 0.45rem;
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(237,230,218,0.65);
  font-family: var(--font-sans); font-size: 0.56rem;
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 0.38rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer; z-index: 2;
  transition: color .2s, border-color .2s, background .2s;
}
.pdp-gallery-view-full:hover {
  color: var(--pdp-text);
  border-color: rgba(212,175,55,0.4);
  background: rgba(8,8,8,0.85);
}
.pdp-gallery-view-full svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   INFO PANEL — Right 45%
══════════════════════════════════════════════════════════ */
.pdp-hero__info {
  width: 100%;
  padding: 2rem 1.75rem;
  background-color: var(--pdp-bg);
}
@media (min-width: 1024px) {
  .pdp-hero__info {
    width: 45%;
    padding: 2.5rem 2.8rem 2.5rem 2.4rem;
    position: sticky; top: 0;
    height: var(--pdp-hero-h);
    max-height: var(--pdp-hero-h);
    overflow-y: auto;
    scrollbar-width: none;
  }
  .pdp-hero__info::-webkit-scrollbar { display: none; }
}

/* ── Eyebrow ── */
.pi-eyebrow {
  font-size: 0.58rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--pdp-gold);
  margin: 0 0 0.55rem; font-weight: 400; opacity: 0.9;
}

/* ── Title ── */
.pi-title {
  font-family: var(--font-serif);
  font-size: 1.75rem; font-weight: 500;
  line-height: 1.18; letter-spacing: -0.01em;
  color: var(--pdp-text); margin: 0 0 0.9rem;
}
@media (min-width: 1024px) { .pi-title { font-size: 1.55rem; } }

/* ── Price Row ── */
.pi-price-row {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 0.3rem; flex-wrap: wrap; gap: 0.5rem;
}
.pi-price-left {
  display: flex; align-items: baseline;
  gap: 0.75rem; flex-wrap: wrap;
}
.pi-price {
  display: flex; align-items: baseline; gap: 0.3rem;
  font-size: 2.1rem; font-weight: 800;
  color: var(--pdp-text); letter-spacing: 0.01em; line-height: 1;
}
.pi-price-pkr {
  font-size: 0.88rem; font-weight: 500;
  color: var(--pdp-text-muted); align-self: flex-end; margin-bottom: 0.12rem;
}
.pi-original {
  font-size: 1rem; color: var(--pdp-text-muted);
  text-decoration: line-through; opacity: 0.38; font-weight: 400;
}
.pi-badge {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--pdp-gold);
  border: 1px solid rgba(212,175,55,0.3);
  padding: 0.18rem 0.6rem; border-radius: 20px;
}

/* IN STOCK badge */
.pi-stock-badge {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--color-success);
}
.pi-stock-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-success); flex-shrink: 0;
  animation: pi-pulse 2s ease-in-out infinite;
}
.pi-stock-badge.out { color: rgba(220,80,70,0.8); }
.pi-stock-badge.out .pi-stock-dot { background: #dc3545; animation: none; }

/* Tax label */
.pi-tax-label {
  font-size: 0.65rem; color: var(--pdp-text-muted);
  margin-bottom: 0.9rem; letter-spacing: 0.3px;
}

/* ── Urgency ── */
.pi-urgency {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.63rem; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(220,80,70,0.85);
  margin-bottom: 0.7rem;
}
.pi-urgency-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #dc3545; flex-shrink: 0;
  animation: pi-pulse 1.5s ease-in-out infinite;
}
@keyframes pi-pulse { 0%,100% { opacity:1; } 50% { opacity:0.35; } }

/* ── Divider ── */
.pi-rule { height: 1px; background: var(--pdp-border); margin: 0.9rem 0; }

/* ── Field Group ── */
.pi-field { margin-bottom: 1.1rem; }
.pi-field-label {
  display: flex; align-items: center; gap: 0.55rem;
  margin-bottom: 0.65rem;
  font-size: 0.58rem; text-transform: uppercase;
  letter-spacing: 2.2px; color: var(--pdp-text-muted); font-weight: 600;
}
.pi-field-val { color: var(--pdp-text); font-weight: 700; font-size: 0.58rem; }

/* Size Guide */
.pi-size-guide {
  margin-left: auto; background: none; border: none;
  font-family: var(--font-sans); font-size: 0.58rem;
  letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--pdp-text-muted); cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  padding: 0; transition: color .2s;
}
.pi-size-guide:hover { color: var(--pdp-gold); }

/* ── Color Swatches ── */
.pi-swatches { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.pi-swatch {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid transparent; padding: 3px;
  cursor: pointer; background: transparent;
  transition: border-color .2s, transform .2s; outline: none;
}
.pi-swatch-inner {
  display: block; width: 100%; height: 100%;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.25),
              0 2px 6px rgba(0,0,0,0.3);
}
.pi-swatch:hover { transform: scale(1.15); }
.pi-swatch.is-active { border-color: var(--pdp-gold); }

/* ── Size Chips ── */
.pi-size-grid { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pi-size-chip {
  min-width: 52px; height: 38px; padding: 0 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent; color: var(--pdp-text-muted);
  font-family: var(--font-sans); font-size: 0.75rem;
  font-weight: 400; letter-spacing: 0.5px;
  cursor: pointer; border-radius: 2px;
  transition: border-color .2s, color .2s, background .2s;
}
.pi-size-chip:hover:not(:disabled) {
  border-color: rgba(255,255,255,0.35); color: var(--pdp-text);
}
.pi-size-chip.is-active {
  border-color: var(--pdp-gold); color: var(--pdp-text);
  background: var(--pdp-gold-dim);
}
.pi-size-chip:disabled, .pi-size-chip.is-unavailable {
  opacity: 0.2; cursor: not-allowed; text-decoration: line-through;
}

/* Locked waist step */
.pds-step--waist.is-locked { opacity: 0.35; pointer-events: none; }

/* Selection summary */
.pi-selection-summary {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--pdp-text-muted);
  padding: 0.5rem 0.75rem;
  background: rgba(212,175,55,0.05);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 3px; margin-top: 0.5rem;
  animation: pi-fade-in .3s ease;
}
@keyframes pi-fade-in { from { opacity:0; transform:translateY(-4px); } to { opacity:1; transform:translateY(0); } }
.pi-clear {
  margin-left: auto; background: none; border: none;
  color: var(--pdp-text-muted); cursor: pointer;
  font-size: 1rem; line-height: 1; padding: 0 0.2rem; transition: color .2s;
}
.pi-clear:hover { color: var(--pdp-text); }

/* ══════════════════════════════════════════════════════════
   ACTIONS — Qty + Buttons
══════════════════════════════════════════════════════════ */
.pi-actions {
  display: flex; flex-direction: column;
  gap: 0.6rem; margin-bottom: 0.65rem;
}

/* Qty + ADD TO BAG row */
.pi-actions-main {
  display: flex; gap: 0.6rem; align-items: stretch;
}

/* Qty counter */
.pi-qty {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px; flex-shrink: 0;
  overflow: hidden; height: 50px; width: 110px;
}
.pi-qty-btn {
  flex: 1; background: transparent; border: none;
  color: var(--pdp-text); font-size: 1.15rem; font-weight: 300;
  cursor: pointer; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pi-qty-btn:hover { background: rgba(255,255,255,0.04); }
.pi-qty-val {
  flex: 0 0 32px; text-align: center;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  color: var(--pdp-text);
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  pointer-events: none; user-select: none;
}

/* Shared button base */
.pi-btn {
  width: 100%; height: 50px;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  transition: all .25s ease; border: 1px solid transparent;
}

/* ADD TO BAG — Solid Gold */
.pi-btn-primary {
  flex: 1; height: 50px;
  background: var(--pdp-gold);
  color: #050505;
  border-color: var(--pdp-gold);
}
.pi-btn-primary:hover:not(:disabled) {
  background: var(--pdp-gold-hover);
  border-color: var(--pdp-gold-hover);
  box-shadow: 0 4px 20px rgba(212,175,55,0.35);
}
.pi-btn-primary:disabled { opacity: 0.35; cursor: not-allowed; }

/* BUY IT NOW — Full-width outline */
.pi-btn-secondary {
  background: transparent;
  color: var(--pdp-text);
  border-color: rgba(237,230,218,0.18);
}
.pi-btn-secondary:hover:not(:disabled) {
  background: rgba(255,255,255,0.03);
  border-color: rgba(237,230,218,0.38);
}
.pi-btn-secondary:disabled { opacity: 0.35; cursor: not-allowed; }

/* ── Wishlist + Share row ── */
.pi-social-row {
  display: flex; gap: 0.5rem; margin-bottom: 1.1rem;
}
.pi-btn-ghost {
  flex: 1; height: 42px;
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  background: transparent;
  color: rgba(237,230,218,0.38);
  border: 1px solid rgba(255,255,255,0.07);
  font-family: var(--font-sans); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; cursor: pointer;
  transition: color .25s, border-color .25s, background .25s;
}
.pi-btn-ghost:hover {
  color: var(--pdp-text-muted);
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.02);
}
.pi-btn-ghost svg { flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   TRUST BADGES — 4 columns with icon + label + subtitle
══════════════════════════════════════════════════════════ */
.pi-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 0.25rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--pdp-border);
  border-bottom: 1px solid var(--pdp-border);
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .pi-trust { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
.pi-trust-item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 0.3rem;
}
.pi-trust-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  stroke: rgba(212,175,55,0.75); fill: none; stroke-width: 1.3;
}
.pi-trust-label {
  font-size: 0.52rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(237,230,218,0.72); line-height: 1.25;
}
.pi-trust-sub {
  font-size: 0.5rem; color: rgba(237,230,218,0.3);
  letter-spacing: 0.3px; line-height: 1.25;
}

/* ══════════════════════════════════════════════════════════
   ACCORDIONS — 4 items
══════════════════════════════════════════════════════════ */
.pi-accordions { margin-top: 0; }
.pi-acc-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.pi-acc-btn {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0; background: none; border: none;
  font-family: var(--font-sans); font-size: 0.6rem;
  font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(237,230,218,0.45); cursor: pointer; transition: color .2s;
}
.pi-acc-btn:hover,
.pi-acc-btn.is-active { color: var(--pdp-text); }
.pi-acc-plus {
  flex-shrink: 0; font-size: 1.1rem; font-weight: 300;
  color: rgba(237,230,218,0.35); transition: transform .3s ease, color .2s;
  line-height: 1;
}
.pi-acc-btn.is-active .pi-acc-plus { transform: rotate(45deg); color: var(--pdp-gold); }
.pi-acc-body {
  max-height: 320px; overflow: hidden;
  transition: max-height .35s cubic-bezier(0.4,0,0.2,1);
}
.pi-acc-inner {
  padding: 0 0 1rem;
  font-size: 0.8rem; line-height: 1.85;
  color: rgba(237,230,218,0.48);
}
.pi-acc-inner p { margin: 0; }

/* Specs table */
.pi-specs {
  margin-top: 1rem; display: grid;
  grid-template-columns: 1fr 1fr; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 0.75rem;
}
.pi-spec-row { display: contents; }
.pi-spec-k {
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px;
  color: rgba(237,230,218,0.28); padding: 0.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pi-spec-v {
  font-size: 0.72rem; color: rgba(237,230,218,0.58);
  padding: 0.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}

/* Shipping rows */
.pi-ship-rows { display: flex; flex-direction: column; gap: 0.45rem; }
.pi-ship-row {
  font-size: 0.78rem; color: rgba(237,230,218,0.42);
  padding-left: 0.75rem;
  border-left: 1.5px solid rgba(212,175,55,0.22);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   FEATURES STRIP — 4 cols below hero
══════════════════════════════════════════════════════════ */
.pdp-features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--pdp-border);
  background: var(--pdp-surface);
}
@media (max-width: 768px) {
  .pdp-features-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pdp-features-strip { grid-template-columns: 1fr 1fr; }
}
.pdp-feature-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--pdp-border);
  transition: background .2s;
}
.pdp-feature-item:last-child { border-right: none; }
.pdp-feature-item:hover { background: rgba(255,255,255,0.015); }
@media (max-width: 768px) {
  .pdp-feature-item {
    border-right: none;
    border-bottom: 1px solid var(--pdp-border);
    padding: 1.5rem 1rem;
  }
  .pdp-feature-item:nth-child(odd) { border-right: 1px solid var(--pdp-border); }
  .pdp-feature-item:last-child { border-bottom: none; }
  .pdp-feature-item:nth-last-child(2) { border-bottom: none; }
}
.pdp-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  stroke: var(--pdp-gold); fill: none; opacity: 0.75;
  transition: opacity .2s;
}
.pdp-feature-item:hover .pdp-feature-icon { opacity: 1; }
.pdp-feature-title {
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--pdp-text); margin-bottom: 0.3rem;
  line-height: 1.3;
}
.pdp-feature-sub {
  font-size: 0.63rem; color: var(--pdp-text-muted); line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════
   RELATED PRODUCTS SECTION
══════════════════════════════════════════════════════════ */
.pdp-related-section {
  padding: 4.5rem 2rem;
  border-bottom: 1px solid var(--pdp-border);
}
.pdp-related-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap; gap: 1rem;
}
.pdp-related-eyebrow {
  font-size: 0.58rem; letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--pdp-gold); margin: 0 0 0.55rem; font-weight: 400;
}
.pdp-related-title {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 600;
  color: var(--pdp-text); margin: 0;
}
.pdp-related-nav { display: flex; gap: 0.5rem; }
.pdp-related-nav-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--pdp-text-muted); cursor: pointer;
  border-radius: 2px; transition: all .25s;
}
.pdp-related-nav-btn:hover { border-color: var(--pdp-gold); color: var(--pdp-gold); }

/* Product Grid */
.pdp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .pdp-product-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

/* Product Card */
.pdp-product-card {
  text-decoration: none; color: var(--pdp-text);
  display: block; position: relative;
  transition: transform .3s;
}
.pdp-product-card:hover { transform: translateY(-2px); }
.pdp-product-card__img-wrap {
  aspect-ratio: 3/4; overflow: hidden;
  background-color: var(--pdp-surface);
  margin-bottom: 0.85rem; position: relative;
  border: 1px solid var(--pdp-border);
}
.pdp-product-card__img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s ease;
}
.pdp-product-card:hover .pdp-product-card__img { transform: scale(1.06); }

/* Card Badge */
.pdp-card-badge {
  position: absolute; top: 0.65rem; left: 0.65rem;
  font-family: var(--font-sans); font-size: 0.5rem;
  font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  background: var(--pdp-gold); color: #050505; z-index: 1;
}
.pdp-card-badge--bestseller { background: #FFFFFF; color: #050505; }
.pdp-card-badge--trending {
  background: rgba(212,175,55,0.1); color: var(--pdp-gold);
  border: 1px solid rgba(212,175,55,0.35);
}

/* Card Wishlist heart */
.pdp-card-wishlist {
  position: absolute; bottom: 0.7rem; right: 0.7rem;
  width: 32px; height: 32px;
  background: rgba(5,5,5,0.6); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: rgba(237,230,218,0.45); transition: all .25s; z-index: 1;
}
.pdp-card-wishlist:hover {
  background: var(--pdp-gold-dim);
  color: var(--pdp-gold);
  border-color: rgba(212,175,55,0.4);
}

.pdp-product-card__title {
  font-size: 0.82rem; font-weight: 400;
  margin: 0 0 0.3rem; color: var(--pdp-text-muted); line-height: 1.35;
}
.pdp-product-card__price {
  font-size: 0.88rem; font-weight: 700; color: var(--pdp-text);
}

/* ══════════════════════════════════════════════════════════
   REVIEWS / Q&A
══════════════════════════════════════════════════════════ */
.pdp-reviews-qa { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; }
.pdp-tabs {
  display: flex; justify-content: center; gap: 2rem;
  border-bottom: 1px solid var(--pdp-border); margin-bottom: 3rem;
}
.pdp-tab-btn {
  background: none; border: none; font-family: var(--font-sans);
  font-size: 1rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1px; color: var(--pdp-text-muted);
  padding: 1rem 0; cursor: pointer; position: relative;
}
.pdp-tab-btn.is-active { color: var(--pdp-text); }
.pdp-tab-btn.is-active::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  width: 100%; height: 2px; background: var(--pdp-gold);
}
.pdp-tab-content { display: none; }
.pdp-tab-content.is-active { display: block; animation: pdp-fadeIn .5s ease; }
.pdp-review-summary {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem;
  background: var(--pdp-surface); padding: 2rem;
  margin-bottom: 3rem; border: 1px solid var(--pdp-border);
}
@media (max-width: 768px) {
  .pdp-review-summary { flex-direction: column; text-align: center; justify-content: center; padding: 1.5rem; }
  .pdp-review-summary > div { width: 100%; }
}
.pdp-review-score { text-align: center; }
.pdp-review-score h3 { font-size: 4rem; font-weight: 700; margin: 0; line-height: 1; }
.pdp-stars { color: var(--pdp-gold); font-size: 1.2rem; }
.pdp-review-bars { flex: 1; max-width: 400px; margin: 0 auto; }
.pdp-progress__bar { background-color: var(--pdp-border); }
.pdp-progress__fill { background-color: var(--pdp-text); }
.pdp-review-item { border-bottom: 1px solid var(--pdp-border); padding: 2rem 0; }
.pdp-review-header { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.pdp-review-author { font-weight: 600; display: flex; align-items: center; gap: 0.5rem; }
.pdp-verified-badge {
  font-size: 0.7rem; color: var(--color-success);
  border: 1px solid var(--color-success);
  padding: 0.1rem 0.4rem; border-radius: 2px; text-transform: uppercase;
}
.pdp-review-date { color: var(--pdp-text-muted); font-size: 0.85rem; }
.pdp-review-text { font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; }
.pdp-review-media { display: flex; gap: 1rem; margin-bottom: 1rem; }
.pdp-review-img { width: 80px; height: 80px; object-fit: cover; cursor: zoom-in; border: 1px solid var(--pdp-border); }
.pdp-review-footer { display: flex; gap: 1rem; font-size: 0.85rem; color: var(--pdp-text-muted); }
.pdp-helpful-btn {
  background: none; border: none; color: var(--pdp-text-muted);
  cursor: pointer; display: flex; align-items: center; gap: 0.3rem;
}
.pdp-helpful-btn:hover { color: var(--pdp-text); }

/* ══════════════════════════════════════════════════════════
   MOBILE STICKY BAR
══════════════════════════════════════════════════════════ */
.pdp-mobile-sticky-cart {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--pdp-bg); box-shadow: var(--shadow-sticky);
  border-top: 1px solid var(--pdp-border);
  padding: 0.85rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(0.16,1,0.3,1);
}
.pdp-mobile-sticky-cart.is-visible { transform: translateY(0); }
@media (min-width: 1024px) { .pdp-mobile-sticky-cart { display: none; } }
.pdp-mobile-sticky__info { display: flex; flex-direction: column; }
.pdp-mobile-sticky__price { font-weight: 700; font-size: 1.05rem; }
.pdp-mobile-sticky__actions { display: flex; gap: 0.5rem; }

/* pdp-btn (sticky bar) */
.pdp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 1.5rem; font-family: var(--font-sans); font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  cursor: pointer; transition: all .3s ease; border: none; border-radius: 2px;
  font-size: 0.72rem;
}
.pdp-btn--primary { background: var(--pdp-gold); color: #050505; }
.pdp-btn--primary:hover { background: var(--pdp-gold-hover); }
.pdp-btn--buy-now {
  background: transparent; color: var(--pdp-text);
  border: 1px solid rgba(255,255,255,0.15);
}
.pdp-btn--buy-now:hover { border-color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════ */
.pdp-lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(5,5,5,0.97); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.pdp-lightbox.is-open { opacity: 1; pointer-events: auto; }
.pdp-lightbox__close {
  position: absolute; top: 2rem; right: 2rem;
  background: none; border: none; font-size: 2rem;
  cursor: pointer; z-index: 1001; color: var(--pdp-text);
}
.pdp-lightbox__img { max-width: 90%; max-height: 90vh; object-fit: contain; }
.pdp-lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; font-size: 2rem;
  cursor: pointer; padding: 1rem; color: var(--pdp-text);
}
.pdp-lightbox__nav--prev { left: 1rem; }
.pdp-lightbox__nav--next { right: 1rem; }

/* ══════════════════════════════════════════════════════════
   MODALS
══════════════════════════════════════════════════════════ */
.pdp-modal {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.85); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.pdp-modal.is-open { opacity: 1; pointer-events: auto; }
.pdp-modal-content {
  background: var(--pdp-bg); padding: 3rem;
  width: 90%; max-width: 500px; position: relative;
  transform: translateY(20px); transition: transform .3s ease;
  border: 1px solid var(--pdp-border);
}
.pdp-modal.is-open .pdp-modal-content { transform: translateY(0); }
.pdp-modal-close {
  position: absolute; top: 1rem; right: 1.5rem;
  background: none; border: none; font-size: 2rem;
  color: var(--pdp-text); cursor: pointer; line-height: 1;
}
.pdp-star-rating-input {
  display: flex; gap: 0.25rem; font-size: 2rem;
  color: var(--pdp-border); cursor: pointer;
}
.pdp-star-rating-input span { transition: color .2s ease; }
.pdp-star-rating-input span.is-active,
.pdp-star-rating-input span:hover { color: var(--pdp-gold); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes pdp-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
