/* ═══════════════════════════════════════════════════════════════════
   product.css — Pehrawa Boutique · Product Detail Page (Full Page)
   ═══════════════════════════════════════════════════════════════════
   Design system variables (--ink, --gold, --serif, etc.) are defined
   in the main stylesheet / shared.css. This file assumes they exist.

   Mobile-first: base styles target phones (≤720px),
   then progressively enhance for tablet/desktop.
   ═══════════════════════════════════════════════════════════════════ */


/* ─── PAGE CONTAINER ─── */

.pdp-page {
  min-height: 100vh;
  padding-top: 88px;                     /* clear the sticky nav */
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #fdf6e3 0%, var(--parchment) 100%);
}


/* ─── BACK LINK ─── */

.pdp-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  padding: 1rem 1.25rem;
  transition: color 0.2s;
}
.pdp-back:hover {
  color: var(--ink);
}
.pdp-back svg {
  width: 14px;
  height: 14px;
}


/* ─── BUNDLE PROMO BANNER (above-the-fold on Complete Pehrawa pages) ─── */

.pdp-free-ship-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--green-deep);
  background: linear-gradient(180deg, rgba(253, 246, 227, 0.95) 0%, rgba(243, 231, 204, 0.95) 100%);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  margin: 0 auto 1.25rem;
  max-width: 1120px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 4px 12px rgba(58, 42, 23, 0.10);
  text-align: center;
}
.pdp-free-ship-banner svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.pdp-free-ship-banner strong {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0;
}
.pdp-free-ship-banner .ship-sep {
  color: var(--gold-light);
  margin: 0 0.15rem;
}
@media (max-width: 480px) {
  .pdp-free-ship-banner {
    font-size: 0.72rem;
    padding: 0.65rem 0.85rem;
    gap: 0.4rem;
    margin: 0 0.85rem 1rem;
  }
  .pdp-free-ship-banner strong {
    font-size: 0.84rem;
  }
}


/* ─── 2-COL LAYOUT (desktop) / 1-COL (mobile) ─── */

.pdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);  /* mobile: single column, prevents children from pushing layout wider than viewport */
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
  min-width: 0;
}


/* ─── GALLERY COLUMN ─── */

.pdp-gallery-col {
  position: relative;
  min-width: 0;
}

.pdp-gallery {
  position: relative;
}


/* ─── MAIN PRODUCT IMAGE ─── */

.pdp-main-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdp-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}
.pdp-main-img .placeholder-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(184, 137, 47, 0.35);
}


/* ─── THUMBNAIL STRIP ─── */

.pdp-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.pdp-thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}
.pdp-thumb.is-active,
.pdp-thumb:hover {
  opacity: 1;
  border-color: var(--gold-deep);
}
.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ─── PRODUCT REEL ("See it in motion") ─── */

.pdp-reel {
  margin-top: 1.75rem;
}
.pdp-reel-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.pdp-reel-counter {
  font-size: 0.6rem;
  letter-spacing: 1.8px;
  font-weight: 500;
  opacity: 0.6;
}
.pdp-reel-carousel {
  position: relative;
  width: 100%;
  max-width: 300px;
}
/* Multi-reel: widen the carousel so a faded sliver of the neighbor reel(s)
   peeks in on each side — natural "scroll to see more" affordance. */
