/* ============================================================
   PRODUCT DETAIL PAGE — product.css  ·  PREMIUM REDESIGN
   Extends styles.css (variables, btn classes, resets inherited)
   ============================================================ */

/* ── PAGE-SCOPED DESIGN TOKENS ─────────────────────────────── */
.product-page {
  --pd-cream:        #fdf7ee;
  --pd-cream-mid:    #f5e8d4;
  --pd-cream-deep:   #ecdcc6;
  --pd-dark:         #120600;
  --pd-mahogany:     #1e0a01;
  --pd-gold:         #d4a017;
  --pd-gold-light:   #f0c040;
  --pd-saffron:      #e8720c;
  --pd-wood:         #5c3317;
  --pd-text-body:    #4a2e18;
  --pd-text-muted:   #8a6548;
  --pd-shadow-warm:  rgba(59, 31, 14, 0.10);
  --pd-shadow-deep:  rgba(18, 6, 0, 0.20);
}

/* ── 1. PAGE BASE ─────────────────────────────────────────── */
.product-page {
  background:
    radial-gradient(ellipse 80% 40% at 75% 0%,   rgba(212,160,23,0.045) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 100%, rgba(232,114,12,0.030) 0%, transparent 55%),
    #fdf7ee;
  min-height: 100vh;
}

/* Subtle grain overlay for the whole page */
.product-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.022'/%3E%3C/svg%3E");
  opacity: 1;
}

/* Hide global floating buttons on product page */
.product-page .wa-float { display: none !important; }
.product-page .lp-float { display: none !important; }

/* ── 2. HEADER ────────────────────────────────────────────── */
.pd-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12, 4, 0, 0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(212,160,23,0.22);
  box-shadow:
    0 1px 0 rgba(212,160,23,0.06),
    0 6px 40px rgba(0,0,0,0.48);
}

.pd-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pd-header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 0.24s;
}

.pd-header__logo:hover { opacity: 0.78; }

.pd-header__logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(212,160,23,0.28));
}

.pd-header__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-left: 1px solid rgba(212,160,23,0.24);
  padding-left: 14px;
}

.pd-header__logo-text {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #d4a017;
  letter-spacing: 0.04em;
  line-height: 1;
}

.pd-header__logo-sub {
  font-size: 0.56rem;
  font-weight: 700;
  color: rgba(212,160,23,0.4);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  line-height: 1;
}

.pd-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.79rem;
  font-weight: 600;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  transition: color 0.22s, border-color 0.22s, background 0.22s, transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.pd-back-btn svg {
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1);
}

.pd-back-btn:hover {
  color: #d4a017;
  border-color: rgba(212,160,23,0.38);
  background: rgba(212,160,23,0.06);
  transform: none;
}

.pd-back-btn:hover svg { transform: translateX(-3px); }

/* ── 3. MAIN CONTAINER ────────────────────────────────────── */
.pd-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 36px 100px;
  position: relative;
  z-index: 1;
}

/* ── 4. STATE SCREENS ─────────────────────────────────────── */
.pd-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 60vh;
  text-align: center;
  color: #6b4226;
}

.pd-state[hidden] { display: none; }

.pd-state__spinner {
  width: 52px;
  height: 52px;
  border: 2.5px solid rgba(212,160,23,0.14);
  border-top-color: #d4a017;
  border-radius: 50%;
  animation: pdSpin 0.9s linear infinite;
}

@keyframes pdSpin { to { transform: rotate(360deg); } }

.pd-state__icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(92,51,23,0.22);
}

.pd-state__text {
  font-size: 0.9rem;
  color: #9a7b5c;
  margin: 0;
  letter-spacing: 0.04em;
}

.pd-state--error h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #1a0800;
  margin: 0;
  letter-spacing: 0.02em;
}

/* ── 5. BREADCRUMB ────────────────────────────────────────── */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.pd-breadcrumb__link {
  font-size: 0.77rem;
  font-weight: 500;
  color: #9a7b5c;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}

.pd-breadcrumb__link:hover { color: #d4a017; }

.pd-breadcrumb__sep {
  color: rgba(92,51,23,0.26);
  font-size: 0.78rem;
}

.pd-breadcrumb__current {
  font-size: 0.77rem;
  font-weight: 700;
  color: #5c3317;
  letter-spacing: 0.02em;
}

/* ── 6. HERO SECTION ──────────────────────────────────────── */
.pd-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  margin-bottom: 96px;
}

@media (min-width: 768px) {
  .pd-hero {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
    gap: 64px;
  }
}

/* Hero entrance animation (triggers when #pd-content becomes visible) */
@keyframes pdEntry {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

.pd-gallery, .pd-info { opacity: 0; }

#pd-content:not([hidden]) .pd-breadcrumb {
  animation: pdEntry 0.55s 0.02s ease both;
}

#pd-content:not([hidden]) .pd-gallery {
  animation: pdEntry 0.7s 0.08s ease both;
}

#pd-content:not([hidden]) .pd-info {
  animation: pdEntry 0.7s 0.22s ease both;
}

/* ── 7. IMAGE GALLERY ─────────────────────────────────────── */
.pd-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 88px;
}

.pd-gallery__main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #f0e0cc 0%, #e4cdb4 100%);
  box-shadow:
    0 1px 2px  rgba(18,6,0,0.06),
    0 4px 12px rgba(18,6,0,0.09),
    0 16px 40px rgba(18,6,0,0.13),
    0 36px 80px rgba(18,6,0,0.10),
    0 0 0 1px rgba(92,51,23,0.07);
  cursor: zoom-in;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Gold accent top edge */
.pd-gallery__main-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(212,160,23,0.9) 0%, rgba(212,160,23,0.35) 55%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* Subtle vignette on image bottom */
.pd-gallery__main-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(18,6,0,0.12), transparent);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.pd-gallery__main-wrap:hover {
  box-shadow:
    0 2px 4px  rgba(18,6,0,0.08),
    0 8px 20px rgba(18,6,0,0.14),
    0 24px 56px rgba(18,6,0,0.18),
    0 48px 96px rgba(18,6,0,0.12),
    0 0 0 1px rgba(212,160,23,0.2);
  transform: translateY(-4px);
}

.pd-gallery__main-wrap:hover::after { opacity: 1; }

.pd-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pd-gallery__main-wrap:hover .pd-gallery__main-img {
  transform: scale(1.05);
}

/* Zoom hint badge */
.pd-gallery__zoom-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(12,4,0,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255,255,255,0.88);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid rgba(212,160,23,0.24);
  z-index: 4;
}

.pd-gallery__main-wrap:hover .pd-gallery__zoom-hint { opacity: 1; }

/* ── 7a. SLIDING TRACK ────────────────────────────────────── */
.pd-gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
}

.pd-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pd-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ── 7b. THUMBNAILS ───────────────────────────────────────── */
.pd-gallery__thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-gallery__thumbs[hidden] { display: none; }

.pd-thumb {
  width: 76px;
  height: 76px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: linear-gradient(145deg, #f0e0cc, #e4cdb4);
  transition: border-color 0.24s, transform 0.24s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.24s;
  flex-shrink: 0;
  outline: none;
  box-shadow: 0 2px 8px rgba(18,6,0,0.09);
}

.pd-thumb:hover {
  border-color: rgba(212,160,23,0.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(18,6,0,0.15);
}

.pd-thumb--active {
  border-color: #d4a017;
  box-shadow: 0 0 0 1px rgba(212,160,23,0.38), 0 4px 16px rgba(18,6,0,0.14);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 7c. DOT INDICATORS ───────────────────────────────────── */
.pd-gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
}

.pd-gallery__dots[hidden] { display: none; }

.pd-gallery__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(92,51,23,0.16);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s;
  flex-shrink: 0;
}

.pd-gallery__dot:hover { background: rgba(92,51,23,0.36); }

.pd-gallery__dot--active {
  background: #d4a017;
  transform: scale(1.55);
}

/* ── 7d. GALLERY SPECS SLIDE ──────────────────────────────── */
.pd-gallery__specs-slide {
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #1c0901 0%, #341709 40%, #1c0901 100%);
  position: relative;
  padding: 26px 24px 16px;
  box-sizing: border-box;
  cursor: default;
}

.pd-gallery__specs-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 8% 92%,  rgba(212,160,23,0.22) 0%, transparent 48%),
    radial-gradient(ellipse at 92% 8%,  rgba(232,114,12,0.14) 0%, transparent 44%);
  pointer-events: none;
}

.pd-gallery__specs-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    91deg,
    transparent 0px, transparent 3px,
    rgba(255,255,255,0.013) 3px, rgba(255,255,255,0.013) 4px
  );
  pointer-events: none;
}

.pd-specs-slide__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pd-specs-slide__header-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a017;
}

.pd-specs-slide__title {
  font-family: Georgia, serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d4a017;
}

.pd-specs-slide__rule {
  height: 1px;
  background: linear-gradient(90deg, rgba(212,160,23,0.55), rgba(212,160,23,0.08), transparent);
  border: none;
  margin: 0 0 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pd-specs-slide__list {
  list-style: none;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: none;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.pd-specs-slide__list::-webkit-scrollbar { display: none; }

.pd-specs-slide__row {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pd-specs-slide__row:last-child { border-bottom: none; }

.pd-specs-slide__key {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.pd-specs-slide__val {
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.35;
  text-align: right;
  word-break: break-word;
}

.pd-specs-slide__footer {
  margin-top: 10px;
  font-size: 0.57rem;
  font-style: italic;
  color: rgba(255,255,255,0.17);
  text-align: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Specs thumbnail */
.pd-thumb--specs {
  background: linear-gradient(135deg, #1c0901 0%, #311508 100%);
  border-color: rgba(212,160,23,0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.pd-thumb--specs:hover         { border-color: rgba(212,160,23,0.65); }
.pd-thumb--specs.pd-thumb--active { border-color: #d4a017; }

.pd-thumb__specs-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a017;
}

.pd-thumb__specs-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #d4a017;
}

/* ── 8. LIGHTBOX ──────────────────────────────────────────── */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(8, 3, 0, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  animation: pdFadeIn 0.24s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pd-lightbox[hidden] { display: none; }

@keyframes pdFadeIn { from { opacity: 0; } to { opacity: 1; } }

.pd-lightbox__img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(212,160,23,0.14),
    0 32px 96px rgba(0,0,0,0.85);
  cursor: default;
  animation: pdZoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes pdZoomIn {
  from { transform: scale(0.84); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}

.pd-lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.88);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.2s;
}

.pd-lightbox__close:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(212,160,23,0.4);
  transform: scale(1.12) rotate(90deg);
}

/* ── 9. PRODUCT INFO ──────────────────────────────────────── */
.pd-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Meta row */
.pd-info__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Category badge */
.pd-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f5e8d4, #eedfc8);
  color: #5c3317;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(92,51,23,0.16);
  margin: 0;
  box-shadow: 0 1px 4px rgba(18,6,0,0.06);
}

.pd-category-badge[hidden] { display: none; }

/* Handmade tag */
.pd-handmade-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212,160,23,0.13), rgba(232,114,12,0.08));
  border: 1px solid rgba(212,160,23,0.32);
  color: #7a5000;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 1px 4px rgba(212,160,23,0.1);
}

/* Product name */
.pd-name {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  font-weight: 800;
  color: #1a0800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0;
}

/* Gold ornamental underline below product name */
.pd-name::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, #d4a017, rgba(212,160,23,0.4), transparent);
  margin-top: 14px;
  border-radius: 2px;
}

/* Price section */
.pd-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0 4px;
  border-top: 1px solid rgba(212,160,23,0.18);
}