.pdp-reel.has-multi .pdp-reel-carousel {
  max-width: 340px;
}
.pdp-reel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.pdp-reel-track::-webkit-scrollbar { display: none; }
.pdp-reel-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: opacity 0.3s ease;
}
.pdp-reel.has-multi .pdp-reel-slide {
  flex: 0 0 86%;          /* leaves ~7% peek on each side */
  padding: 0 4px;
  box-sizing: border-box;
}
.pdp-reel.has-multi .pdp-reel-slide:not(.is-active) {
  opacity: 0.55;
}
.pdp-reel.has-multi .pdp-reel-slide:not(.is-active) .pdp-reel-sound,
.pdp-reel.has-multi .pdp-reel-slide:not(.is-active) .pdp-reel-ig {
  visibility: hidden;     /* peek slides don't need their own controls cluttering the view */
}
.pdp-reel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--gold-light);
}
.pdp-reel-dots {
  display: flex;
  gap: 7px;
  margin-top: 12px;
  justify-content: center;
  max-width: 300px;
}
.pdp-reel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pdp-reel-dot.active {
  background: var(--gold-deep);
  transform: scale(1.3);
}
.pdp-reel-dot:hover {
  background: rgba(0, 0, 0, 0.35);
}
.pdp-reel-dot.active:hover {
  background: var(--gold-deep);
}
.pdp-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-reel-sound {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.pdp-reel-sound:hover {
  background: rgba(0, 0, 0, 0.78);
}
.pdp-reel-sound svg {
  width: 18px;
  height: 18px;
}
.pdp-reel-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: none;
}
.pdp-reel-ig svg {
  width: 15px;
  height: 15px;
}
.pdp-reel-ig:hover {
  color: var(--gold-deep);
}
@media (max-width: 720px) {
  .pdp-reel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pdp-reel-label {
    align-self: flex-start;
  }
  .pdp-reel-carousel {
    max-width: 270px;
  }
  .pdp-reel.has-multi .pdp-reel-carousel {
    max-width: 305px;   /* a hair wider for the peek; active slide stays ~262px */
  }
  .pdp-reel-dots {
    max-width: 270px;
  }
}


/* ─── INFO COLUMN ─── */

.pdp-info-col {
  display: flex;
  flex-direction: column;
  min-width: 0;                          /* allow horizontal-scroll children (pdp-recs) to be constrained, not push column wider */
}


/* ─── CATEGORY BREADCRUMB ─── */

.pdp-category {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}


/* ─── PRODUCT NAME ─── */

.pdp-name {
  font-family: var(--serif);
  font-size: 1.6rem;                    /* mobile size */
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.2rem;
}

.pdp-name-punjabi {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}


/* ─── PRICE BLOCK ─── */

.pdp-price-block {
  margin-bottom: 1.25rem;
}

.pdp-price {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.05rem;                   /* mobile size — softened further for elegance */
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums lining-nums;
}

.pdp-savings {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(42, 90, 58, 0.07);
  border: 1px solid rgba(42, 90, 58, 0.22);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  margin-top: 0.4rem;
}

.pdp-shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-top: 0.4rem;
  margin-left: 0.5rem;
}
.pdp-shipping-badge svg {
  width: 14px;
  height: 14px;
}


/* ─── DESCRIPTION ─── */

.pdp-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}


/* ─── METADATA GRID ─── */

.pdp-meta {
  display: grid;
  grid-template-columns: 1fr;           /* mobile: single column */
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(184, 137, 47, 0.20);
  border-radius: 12px;
}

.pdp-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.pdp-meta-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pdp-meta-value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
}


/* ─── BUNDLE INCLUDES ─── */

.pdp-bundle {
  margin-bottom: 1.5rem;
}

.pdp-bundle-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.pdp-bundle-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.pdp-bundle-list li {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink);
  background: rgba(253, 246, 227, 0.8);
  border: 1px solid var(--gold-light);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pdp-bundle-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-deep);
  flex: 0 0 5px;
}


/* ─── UPSELL TOGGLE CARD ─── */

.pdp-upsell {
  margin: 1.25rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--gold-light);
  border-radius: 14px;
}

.pdp-upsell-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.pdp-upsell-opt {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  border: 2px solid transparent;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;                       /* mobile: allow wrapping */
}
.pdp-upsell-opt:last-child {
  margin-bottom: 0;
}

.pdp-upsell-opt.is-selected {
  background: rgba(42, 90, 58, 0.08);
  border-color: var(--green-deep);
}

.pdp-upsell-opt input[type="radio"] {
  margin-top: 0.2rem;
  accent-color: var(--green-deep);
  flex: 0 0 auto;
}

.pdp-upsell-opt .opt-info {
  flex: 1;
  min-width: 0;
}