.pd-price-wrap[hidden] { display: none; }

/* Eyebrow label — only visible in discounted state */
.pd-price__eyebrow {
  margin: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8860b;
  opacity: 0.8;
}

/* Price row */
.pd-price__row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

/* Final price */
.pd-price__value {
  font-family: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 800;
  color: #3d1a00;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pd-price-wrap--discounted .pd-price__value {
  color: #c05500;
}

/* Strikethrough original */
.pd-price__original {
  font-size: 1rem;
  color: #b09878;
  text-decoration: line-through;
  text-decoration-color: rgba(176,152,120,0.6);
  font-weight: 400;
}

.pd-price__original[hidden] { display: none; }

/* Discount badge */
.pd-discount-badge {
  display: inline-block;
  background: #c05500;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.pd-discount-badge[hidden] { display: none; }

/* Savings line */
.pd-price__savings {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: #3a7d44;
}

.pd-price__savings strong {
  font-weight: 700;
  color: #2e6636;
}

.pd-price__savings-icon {
  font-size: 0.7rem;
  font-weight: 800;
  color: #3a7d44;
  flex-shrink: 0;
}

/* Price note */
.pd-price__note {
  font-size: 0.74rem;
  color: #8a6548;
  margin: 0;
  font-style: italic;
  opacity: 0.75;
}

/* Short description */
.pd-short-desc {
  font-size: 0.98rem;
  color: #4a2e18;
  line-height: 1.95;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Divider */
.pd-info__divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(212,160,23,0.22), rgba(92,51,23,0.1), transparent);
}

/* CTA buttons */
.pd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.pd-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-size: 0.89rem;
  font-weight: 700;
  border-radius: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex: 0 0 auto;
  transition:
    transform 0.26s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.26s ease,
    opacity    0.2s ease;
  box-shadow:
    0 4px 14px rgba(37,211,102,0.22),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.pd-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(37,211,102,0.32),
    inset 0 1px 0 rgba(255,255,255,0.16);
}

.pd-btn-primary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(37,211,102,0.16);
  transition-duration: 0.08s;
}

.pd-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  font-size: 0.87rem;
  font-weight: 700;
  border-radius: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex: 0 0 auto;
  transition:
    transform 0.26s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.26s ease,
    opacity    0.2s ease;
  box-shadow:
    0 4px 14px rgba(232,114,12,0.18),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.pd-btn-secondary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 24px rgba(232,114,12,0.28),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

.pd-btn-secondary:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 2px 8px rgba(232,114,12,0.14);
  transition-duration: 0.08s;
}

/* ── PREMIUM ACTION BUTTONS (product-page scope) ─────────── */

/* Both buttons fill the row equally and go pill-shaped */
.product-page .pd-actions {
  gap: 14px;
}

.product-page .pd-actions .pd-btn-primary,
.product-page .pd-actions .pd-btn-secondary {
  flex: 1;
  min-width: 150px;
  border-radius: 999px;
  padding: 16px 28px;
  position: relative;
  overflow: hidden;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
}

/* Shimmer sweep — fires on hover */
.product-page .pd-actions .pd-btn-primary::after,
.product-page .pd-actions .pd-btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-18deg);
  transition: left 0.58s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}

.product-page .pd-actions .pd-btn-primary:hover::after,
.product-page .pd-actions .pd-btn-secondary:hover::after {
  left: 130%;
}

/* ─ WhatsApp: deep forest green → emerald ─────────────────── */
.product-page .pd-actions .btn--whatsapp {
  background: linear-gradient(145deg, #0c4220 0%, #157a3c 48%, #1ea84e 82%, #25c558 100%);
  border: 1px solid rgba(37,211,102,0.22);
  box-shadow:
    0 4px 18px rgba(21,122,60,0.4),
    0 2px 6px  rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.22),
    inset 0 -1px 0 rgba(0,0,0,0.12);
  color: #fff;
}

.product-page .pd-actions .btn--whatsapp:hover {
  background: linear-gradient(145deg, #157a3c 0%, #1ea84e 48%, #25d366 82%, #2fdf70 100%);
  border-color: rgba(37,211,102,0.4);
  box-shadow:
    0 8px 28px rgba(21,122,60,0.48),
    0 0 0 3px rgba(37,211,102,0.12),
    inset 0 1px 0 rgba(255,255,255,0.26),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}

.product-page .pd-actions .btn--whatsapp:active {
  background: linear-gradient(145deg, #0c4220 0%, #126633 100%);
  box-shadow:
    0 2px 10px rgba(21,122,60,0.32),
    inset 0 2px 6px rgba(0,0,0,0.2);
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

/* ─ Call: deep mahogany → warm saffron ───────────────────── */
.product-page .pd-actions .btn--call {
  background: linear-gradient(145deg, #5c1c00 0%, #a04000 48%, #c85c0c 82%, #d4700e 100%);
  border: 1px solid rgba(212,112,14,0.26);
  box-shadow:
    0 4px 18px rgba(160,64,0,0.38),
    0 2px 6px  rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.14);
  color: #fff;
}

.product-page .pd-actions .btn--call:hover {
  background: linear-gradient(145deg, #7a2800 0%, #be5008 48%, #e0700e 82%, #e8820c 100%);
  border-color: rgba(232,114,12,0.4);
  box-shadow:
    0 8px 28px rgba(200,92,12,0.46),
    0 0 0 3px rgba(232,114,12,0.12),
    inset 0 1px 0 rgba(255,255,255,0.24),
    inset 0 -1px 0 rgba(0,0,0,0.1);
}

.product-page .pd-actions .btn--call:active {
  background: linear-gradient(145deg, #5c1c00 0%, #8b3600 100%);
  box-shadow:
    0 2px 10px rgba(160,64,0,0.3),
    inset 0 2px 6px rgba(0,0,0,0.22);
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.08s;
}

/* Mobile: keep pill shape but stack vertically */
@media (max-width: 767px) {
  .product-page .pd-actions .pd-btn-primary,
  .product-page .pd-actions .pd-btn-secondary {
    border-radius: 999px;
    flex: none;
    width: 100%;
  }
}

/* ── Share button ─────────────────────────────────────────── */
.pd-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border: 1px solid rgba(212,160,23,0.28);
  border-radius: 999px;
  background: transparent;
  color: rgba(212,160,23,0.8);
  font-size: 0.82rem;
  font-family: inherit;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s;
}

.pd-share-btn:hover {
  background: rgba(212,160,23,0.1);
  border-color: rgba(212,160,23,0.5);
  color: #d4a017;
  transform: translateY(-2px);
}

.pd-share-btn:active {
  transform: translateY(0);
}

.pd-share-btn__confirm {
  font-size: 0.78rem;
  color: #4caf50;
  min-width: 0;
}

.pd-share-btn--copied .pd-share-btn__label {
  display: none;
}

.pd-share-btn--copied svg {
  display: none;
}

/* Quick specs highlights */
.pd-highlights {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.22);
  border-top: 2px solid rgba(212,160,23,0.6);
  background: linear-gradient(148deg, #140700 0%, #1e0c02 50%, #140700 100%);
  box-shadow:
    0 3px 14px rgba(0,0,0,0.24),
    0 8px 32px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}

.pd-highlights[hidden] { display: none; }

/* Ambient glow inside highlights panel */
.pd-highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(212,160,23,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(232,114,12,0.07) 0%, transparent 48%);
  pointer-events: none;
  z-index: 0;
}

.pd-highlights__title {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(212,160,23,0.7);
  margin: 0;
  padding: 16px 20px 14px;
  border-bottom: 1px solid rgba(212,160,23,0.14);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tiny gold diamond before title */
.pd-highlights__title::before {
  content: '◆';
  font-size: 0.4rem;
  color: rgba(212,160,23,0.6);
}

.pd-highlights__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 1;
}

.pd-highlights__list li {
  font-size: 0.82rem;
  color: rgba(245,232,208,0.82);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.5;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(212,160,23,0.08);
  border-right: 1px solid rgba(212,160,23,0.08);
  transition: background 0.2s;
}

.pd-highlights__list li:nth-child(even) {
  border-right: none;
}

.pd-highlights__list li:nth-last-child(-n+2) {
  border-bottom: none;
}

.pd-highlights__list li:hover {
  background: rgba(212,160,23,0.07);
}

.pd-highlights__list li::before {
  content: '›';
  color: #d4a017;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

/* Trust strip */
.pd-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(92,51,23,0.09);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #fdf7ee);
  box-shadow: 0 2px 14px rgba(18,6,0,0.05);
}

.pd-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 10px;
  text-align: center;
  border-right: 1px solid rgba(92,51,23,0.07);
  transition: background 0.24s;
}

.pd-trust-item:last-child { border-right: none; }

.pd-trust-item:hover { background: rgba(253,243,226,0.85); }

.pd-trust-item__icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a4f00;
  flex-shrink: 0;
}

.pd-trust-item__text {
  font-size: 0.59rem;
  font-weight: 800;
  color: #5c3317;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* ── 21. LIVE VIDEO PREVIEW CARD ──────────────────────────── */
.pd-live-preview-card {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(150deg, #120600 0%, #271005 50%, #1e0a01 100%);
  border: 1px solid rgba(212,160,23,0.26);
  box-shadow:
    0 4px 20px rgba(0,0,0,0.3),
    0 16px 52px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  margin-top: 4px;
}

.pd-live-preview-card[hidden] { display: none; }

/* Gold top accent */
.pd-live-preview-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.8) 35%, rgba(212,160,23,0.8) 65%, transparent);
  z-index: 2;
}

/* Inner ambient glow */
.pd-live-preview-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(212,160,23,0.13) 0%, transparent 52%),
    radial-gradient(ellipse at 90% 10%, rgba(232,114,12,0.08) 0%, transparent 48%);
  pointer-events: none;
  z-index: 0;
}