.pdp-upsell-opt .opt-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.pdp-upsell-opt .opt-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;                      /* mobile size */
  color: var(--ink);
}

.pdp-upsell-opt .opt-detail {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.pdp-upsell-opt .opt-savings {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(42, 90, 58, 0.07);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  margin-top: 0.3rem;
}


/* ─── CUSTOMIZATION / CONFIG SECTION ─── */

.pdp-config {
  margin: 1.25rem 0;
}

.pdp-config-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
}

.pdp-config-grid {
  display: grid;
  grid-template-columns: 1fr;           /* mobile: single column */
  gap: 0.75rem;
}

.pdp-config-field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}

.pdp-config-field input,
.pdp-config-field select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(184, 137, 47, 0.35);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.pdp-config-field select {
  background: rgba(255, 255, 255, 0.7) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%236b553a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  padding-right: 2rem;
}

.pdp-config-field input:focus,
.pdp-config-field select:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: #fff;
}

.pdp-config-field input::placeholder {
  color: var(--ink-soft);
  opacity: 0.6;
}


/* ─── BUY NOW BUTTON (gold) ─── */

.pdp-buy-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
  padding: 1rem 2rem;
  box-shadow: 0 6px 18px rgba(184, 137, 47, 0.35);
  transition: transform 0.25s, filter 0.25s;
  cursor: pointer;
  margin-top: 0.75rem;
}
.pdp-buy-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}
.pdp-buy-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  filter: none !important;
}


/* ─── REVIEW BADGE (above CTA, in price block) ─── */

.pdp-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.pdp-review-badge-stars {
  color: #d4a017;
  letter-spacing: 1px;
  font-size: 0.95rem;
}
.pdp-review-badge-avg {
  color: var(--ink);
  font-weight: 600;
}
.pdp-review-badge-count {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pdp-review-badge-count:hover {
  color: var(--ink);
}


/* ─── REQUIRED FIELD INDICATORS ─── */

.pdp-required {
  color: #c0392b;
  font-weight: 700;
  margin-left: 2px;
}
.pdp-config-hint {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 0.3rem;
  font-style: italic;
}


/* ─── STICKY MOBILE BUY BAR (mobile only) ─── */

.pdp-mobile-buy-bar {
  display: none;
}
@media (max-width: 768px) {
  .pdp-mobile-buy-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom)) 1rem;
    background: rgba(253, 246, 227, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(184, 137, 47, 0.35);
    box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .pdp-mobile-buy-bar.is-visible {
    transform: translateY(0);
  }
  .pdp-mobile-buy-bar-price {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .pdp-mobile-buy-bar-price-amount {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.005em;
    font-variant-numeric: tabular-nums lining-nums;
  }
  .pdp-mobile-buy-bar-price-label {
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .pdp-mobile-buy-btn {
    flex: 1;
    max-width: 60%;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
    border: 1px solid var(--gold-deep);
    border-radius: 999px;
    padding: 0.85rem 1rem;
    box-shadow: 0 4px 12px rgba(184, 137, 47, 0.35);
    cursor: pointer;
  }
  /* Add bottom padding to page so sticky bar doesn't cover footer/content */
  .pdp-page {
    padding-bottom: 6rem;
  }
}


/* ─── "OR" DIVIDER ─── */

.pdp-or {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0.75rem 0;
  position: relative;
}
.pdp-or::before,
.pdp-or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: var(--gold-light);
}
.pdp-or::before { left: 0; }
.pdp-or::after  { right: 0; }


/* ─── PDP TRUST STRIP — above-the-fold legitimacy signals ─── */

.pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(184, 137, 47, 0.22);
  border-radius: 12px;
}
.pdp-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.pdp-trust-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(184, 137, 47, 0.10);
  color: var(--gold-deep);
}
.pdp-trust-icon svg {
  width: 16px;
  height: 16px;
}
.pdp-trust-label {
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: var(--ink);
  line-height: 1.2;
  min-width: 0;
}
@media (min-width: 720px) {
  .pdp-trust-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }
  .pdp-trust-label { font-size: 0.72rem; }
}