.pd-lp-card__inner {
  padding: 28px 26px 24px;
  position: relative;
  z-index: 1;
}

.pd-lp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.pd-lp-card__eyebrow {
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #d4a017;
  opacity: 0.9;
}

.pd-lp-card__icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(212,160,23,0.11);
  border: 1px solid rgba(212,160,23,0.26);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a017;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(212,160,23,0.14);
}

.pd-lp-card__icon svg { width: 15px; height: 15px; }

.pd-lp-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #f5e8d0;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pd-lp-card__desc {
  font-size: 0.83rem;
  color: rgba(245,232,208,0.54);
  line-height: 1.68;
  margin: 0 0 18px;
}

.pd-lp-card__points {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 14px;
}

.pd-lp-card__points li {
  font-size: 0.76rem;
  color: rgba(245,232,208,0.68);
  padding-left: 15px;
  position: relative;
  line-height: 1.42;
}

.pd-lp-card__points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(212,160,23,0.65);
}

.pd-lp-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pd-lp-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.26s ease, box-shadow 0.26s ease, transform 0.22s cubic-bezier(0.34,1.4,0.64,1), border-color 0.26s ease;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.pd-lp-card__btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.pd-lp-card__btn--primary {
  background: linear-gradient(135deg, #b87808 0%, #d4a017 55%, #e8b820 100%);
  color: #1a0800;
  border: 1.5px solid transparent;
  box-shadow: 0 4px 16px rgba(212,160,23,0.34), inset 0 1px 0 rgba(255,255,255,0.2);
}

.pd-lp-card__btn--primary:hover {
  background: linear-gradient(135deg, #ce9010 0%, #e8b820 55%, #f5c518 100%);
  box-shadow: 0 7px 26px rgba(212,160,23,0.54), inset 0 1px 0 rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

.pd-lp-card__btn--call {
  background: rgba(255,255,255,0.06);
  color: rgba(245,232,208,0.72);
  border: 1.5px solid rgba(245,232,208,0.14);
}

.pd-lp-card__btn--call:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(212,160,23,0.35);
  color: #f5e8d0;
  transform: translateY(-2px);
}

@media (max-width: 380px) {
  .pd-lp-card__points  { grid-template-columns: 1fr; }
  .pd-lp-card__actions { flex-direction: column; }
  .pd-lp-card__btn     { flex: none; width: 100%; }
}

/* ── 10. CRAFTSMANSHIP SECTION ────────────────────────────── */
.pd-craft {
  background: linear-gradient(148deg, #100500 0%, #241004 40%, #1c0901 72%, #100500 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  margin-bottom: 96px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 64px;
  box-shadow:
    0 4px 28px rgba(0,0,0,0.18),
    0 24px 72px rgba(0,0,0,0.22);
}

/* Dramatic radial light effects */
.pd-craft::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 4% 82%,  rgba(212,160,23,0.26) 0%, transparent 44%),
    radial-gradient(ellipse at 96% 18%, rgba(232,114,12,0.17) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(212,160,23,0.04) 0%, transparent 58%);
  pointer-events: none;
}

/* Subtle wood grain lines */
.pd-craft::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    88deg,
    transparent 0px, transparent 4px,
    rgba(255,255,255,0.016) 4px, rgba(255,255,255,0.016) 5px
  );
  pointer-events: none;
}

.pd-craft > * { position: relative; z-index: 1; }

.pd-craft__inner {
  max-width: 540px;
  position: relative;
}

/* Decorative large quotation mark behind text */
.pd-craft__inner::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: -16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 160px;
  line-height: 1;
  color: rgba(212,160,23,0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.pd-craft__eyebrow {
  display: block;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pd-craft__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.14;
  margin: 0 0 22px;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.pd-craft__body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.54);
  line-height: 1.95;
  margin: 0;
  max-width: 460px;
  position: relative;
  z-index: 1;
}

.pd-craft__badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.pd-craft__badge {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 15px 20px;
  min-width: 210px;
  transition: background 0.26s, border-color 0.26s, transform 0.26s cubic-bezier(0.34,1.3,0.64,1);
}

.pd-craft__badge:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,160,23,0.38);
  transform: translateX(-5px);
}

.pd-craft__badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,160,23,0.9);
  flex-shrink: 0;
}

.pd-craft__badge-label {
  font-size: 0.83rem;
  font-weight: 600;
  color: rgba(255,255,255,0.84);
  white-space: nowrap;
}

/* ── 11. DETAILS SECTION ──────────────────────────────────── */
.pd-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 96px;
}

@media (min-width: 900px) {
  .pd-details {
    grid-template-columns: 1.3fr 1fr;
    align-items: start;
  }
}

/* ── BASE CARD SHELL ──────────────────────────────────────── */
.pd-detail-card {
  border-radius: 28px;
  overflow: hidden;
  transition: box-shadow 0.36s ease, transform 0.36s ease;
  position: relative;
}

.pd-detail-card:hover { transform: translateY(-4px); }
.pd-detail-card[hidden] { display: none; }

/* Shared header base */
.pd-detail-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
}

.pd-detail-card__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}

.pd-detail-card__body { padding: 0; }

/* ── ABOUT THIS PIECE — warm artisan parchment ────────────── */
#pd-desc-block {
  background:
    radial-gradient(ellipse at 95% 5%,  rgba(212,160,23,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 5%  95%, rgba(139,82,48,0.05)  0%, transparent 48%),
    linear-gradient(155deg, #fdf9f2 0%, #f8f0e2 55%, #fdf7ee 100%);
  border: 1px solid rgba(212,160,23,0.2);
  border-top: 3px solid rgba(212,160,23,0.55);
  box-shadow:
    0 2px 8px  rgba(18,6,0,0.04),
    0 10px 36px rgba(18,6,0,0.07),
    inset 0 -1px 0 rgba(212,160,23,0.08);
}

#pd-desc-block:hover {
  box-shadow:
    0 4px 16px rgba(18,6,0,0.07),
    0 20px 56px rgba(18,6,0,0.10),
    inset 0 -1px 0 rgba(212,160,23,0.1);
}

/* Faint wood-grain texture lines */
#pd-desc-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    91deg,
    transparent 0px, transparent 6px,
    rgba(139,82,48,0.018) 6px, rgba(139,82,48,0.018) 7px
  );
  pointer-events: none;
  z-index: 0;
}

/* Large watermark quote in background */
#pd-desc-block::after {
  content: '"';
  position: absolute;
  bottom: -10px;
  right: 24px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 220px;
  line-height: 1;
  color: rgba(212,160,23,0.055);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

#pd-desc-block .pd-detail-card__header {
  background: linear-gradient(135deg, #f5e3c0 0%, #ecd8ab 50%, #f2e1c6 100%);
  border-bottom: 1px solid rgba(212,160,23,0.22);
  position: relative;
  z-index: 1;
}

#pd-desc-block .pd-detail-card__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,160,23,0.22), rgba(212,160,23,0.09));
  border: 1.5px solid rgba(212,160,23,0.35);
  border-radius: 12px;
  color: #7a4a00;
  opacity: 1;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(212,160,23,0.15);
}

#pd-desc-block .pd-detail-card__title {
  color: #2a1200;
  font-size: 1.45rem;
}

#pd-desc-block .pd-detail-card__body {
  padding: 32px 36px 36px;
  position: relative;
  z-index: 1;
}

/* Decorative opening quote before description text */
#pd-desc-block .pd-detail-card__body::before {
  content: '"';
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(212,160,23,0.32);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pd-description {
  font-size: 0.96rem;
  color: #3e2412;
  line-height: 2.0;
  white-space: pre-line;
  letter-spacing: 0.008em;
}

/* ── SPECIFICATIONS — dark walnut luxury panel ────────────── */
#pd-specs-block {
  background: linear-gradient(148deg, #110600 0%, #1e0c02 44%, #160800 78%, #110600 100%);
  border: 1px solid rgba(212,160,23,0.22);
  border-top: 3px solid rgba(212,160,23,0.65);
  box-shadow:
    0 2px 8px  rgba(0,0,0,0.28),
    0 10px 36px rgba(0,0,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

#pd-specs-block:hover {
  box-shadow:
    0 4px 16px rgba(0,0,0,0.36),
    0 20px 56px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Ambient glow */
#pd-specs-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(212,160,23,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(232,114,12,0.07) 0%, transparent 48%);
  pointer-events: none;
  z-index: 0;
}

/* Wood grain */
#pd-specs-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    89deg,
    transparent 0px, transparent 5px,
    rgba(255,255,255,0.014) 5px, rgba(255,255,255,0.014) 6px
  );
  pointer-events: none;
  z-index: 0;
}

#pd-specs-block .pd-detail-card__header {
  background: transparent;
  border-bottom: 1px solid rgba(212,160,23,0.16);
  position: relative;
  z-index: 1;
}

#pd-specs-block .pd-detail-card__icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,160,23,0.18), rgba(212,160,23,0.06));
  border: 1.5px solid rgba(212,160,23,0.3);
  border-radius: 12px;
  color: #d4a017;
  opacity: 1;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(212,160,23,0.16);
}

#pd-specs-block .pd-detail-card__title {
  color: #f0ddb8;
  font-size: 1.45rem;
}

#pd-specs-block .pd-detail-card__body {
  padding: 0;
  position: relative;
  z-index: 1;
}

/* ── SPECS TABLE — dark luxury data rows ──────────────────── */
.pd-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

/* Default (light background — fallback) */
.pd-specs-table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(212,160,23,0.1);
}

.pd-specs-table td {
  padding: 15px 28px;
  vertical-align: middle;
  position: relative;
}

.pd-specs-table td:first-child {
  width: 46%;
  vertical-align: top;
  padding-top: 17px;
}

/* Dark-panel spec key */
#pd-specs-block .pd-specs-table td:first-child {
  font-size: 0.66rem;
  font-weight: 800;
  color: rgba(212,160,23,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Gold dot accent before key */
#pd-specs-block .pd-specs-table td:first-child::before {
  content: '◆';
  font-size: 0.45rem;
  color: rgba(212,160,23,0.45);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Dark-panel spec value */
#pd-specs-block .pd-specs-table td:last-child {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f5e8d0;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Row separator — gold gradient rule */
#pd-specs-block .pd-specs-table tr:not(:last-child) td {
  border-bottom: 1px solid rgba(212,160,23,0.1);
}

/* Alternating row tones */
#pd-specs-block .pd-specs-table tr:nth-child(odd) td {
  background: rgba(255,255,255,0.025);
}

#pd-specs-block .pd-specs-table tr:nth-child(even) td {
  background: rgba(0,0,0,0.15);
}

/* Hover row highlight */
#pd-specs-block .pd-specs-table tr:hover td {
  background: rgba(212,160,23,0.08);
}