/* ─── SUIT-ONLY: PEHRAWA5 PROMO BANNER ─── */

.pdp-promo-banner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.7rem 0.95rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink);
  background: linear-gradient(180deg, rgba(255,247,225,0.75) 0%, rgba(248,234,200,0.75) 100%);
  border: 1px solid var(--gold-light);
  border-radius: 12px;
  line-height: 1.35;
}
.pdp-promo-banner svg {
  color: var(--gold-deep);
}
.pdp-promo-banner strong {
  color: var(--gold-deep);
  letter-spacing: 0.5px;
}


/* ─── SUIT-ONLY: FAQ ACCORDION ─── */

.pdp-faq {
  margin: 1.5rem 0 0.5rem;
  padding: 1.1rem 1rem 0.5rem;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--gold-light);
  border-radius: 14px;
}
.pdp-faq-head {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.6rem;
  letter-spacing: 0.3px;
}
.pdp-faq-item {
  border-top: 1px solid rgba(184,137,47,0.18);
  padding: 0.65rem 0;
}
.pdp-faq-item:first-of-type {
  border-top: none;
}
.pdp-faq-item summary {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.15rem 0;
}
.pdp-faq-item summary::-webkit-details-marker { display: none; }
.pdp-faq-item summary::after {
  content: "+";
  color: var(--gold-deep);
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform 0.2s;
}
.pdp-faq-item[open] summary::after {
  content: "−";
}
.pdp-faq-item p {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0.5rem 0 0.25rem;
}


/* ─── WHATSAPP CTA BUTTON (green) ─── */

.pdp-cta {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #26d367 0%, #128c7e 100%);
  border: 1px solid #0e6e60;
  border-radius: 999px;
  padding: 1rem 2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25),
              0 8px 22px rgba(18, 140, 126, 0.4);
  transition: transform 0.25s, filter 0.25s;
  text-decoration: none;
  margin-top: 0.5rem;
}
.pdp-cta:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.08);
  color: #fff;
}
.pdp-cta svg {
  width: 20px;
  height: 20px;
}


/* ─── CHECKOUT FORM (slides in on Buy Now) ─── */

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

.pdp-checkout {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(184, 137, 47, 0.35);
  display: none;
}
.pdp-checkout.is-open {
  display: block;
  animation: pdpSlideIn 0.35s ease;
}

.pdp-checkout-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pdp-checkout-grid {
  display: grid;
  grid-template-columns: 1fr;           /* mobile: single column */
  gap: 0.75rem;
}

.pdp-checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pdp-checkout-field.full {
  grid-column: 1 / -1;
}

.pdp-checkout-field label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.pdp-checkout-field input,
.pdp-checkout-field select,
.pdp-checkout-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(184, 137, 47, 0.35);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}
.pdp-checkout-field input:focus,
.pdp-checkout-field select:focus,
.pdp-checkout-field textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  background: #fff;
}
.pdp-checkout-field textarea {
  resize: none;
  min-height: 60px;
}


/* ─── STRIPE PAY BUTTON (indigo) ─── */

.pdp-pay-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #635bff 0%, #4f46e5 100%);
  border: 1px solid #4338ca;
  border-radius: 999px;
  padding: 1.1rem 2rem;
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.35);
  transition: transform 0.25s, filter 0.25s;
  cursor: pointer;
  margin-top: 1rem;
}
.pdp-pay-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.1);
}
.pdp-pay-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  filter: none !important;
}


/* ─── SECURE PAYMENT NOTICE ─── */

.pdp-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
  letter-spacing: 0.5px;
}
.pdp-secure svg {
  width: 12px;
  height: 12px;
}


/* ─── ERROR MESSAGE ─── */

.pdp-error {
  color: #dc2626;
  font-family: var(--sans);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 0.75rem;
  display: none;
}
.pdp-error.is-visible {
  display: block;
}


/* ─── "COMPLETE THE LOOK" UPSELL BANNER ─── */