/* Last row bottom padding */
#pd-specs-block .pd-specs-table tr:last-child td {
  padding-bottom: 22px;
}

/* ── 12. SERVICE STRIP ────────────────────────────────────── */
.pd-service-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 96px;
}

@media (min-width: 600px) {
  .pd-service-strip { grid-template-columns: repeat(4, 1fr); }
}

.pd-service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(92,51,23,0.08);
  border-radius: 22px;
  padding: 28px 16px 24px;
  box-shadow: 0 2px 10px rgba(18,6,0,0.05);
  transition: box-shadow 0.28s ease, transform 0.28s cubic-bezier(0.34,1.4,0.64,1), border-color 0.28s;
}

.pd-service-item:hover {
  box-shadow: 0 8px 32px rgba(18,6,0,0.12);
  transform: translateY(-4px);
  border-color: rgba(212,160,23,0.22);
}

.pd-service-item__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212,160,23,0.13), rgba(212,160,23,0.06));
  border-radius: 16px;
  color: #7a4f00;
  border: 1px solid rgba(212,160,23,0.18);
  box-shadow: 0 2px 8px rgba(212,160,23,0.1);
}

.pd-service-item__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pd-service-item__text strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: #1a0800;
}

.pd-service-item__text span {
  font-size: 0.73rem;
  color: #9a7b5c;
  line-height: 1.42;
}

/* ── 13. BOTTOM CTA BANNER ────────────────────────────────── */
.pd-cta {
  background: linear-gradient(142deg, #100500 0%, #261004 42%, #1e0a01 72%, #100500 100%);
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  margin-bottom: 52px;
  box-shadow:
    0 4px 28px rgba(0,0,0,0.18),
    0 24px 72px rgba(0,0,0,0.22);
}

/* Gold top line accent */
.pd-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.85) 38%, rgba(212,160,23,0.85) 62%, transparent);
  z-index: 2;
}

.pd-cta__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 50%, rgba(212,160,23,0.26) 0%, transparent 54%),
    radial-gradient(circle at 84% 50%, rgba(232,114,12,0.17) 0%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0px, transparent 4px, rgba(255,255,255,0.015) 4px, rgba(255,255,255,0.015) 5px);
  pointer-events: none;
}

.pd-cta__inner {
  position: relative;
  z-index: 1;
  padding: 68px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.pd-cta__eyebrow {
  display: block;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #d4a017;
  margin-bottom: 12px;
}

.pd-cta__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.01em;
}

.pd-cta__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.75;
  margin: 0;
  max-width: 400px;
}

.pd-cta__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
}

/* CTA banner WhatsApp button — premium forest green pill */
.pd-cta__actions .btn--whatsapp {
  border-radius: 999px;
  background: linear-gradient(145deg, #0c4220 0%, #157a3c 48%, #1ea84e 82%, #25c558 100%);
  border: 1px solid rgba(37,211,102,0.22);
  box-shadow:
    0 5px 22px rgba(21,122,60,0.4),
    inset 0 1px 0 rgba(255,255,255,0.22);
  position: relative;
  overflow: hidden;
}

.pd-cta__actions .btn--whatsapp::after {
  content: '';
  position: absolute;
  top: 0; left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}

.pd-cta__actions .btn--whatsapp:hover {
  background: linear-gradient(145deg, #157a3c 0%, #22c55e 48%, #2dd16a 100%);
  box-shadow:
    0 10px 30px rgba(21,122,60,0.48),
    0 0 0 3px rgba(37,211,102,0.12),
    inset 0 1px 0 rgba(255,255,255,0.26);
}

.pd-cta__actions .btn--whatsapp:hover::after { left: 130%; }

.pd-cta__browse-btn {
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.56);
  text-decoration: none;
  padding: 15px 24px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  transition: color 0.24s, border-color 0.24s, background 0.24s, transform 0.24s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pd-cta__browse-btn:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.05);
  transform: translateX(-3px);
}

/* ── 14. STICKY MOBILE CTA ────────────────────────────────── */
.pd-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 12px 16px 14px;
  background: rgba(253,246,236,0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-top: 1px solid rgba(212,160,23,0.15);
  box-shadow: 0 -8px 40px rgba(18,6,0,0.14);
  gap: 10px;
  display: none;
}

.pd-sticky-cta[hidden] { display: none !important; }
.pd-sticky-cta.is-visible { display: flex; }

.pd-sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.2s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.pd-sticky-cta__btn::after {
  content: '';
  position: absolute;
  top: 0; left: -90%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.pd-sticky-cta__btn:hover::after { left: 130%; }
.pd-sticky-cta__btn:active { transform: scale(0.96); }

.pd-sticky-cta__btn--wa {
  background: linear-gradient(145deg, #0c4220 0%, #157a3c 48%, #1ea84e 82%, #25c558 100%);
  color: #fff;
  border: 1px solid rgba(37,211,102,0.2);
  box-shadow:
    0 4px 18px rgba(21,122,60,0.38),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.pd-sticky-cta__btn--wa:hover {
  box-shadow: 0 6px 24px rgba(21,122,60,0.48), inset 0 1px 0 rgba(255,255,255,0.24);
}

.pd-sticky-cta__btn--call {
  background: linear-gradient(145deg, #5c1c00 0%, #a04000 48%, #c85c0c 82%, #d4700e 100%);
  color: #fff;
  border: 1px solid rgba(212,112,14,0.22);
  box-shadow:
    0 4px 18px rgba(160,64,0,0.36),
    inset 0 1px 0 rgba(255,255,255,0.18);
}

.pd-sticky-cta__btn--call:hover {
  box-shadow: 0 6px 24px rgba(200,92,12,0.46), inset 0 1px 0 rgba(255,255,255,0.22);
}

/* ── 15. FOOTER ───────────────────────────────────────────── */
.pd-footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 0.79rem;
  color: #9a7b5c;
  border-top: 1px solid rgba(92,51,23,0.08);
  margin-top: 16px;
}

.pd-footer a {
  color: #c47d00;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}

.pd-footer a:hover { color: #d4a017; text-decoration: underline; }

/* ── 16. SCROLL REVEAL ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.22, 0.68, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── 17. RESPONSIVE — TABLET ──────────────────────────────── */
@media (max-width: 1024px) {
  .pd-main { padding: 32px 24px 96px; }

  .pd-craft {
    grid-template-columns: 1fr;
    padding: 56px 48px;
    gap: 36px;
  }

  .pd-craft__badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .pd-craft__badge {
    min-width: auto;
    flex: 1 1 calc(50% - 6px);
  }
}

/* ── 18. RESPONSIVE — MOBILE ──────────────────────────────── */
@media (max-width: 767px) {
  .pd-main { padding: 20px 16px 120px; }

  .pd-hero {
    margin: 0 -16px;
    gap: 0;
  }

  .pd-gallery {
    position: static;
    gap: 10px;
  }

  .pd-gallery__main-wrap {
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
  }

  .pd-gallery__main-wrap:hover .pd-gallery__main-img {
    transform: none;
  }

  .pd-gallery__thumbs,
  .pd-gallery__dots {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pd-info {
    padding: 28px 16px 0;
    gap: 22px;
  }

  .pd-name { font-size: clamp(1.9rem, 7.5vw, 2.6rem); }
  .pd-price__value { font-size: 2.1rem; }

  .pd-actions {
    flex-direction: column;
    gap: 10px;
  }

  .pd-btn-primary,
  .pd-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .pd-highlights__list { grid-template-columns: 1fr; }
  .pd-highlights__list li { border-right: none; }
  .pd-highlights__list li:last-child { border-bottom: none; }
  .pd-highlights__list li:nth-last-child(-n+2) { border-bottom: 1px solid rgba(212,160,23,0.08); }
  .pd-highlights__list li:last-child { border-bottom: none; }

  .pd-trust-strip { grid-template-columns: repeat(2, 1fr); }
  .pd-trust-item:nth-child(2) { border-right: none; }
  .pd-trust-item:nth-child(3),
  .pd-trust-item:nth-child(4) {
    border-top: 1px solid rgba(92,51,23,0.08);
  }

  .pd-craft {
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    padding: 52px 24px 48px;
    grid-template-columns: 1fr;
  }

  .pd-craft__inner::before { font-size: 100px; top: -24px; left: -8px; }

  .pd-craft__badges {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .pd-craft__badge {
    min-width: auto;
    flex: 1 1 calc(50% - 5px);
    padding: 12px 14px;
  }

  .pd-service-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 60px;
  }

  .pd-service-item {
    padding: 22px 12px 18px;
    gap: 10px;
  }

  .pd-service-item__icon {
    width: 44px;
    height: 44px;
  }

  .pd-cta { border-radius: 24px; }

  .pd-cta__inner {
    padding: 48px 28px;
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  .pd-cta__sub { max-width: none; }

  .pd-cta__actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .pd-cta__actions .pd-btn-primary,
  .pd-cta__browse-btn { width: 100%; text-align: center; display: block; }

  .pd-breadcrumb { margin-bottom: 14px; }

  .pd-thumb { width: 62px; height: 62px; border-radius: 10px; }

  .pd-header__inner { padding: 0 16px; }
  .pd-header__logo-wordmark { display: none; }
}

/* ── 18b. ORNAMENTAL SECTION DIVIDER ─────────────────────── */
.pd-ornament {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: -48px 0 56px;
  padding: 0 8px;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.68, 0.36, 1);
}

/* Triggers when parent pd-content becomes visible */
#pd-content:not([hidden]) .pd-ornament {
  opacity: 0.75;
  transform: scaleX(1);
  transition-delay: 0.35s;
}

.pd-ornament__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,160,23,0.35) 40%, rgba(212,160,23,0.35) 60%, transparent 100%);
  display: block;
}

.pd-ornament__gem {
  width: 7px;
  height: 7px;
  background: rgba(212,160,23,0.65);
  transform: rotate(45deg);
  flex-shrink: 0;
  display: block;
  position: relative;
}

.pd-ornament__gem::before,
.pd-ornament__gem::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.25), transparent);
}

.pd-ornament__gem::after { transform: translate(-50%, -50%) rotate(90deg); }

/* ── 19. ACCESSIBILITY ────────────────────────────────────── */
:focus-visible {
  outline: 2px solid #d4a017;
  outline-offset: 3px;
}

/* ── 20. PRINT ────────────────────────────────────────────── */
@media print {
  .pd-header, .pd-actions, .pd-cta, .pd-sticky-cta,
  .pd-craft, .pd-service-strip, .pd-footer { display: none; }
  .pd-main    { padding: 0; }
  .pd-gallery { position: static; }
  .pd-hero    { grid-template-columns: 1fr; }
}