.pdp-complete {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(42, 90, 58, 0.08) 0%, rgba(184, 137, 47, 0.08) 100%);
  border: 1px solid rgba(42, 90, 58, 0.25);
  border-radius: 14px;
  text-align: center;
}
.pdp-complete h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
  margin: 0 0 0.4rem;
}
.pdp-complete p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin: 0 0 0.75rem;
}
.pdp-complete a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-deep);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
  transition: color 0.2s;
}
.pdp-complete a:hover {
  color: var(--ink);
}


/* ─── RECOMMENDATIONS / RECENTLY VIEWED SECTIONS ─── */

.pdp-recs {
  margin: 1.5rem 0 1.25rem;
  padding: 0;
  min-width: 0;
  max-width: 100%;
}
.pdp-recently {
  max-width: 1120px;
  margin: 2.5rem auto 0;
  padding: 0 1.25rem;
  min-width: 0;
}

.pdp-recs-title,
.pdp-recs-head {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.pdp-recs-head {
  text-align: center;
  font-size: 1.5rem;
}

/* Both 'You May Also Like' and 'Recently Viewed' use a horizontal scroll
   row (like the homepage product rows) — consistent layout, no collapse */
.pdp-recs-grid,
.pdp-recs-scroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) transparent;
  padding: 0.4rem 0 0.85rem;
}
.pdp-recs-grid::-webkit-scrollbar,
.pdp-recs-scroll::-webkit-scrollbar { height: 6px; }
.pdp-recs-grid::-webkit-scrollbar-thumb,
.pdp-recs-scroll::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }

/* Cards in the rec rows use the standard card sizing (3:4 image, 220px-ish wide) */
.pdp-recs .product-card {
  flex: 0 0 200px !important;
  width: 200px !important;
  min-width: 200px !important;
  height: auto !important;
  min-height: auto !important;
  padding: 0.6rem;
  border-radius: 12px;
  transform: none !important;
  scroll-snap-align: start;
}
.pdp-recs .product-card .product-foot {
  margin-top: 0.5rem;
  text-align: center;
}
.pdp-recs .product-card .product-name {
  font-size: 0.82rem;
  line-height: 1.25;
  font-style: italic;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.05em;
}
.pdp-recs .product-card .product-price {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.pdp-recs .product-card .add-cart {
  font-size: 0.62rem;
  padding: 0.4rem;
  letter-spacing: 1px;
}
.pdp-recs .product-card .heart-btn { display: none; }
.pdp-recs .product-card:hover {
  transform: translateY(-3px) scale(1.02) !important;
}

/* Mobile: slightly tighter cards but still readable (no width:0 collapse!) */
@media (max-width: 720px) {
  .pdp-recently { padding: 0 0.5rem; }
  .pdp-recs-title, .pdp-recs-head { font-size: 1.2rem; }
  .pdp-recs .product-card {
    flex: 0 0 165px !important;
    width: 165px !important;
    min-width: 165px !important;
    padding: 0.5rem;
  }
  .pdp-recs .product-card .product-name { font-size: 0.74rem; }
  .pdp-recs .product-card .product-price { font-size: 0.78rem; }
  .pdp-recs .product-card .add-cart { font-size: 0.55rem; padding: 0.35rem; }
  .pdp-recs-grid, .pdp-recs-scroll { gap: 0.6rem; }
}


/* ─── LOADING STATE ─── */

.pdp-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  gap: 1rem;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.pdp-loading::before {
  content: "";
  width: 36px;
  height: 36px;
  border: 3px solid var(--gold-light);
  border-top-color: var(--gold-deep);
  border-radius: 50%;
  animation: pdpSpin 0.7s linear infinite;
}
@keyframes pdpSpin {
  to { transform: rotate(360deg); }
}


/* ─── 404 / NOT FOUND STATE ─── */

.pdp-notfound {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
}
.pdp-notfound h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.pdp-notfound p {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}
.pdp-notfound a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.pdp-notfound a:hover {
  color: var(--ink);
}


/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════ */


/* ─── TABLET + (≥721px): 2-column meta grid, 2-column config/checkout ─── */

@media (min-width: 721px) {
  .pdp-meta {
    grid-template-columns: 1fr 1fr;
  }
  .pdp-config-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pdp-checkout-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pdp-upsell-opt {
    flex-wrap: nowrap;
  }
  .pdp-upsell-opt .opt-price {
    font-size: 0.85rem;
  }
  .pdp-thumb {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }
  .pdp-name {
    font-size: 2.2rem;
  }
  .pdp-price {
    font-size: 1.3rem;
  }
}


/* ─── DESKTOP (≥961px): 2-column page layout, gallery sticks to top ─── */

@media (min-width: 961px) {
  .pdp-layout {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 0 2rem 3rem;
  }

  .pdp-gallery-col {
    position: sticky;
    top: 100px;                          /* below nav + breathing room */
    align-self: start;
  }

  .pdp-back {
    padding: 1.25rem 2rem;
  }

  .pdp-recs {
    padding: 0 2rem;
    margin-top: 3rem;
  }

  /* Desktop: 4-column recommendation grid */
  .pdp-recs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .pdp-recs .product-card {
    flex: none;
    scroll-snap-align: unset;
  }
}


/* ─── LARGE DESKTOP (≥1200px): more generous spacing ─── */

@media (min-width: 1200px) {
  .pdp-layout {
    gap: 3rem;
    padding: 0 2.5rem 3.5rem;
  }
}


/* ─── CUSTOMER REVIEWS ─── */

.pdp-reviews {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
}
.pdp-reviews-head {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.pdp-reviews-summary {
  margin-bottom: 1.5rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.pdp-reviews-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.pdp-reviews-avg {
  font-weight: 600;
  color: var(--ink);
}
.pdp-reviews-count {
  color: var(--ink-soft);
}
.pdp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.pdp-review-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(184,137,47,0.15);
  border-radius: 12px;
  overflow: hidden;
}
.pdp-review-photo img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  display: block;
}
.pdp-review-body {
  padding: 1rem 1.25rem;
}
.pdp-review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.pdp-review-text {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pdp-review-author {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-style: italic;
}
.pdp-review-location {
  color: var(--gold-deep);
}

/* Recently viewed uses pdp-recs styling via shared class */
.pdp-recently {
  border-top: 1px solid rgba(184,137,47,0.12);
  margin-top: 0;
}

@media (min-width: 721px) {
  .pdp-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 961px) {
  .pdp-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pdp-reviews-head {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .pdp-reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  .pdp-checkout.is-open {
    animation: none;
  }
  .pdp-loading::before {
    animation-duration: 2s;
  }
}

/* ─── GALLERY: slide arrows + slide hint + zoom button ─────────────────── */
.pdp-main-img { position: relative; }
.pdp-main-img img { cursor: zoom-in; }
.pdp-zoom-btn {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  width: 40px; height: 40px; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253, 246, 227, 0.92);
  border: 1px solid var(--gold-light);
  border-radius: 999px; color: var(--ink);
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(58, 42, 23, 0.18);
}
.pdp-zoom-btn:hover { background: #fff; color: var(--gold-deep); transform: scale(1.05); }
.pdp-zoom-btn svg { width: 18px; height: 18px; }
.pdp-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; padding: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253, 246, 227, 0.92);
  border: 1px solid var(--gold-deep); border-radius: 999px;
  color: var(--gold-deep); cursor: pointer;
  box-shadow: 0 4px 14px rgba(58, 42, 23, 0.22);
  transition: background 0.2s, transform 0.2s;
}
.pdp-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.pdp-nav:active { transform: translateY(-50%) scale(0.96); }
.pdp-nav-prev { left: 10px; }
.pdp-nav-next { right: 10px; }
.pdp-nav svg { width: 18px; height: 18px; }
.pdp-slide-hint {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink);
  background: rgba(253, 246, 227, 0.94);
  border: 1px solid var(--gold-light); border-radius: 999px;
  padding: 0.4rem 0.8rem; z-index: 3;
  box-shadow: 0 4px 14px rgba(58, 42, 23, 0.18);
  animation: pdpHintPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
.pdp-slide-hint.is-fading { opacity: 0; transition: opacity 0.5s; }
.pdp-slide-hint svg { color: var(--gold-deep); }
@keyframes pdpHintPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.95; }
  50% { transform: translateX(-50%) translateY(-3px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .pdp-slide-hint { animation: none; }
}

/* ─── ZOOM MODAL (full-view overlay) ─────────────────────────────────── */
html.pdp-zoom-open, html.pdp-zoom-open body { overflow: hidden; }
.pdp-zoom-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(20, 14, 5, 0.92);
  display: flex; align-items: center; justify-content: center;
  animation: pdpZoomFadeIn 0.2s ease-out;
}
.pdp-zoom-modal.is-closing { animation: pdpZoomFadeOut 0.2s ease-in forwards; }
@keyframes pdpZoomFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pdpZoomFadeOut { to { opacity: 0; } }
.pdp-zoom-stage {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  padding: 3rem 1rem;
}
.pdp-zoom-stage img {
  max-width: 100%; max-height: 100%;
  object-fit: contain; user-select: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.pdp-zoom-close {
  position: absolute; top: 14px; right: 14px;
  width: 44px; height: 44px; padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff; border-radius: 999px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.pdp-zoom-close:hover { background: rgba(255, 255, 255, 0.22); }
.pdp-zoom-close svg { width: 20px; height: 20px; }
.pdp-zoom-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; padding: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff; border-radius: 999px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.pdp-zoom-nav:hover { background: rgba(255, 255, 255, 0.22); }
.pdp-zoom-prev { left: 18px; }
.pdp-zoom-next { right: 18px; }
.pdp-zoom-nav svg { width: 22px; height: 22px; }
.pdp-zoom-counter {
  position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase; color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.35rem 0.85rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
@media (max-width: 720px) {
  .pdp-zoom-stage { padding: 4rem 0 4rem; }
  .pdp-zoom-prev { left: 10px; width: 40px; height: 40px; }
  .pdp-zoom-next { right: 10px; width: 40px; height: 40px; }
}

/* ─── UPSELL: AG1-style package cards ─────────────────────────────────── */
.pdp-upsell-title {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.pdp-upsell-opt {
  position: relative;
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid rgba(184, 137, 47, 0.25);
  background: rgba(253, 246, 227, 0.55);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  margin-bottom: 0.65rem;
}
.pdp-upsell-opt:last-child { margin-bottom: 0; }
.pdp-upsell-opt:hover { border-color: var(--gold-deep); }
.pdp-upsell-opt.is-selected {
  border-color: var(--green-deep);
  background: rgba(42, 90, 58, 0.06);
  box-shadow: 0 0 0 3px rgba(42, 90, 58, 0.10);
}
.pdp-upsell-opt input[type="radio"] {
  position: absolute; left: 1rem; top: 1.1rem;
  accent-color: var(--green-deep);
}
.pdp-upsell-opt .opt-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 0.75rem; padding-left: 1.7rem;
}
.pdp-upsell-opt .opt-info { flex: 1 1 auto; min-width: 0; }
.pdp-upsell-opt .opt-label {
  font-family: var(--sans);
  font-weight: 600; font-size: 1rem;
  color: var(--ink); line-height: 1.25;
}
.pdp-upsell-opt .opt-detail {
  font-family: var(--sans); font-size: 0.78rem;
  color: var(--ink-soft); margin-top: 0.2rem;
}
.pdp-upsell-opt .opt-detail-strong { color: var(--green-deep); font-weight: 600; }
.pdp-upsell-opt .opt-price-block {
  flex: 0 0 auto; text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.2rem;
}
.pdp-upsell-opt .opt-compare {
  font-family: var(--sans); font-size: 0.72rem;
  color: var(--ink-soft); text-decoration: line-through;
}
.pdp-upsell-opt .opt-price {
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums lining-nums;
}
.pdp-upsell-opt .opt-save-pill {
  display: inline-block;
  font-family: var(--sans); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.9px; text-transform: uppercase;
  color: #fff; background: var(--green-deep);
  border-radius: 999px; padding: 0.2rem 0.6rem;
}
.pdp-upsell-best { padding-top: 1.4rem; }
.pdp-upsell-best .opt-best-badge {
  position: absolute; top: -10px; left: 14px;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, var(--gold-deep) 0%, #8a6420 100%);
  border-radius: 999px; padding: 0.25rem 0.7rem;
  box-shadow: 0 3px 8px rgba(58, 42, 23, 0.25);
}
@media (max-width: 720px) {
  .pdp-upsell-opt .opt-price { font-size: 0.85rem; }
  .pdp-upsell-opt .opt-row { padding-left: 1.5rem; }
}

/* ─── ACCORDION (AG1-style collapsibles below CTA) ────────────────────── */
.pdp-accord {
  margin: 2rem 0 1rem;
  border-top: 1px solid rgba(184, 137, 47, 0.25);
}
.pdp-accord-item {
  border-bottom: 1px solid rgba(184, 137, 47, 0.25);
}
.pdp-accord-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 0.25rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans);
  font-weight: 600; font-size: 1rem;
  color: var(--ink);
  user-select: none;
}
.pdp-accord-item summary::-webkit-details-marker { display: none; }
.pdp-accord-icon {
  position: relative;
  flex: 0 0 22px; width: 22px; height: 22px;
  border-radius: 999px; border: 1.5px solid var(--ink);
  transition: transform 0.2s, border-color 0.2s;
}
.pdp-accord-icon::before, .pdp-accord-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.pdp-accord-icon::before { width: 10px; height: 1.5px; transform: translate(-50%, -50%); }
.pdp-accord-icon::after { width: 1.5px; height: 10px; transform: translate(-50%, -50%); }
.pdp-accord-item[open] .pdp-accord-icon { border-color: var(--gold-deep); }
.pdp-accord-item[open] .pdp-accord-icon::before { background: var(--gold-deep); }
.pdp-accord-item[open] .pdp-accord-icon::after { opacity: 0; }
.pdp-accord-body {
  padding: 0 0.25rem 1.1rem;
  font-family: var(--sans);
  font-size: 0.92rem; line-height: 1.55;
  color: var(--ink-soft);
}
.pdp-accord-body p { margin: 0 0 0.7rem; }
.pdp-accord-body p:last-child { margin-bottom: 0; }
.pdp-accord-body ul { margin: 0; padding-left: 1.1rem; }
.pdp-accord-body ul li { margin-bottom: 0.4rem; }
.pdp-accord-body strong { color: var(--ink); font-weight: 600; }
.pdp-accord-body .pdp-meta {
  margin-top: 0.6rem; padding: 0.6rem 0.8rem;
  background: rgba(245, 234, 208, 0.5);
  border-radius: 8px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 0.4rem 0.8rem;
}
.pdp-accord-body .pdp-meta-item { display: flex; flex-direction: column; gap: 0.1rem; }
.pdp-accord-body .pdp-meta-label { font-size: 0.7rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink-soft); }
.pdp-accord-body .pdp-meta-value { font-size: 0.88rem; color: var(--ink); font-weight: 500; }
/* Nested FAQ details inside the FAQ accordion */
.pdp-faq-sub { border-top: 1px dashed rgba(184, 137, 47, 0.25); padding: 0.65rem 0; }
.pdp-faq-sub:first-child { border-top: 0; padding-top: 0; }
.pdp-faq-sub summary {
  list-style: none; cursor: pointer;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
}
.pdp-faq-sub summary::-webkit-details-marker { display: none; }
.pdp-faq-sub summary::after { content: '+'; font-size: 1.1rem; color: var(--gold-deep); margin-left: 0.5rem; transition: transform 0.2s; }
.pdp-faq-sub[open] summary::after { content: '−'; }
.pdp-faq-sub p { margin: 0.4rem 0 0; font-size: 0.88rem; color: var(--ink-soft); }

/* PDP reviews carousel: full-width on PDPs, no horizontal padding from .section */
#pdp-reviews-carousel { width: 100%; }
#pdp-reviews-carousel .marquee { padding-left: 0; padding-right: 0; }
