/* ============================================
   PRODUCT DETAIL PAGE — Madex Coatings
   ============================================ */

.pdp {
  padding: 7rem 3rem 5rem;
  max-width: 1300px; margin: 0 auto;
  min-height: 70vh;
}

/* Breadcrumb */
.pdp-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 2.5rem; font-size: .8rem;
}
.pdp-breadcrumb a {
  color: var(--text-muted); text-decoration: none;
  transition: color .3s;
}
.pdp-breadcrumb a:hover { color: var(--accent-gold); }
.pdp-breadcrumb span { color: var(--text-muted); }
.pdp-breadcrumb .current { color: var(--text-white); }

/* Grid Layout */
.pdp-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}

/* Image */
.pdp-image-wrap {
  position: relative; border-radius: 12px;
  overflow: hidden; background: var(--glass);
  border: 1px solid var(--glass-border);
}
.pdp-image {
  width: 100%; aspect-ratio: 1/1; object-fit: contain;
  background: #111;
  display: block;
}
.pdp-badge {
  position: absolute; top: 1.2rem; right: 1.2rem;
  padding: .4rem 1rem; background: var(--accent-gold);
  color: var(--bg-dark); font-family: var(--mono);
  font-size: .7rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase;
}

/* Info Section */
.pdp-info { display: flex; flex-direction: column; gap: 1.5rem; }

.pdp-category {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .3em; color: var(--accent-gold);
  text-transform: uppercase;
}
.pdp-title {
  font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; line-height: 1.15;
}
.pdp-description {
  font-size: 1rem; line-height: 1.8; color: var(--text-muted);
}

/* Price */
.pdp-price-display {
  font-size: 1.6rem; font-weight: 700;
}
.pdp-price-display .old-price {
  color: var(--text-muted); text-decoration: line-through;
  font-size: 1.1rem; font-weight: 400; margin-right: .5rem;
}
.pdp-price-display .current-price { color: var(--accent-gold); }

/* Size Selector */
.pdp-sizes { display: flex; flex-direction: column; gap: .8rem; }
.pdp-sizes-label {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .2em; color: var(--text-muted);
  text-transform: uppercase;
}
.pdp-sizes-options { display: flex; gap: .5rem; flex-wrap: wrap; }
.size-btn {
  padding: .6rem 1.3rem; border: 1px solid var(--glass-border);
  background: transparent; color: var(--text-white);
  font-family: var(--mono); font-size: .75rem;
  cursor: pointer; transition: all .3s;
}
.size-btn:hover { border-color: var(--text-white); }
.size-btn.active {
  background: var(--accent-gold); border-color: var(--accent-gold);
  color: var(--bg-dark);
}

/* Shade Selector Button */
.pdp-shade-section { display: flex; flex-direction: column; gap: .8rem; }
.shade-trigger {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; border: 1px solid var(--glass-border);
  background: var(--glass); color: var(--text-white);
  cursor: pointer; transition: all .3s; width: 100%;
  font-family: var(--sans); font-size: .9rem;
}
.shade-trigger:hover { border-color: var(--accent-gold); }
.shade-trigger .shade-preview {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--glass-border);
  flex-shrink: 0;
}
.shade-trigger .shade-name { flex: 1; text-align: left; }
.shade-trigger .shade-arrow {
  color: var(--accent-gold); font-size: .8rem;
}

/* Quantity */
.pdp-qty { display: flex; align-items: center; gap: 1rem; }
.pdp-qty-label {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .2em; color: var(--text-muted);
  text-transform: uppercase;
}
.qty-control {
  display: flex; align-items: center; border: 1px solid var(--glass-border);
}
.qty-btn {
  width: 40px; height: 40px; border: none;
  background: transparent; color: var(--text-white);
  font-size: 1.1rem; cursor: pointer;
  transition: background .3s; display: grid; place-items: center;
}
.qty-btn:hover { background: var(--glass); }
.qty-value {
  width: 50px; text-align: center; font-family: var(--mono);
  font-size: .9rem; border: none; background: transparent;
  color: var(--text-white); outline: none;
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  height: 40px;
}

/* Action Buttons */
.pdp-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.pdp-actions .btn-primary { flex: 1; text-align: center; min-width: 160px; }
.pdp-actions .btn-secondary { flex: 1; text-align: center; min-width: 160px; }
.btn-whatsapp {
  padding: 1rem 2rem; background: #25D366; color: #fff;
  border: none; font-weight: 600; font-size: .85rem;
  letter-spacing: .05em; text-transform: uppercase;
  cursor: pointer; transition: all .3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem;
  justify-content: center; flex: 1; min-width: 160px;
}
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); }

/* Features */
.pdp-features {
  padding: 1.5rem; background: var(--glass);
  border: 1px solid var(--glass-border); border-radius: 8px;
}
.pdp-features-title {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .2em; color: var(--accent-gold);
  text-transform: uppercase; margin-bottom: 1rem;
}
.pdp-features ul {
  list-style: none; display: flex; flex-direction: column; gap: .6rem;
}
.pdp-features li {
  font-size: .9rem; color: var(--text-muted);
  padding-left: 1.2rem; position: relative;
}
.pdp-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent-gold); font-size: .8rem;
}

/* ============ SHADE PANEL ============ */
.shade-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,.6); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.shade-overlay.open { opacity: 1; visibility: visible; }

.shade-panel {
  position: fixed; top: 0; right: -480px; bottom: 0;
  width: 460px; max-width: 90vw; z-index: 201;
  background: #111; border-left: 1px solid var(--glass-border);
  display: flex; flex-direction: column;
  transition: right .4s cubic-bezier(.16,1,.3,1);
}
.shade-panel.open { right: 0; }

.shade-panel-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 2rem; border-bottom: 1px solid var(--glass-border);
}
.shade-panel-header h3 {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
}
.shade-close {
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; transition: color .3s; padding: 4px;
}
.shade-close:hover { color: var(--text-white); }

.shade-panel-body {
  flex: 1; overflow-y: auto; padding: 1.5rem 2rem;
}

/* Shade Columns */
.shade-columns {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.shade-columns.single { grid-template-columns: 1fr; }

.shade-column-title {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: .2em; color: var(--accent-gold);
  text-transform: uppercase; margin-bottom: 1rem;
  padding-bottom: .5rem; border-bottom: 1px solid var(--glass-border);
}

.shade-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
}
.shade-swatch {
  display: flex; flex-direction: column; align-items: center;
  gap: .4rem; cursor: pointer; padding: .5rem .3rem;
  border: 1px solid transparent; border-radius: 6px;
  transition: all .3s; background: transparent;
  color: var(--text-white);
}
.shade-swatch:hover { border-color: var(--glass-border); background: var(--glass); }
.shade-swatch.selected {
  border-color: var(--accent-gold);
  background: rgba(200,169,126,.1);
}
.shade-color {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--glass-border);
  transition: transform .3s, border-color .3s;
  position: relative; overflow: hidden;
}
/* Metallic shimmer texture for metallic swatches in shade picker */
.shade-swatch[data-type="metallic"] .shade-color::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: url('assets/metallic-texture.png') repeat;
  background-size: 80px 80px;
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.shade-swatch:hover .shade-color { transform: scale(1.1); }
.shade-swatch.selected .shade-color {
  border-color: var(--accent-gold); transform: scale(1.15);
}
.shade-label {
  font-size: .6rem; text-align: center; color: var(--text-muted);
  line-height: 1.2; font-family: var(--mono);
  letter-spacing: .05em;
}
.shade-swatch.selected .shade-label { color: var(--accent-gold); }

.shade-panel-footer {
  padding: 1.2rem 2rem; border-top: 1px solid var(--glass-border);
  display: flex; align-items: center; gap: 1rem;
}
.shade-selected {
  flex: 1; font-size: .85rem; color: var(--text-muted);
}
.shade-confirm { white-space: nowrap; }

/* Bundle shade selections */
.bundle-shade-list {
  margin-top: 1rem; display: flex; flex-direction: column; gap: .3rem;
}
.bundle-shade-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--text-muted);
  padding: .3rem .5rem; background: var(--glass);
  border-radius: 4px;
}
.bundle-shade-item .bsi-color {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid var(--glass-border); flex-shrink: 0;
}
.bundle-shade-item .bsi-remove {
  margin-left: auto; background: none; border: none;
  color: var(--text-muted); cursor: pointer; font-size: .7rem;
  padding: 2px 4px;
}
.bundle-shade-item .bsi-remove:hover { color: #ff6b6b; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pdp-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .pdp { padding: 5rem 1.5rem 3rem; }
  .shade-panel { width: 100%; max-width: 100%; right: -100%; }
  .shade-grid { grid-template-columns: repeat(3, 1fr); }
  .shade-columns { grid-template-columns: 1fr; }
  .pdp-actions { flex-direction: column; }
}

/* ============================================
   GOLDEN REVIEWS SECTION — Premium Design
   ============================================ */

/* Outer section — full width dark gold band */
.rev-gold-section {
  width: 100%;
  background: linear-gradient(135deg, #0d0a05 0%, #1a1208 40%, #0f0c06 100%);
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
/* Subtle shimmer background texture */
.rev-gold-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(200,169,126,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 80%, rgba(200,169,126,.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Gold top/bottom border bar */
.rev-gold-topbar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c8a97e 20%, #f5d792 50%, #c8a97e 80%, transparent 100%);
}

/* Inner container */
.rev-gold-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  position: relative;
}

/* ---- Header ---- */
.rev-gold-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem;
}
.rev-gold-title-wrap { display: flex; flex-direction: column; gap: .3rem; }
.rev-gold-label {
  display: block;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #c8a97e;
}
.rev-gold-title {
  font-family: var(--serif, Georgia, serif);
  font-size: 1.9rem; font-weight: 700;
  color: #f0e4c8; line-height: 1.15; margin: 0;
}
.rev-gold-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(200,169,126,.3), transparent);
  margin: 1.8rem 0;
}

/* Rating summary */
.rev-gold-summary {
  display: flex; align-items: center; flex-wrap: wrap; gap: 1.5rem;
  background: rgba(200,169,126,.05);
  border: 1px solid rgba(200,169,126,.15);
  border-radius: 14px; padding: 1.2rem 1.8rem;
  margin-bottom: 2rem;
}
.rev-gold-bignum {
  font-size: 3.5rem; font-weight: 800;
  color: #c8a97e; line-height: 1;
  font-family: var(--serif, Georgia, serif);
}
.rev-gold-summary-right { display: flex; flex-direction: column; gap: .25rem; }
.rev-gold-stars-row { display: flex; gap: 2px; }
.rev-gold-star { font-size: 1.3rem; color: rgba(200,169,126,.25); }
.rev-gold-star.filled { color: #f5a623; }
.rev-gold-total { font-size: .78rem; color: rgba(240,228,200,.5); }

/* Rating bars */
.rev-gold-bars { display: flex; flex-direction: column; gap: .3rem; min-width: 160px; }
.rev-bar-row { display: flex; align-items: center; gap: .5rem; }
.rev-bar-label { font-size: .72rem; color: #c8a97e; width: 22px; text-align: right; flex-shrink: 0; }
.rev-bar-track { flex: 1; height: 6px; background: rgba(200,169,126,.15); border-radius: 4px; overflow: hidden; }
.rev-bar-fill { height: 100%; background: linear-gradient(90deg, #c8a97e, #f5d792); border-radius: 4px; transition: width .6s ease; }
.rev-bar-pct { font-size: .68rem; color: rgba(240,228,200,.4); width: 28px; }

/* Write review button */
.rev-gold-write-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.6rem;
  background: transparent;
  border: 1.5px solid #c8a97e;
  color: #c8a97e;
  border-radius: 40px;
  font-size: .85rem; font-weight: 700; font-family: inherit;
  cursor: pointer; white-space: nowrap;
  transition: background .25s, color .25s, box-shadow .25s;
  flex-shrink: 0;
  margin-top: .5rem;
}
.rev-gold-write-btn:hover {
  background: #c8a97e; color: #0d0a05;
  box-shadow: 0 0 24px rgba(200,169,126,.35);
}

/* ---- Review Form ---- */
.rev-gold-form-wrap {
  max-height: 0; overflow: hidden;
  transition: max-height .5s cubic-bezier(.4,0,.2,1);
}
.rev-gold-form-wrap.rev-form-open { max-height: 800px; }

.rev-gold-form {
  background: rgba(200,169,126,.06);
  border: 1px solid rgba(200,169,126,.22);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
}
.rev-gold-form-title {
  font-size: 1rem; font-weight: 700; color: #f0e4c8;
  margin-bottom: 1.4rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(200,169,126,.15);
}
.rev-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.rev-form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.rev-form-group label { font-size: .72rem; font-weight: 700; color: rgba(200,169,126,.8); text-transform: uppercase; letter-spacing: .06em; }
.req { color: #c8a97e; }
.rev-form-group input,
.rev-form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(200,169,126,.2);
  border-radius: 8px;
  padding: .7rem 1rem;
  color: #f0e4c8;
  font-size: .9rem; font-family: inherit;
  resize: vertical;
  transition: border-color .2s, box-shadow .2s;
}
.rev-form-group input::placeholder,
.rev-form-group textarea::placeholder { color: rgba(240,228,200,.25); }
.rev-form-group input:focus,
.rev-form-group textarea:focus {
  outline: none;
  border-color: #c8a97e;
  box-shadow: 0 0 0 3px rgba(200,169,126,.12);
}

/* Star input */
.rev-star-input {
  display: flex; align-items: center; gap: .15rem; flex-wrap: wrap;
}
.rev-star {
  font-size: 2rem; cursor: pointer;
  color: rgba(200,169,126,.2);
  transition: color .12s, transform .12s;
  user-select: none; line-height: 1;
}
.rev-star.hovered,
.rev-star.selected { color: #f5a623; transform: scale(1.2); }
.rev-star-hint {
  margin-left: .6rem; font-size: .78rem; color: rgba(240,228,200,.4);
  font-style: italic;
}

/* Image upload */
.rev-upload-label {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.03);
  border: 1.5px dashed rgba(200,169,126,.25);
  border-radius: 10px; cursor: pointer;
  transition: border-color .2s, background .2s;
  font-size: .82rem; color: rgba(240,228,200,.5);
}
.rev-upload-label:hover {
  border-color: rgba(200,169,126,.55);
  background: rgba(200,169,126,.05);
  color: #c8a97e;
}
.rev-upload-icon { font-size: 1.2rem; flex-shrink: 0; }
.rev-card-img {
  width: 100%; max-height: 200px;
  object-fit: cover; border-radius: 10px;
  border: 1px solid rgba(200,169,126,.15);
  margin-top: .8rem;
}

.rev-gold-form-footer { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.rev-gold-submit-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.8rem;
  background: linear-gradient(135deg, #c8a97e, #f5d792, #c8a97e);
  background-size: 200% auto;
  color: #0d0a05; border: none; border-radius: 40px;
  font-size: .9rem; font-weight: 800; font-family: inherit;
  cursor: pointer; transition: background-position .4s, box-shadow .3s;
}
.rev-gold-submit-btn:hover {
  background-position: right center;
  box-shadow: 0 6px 24px rgba(200,169,126,.4);
}
.rev-gold-submit-btn:disabled { opacity: .6; cursor: not-allowed; }

.rev-msg { font-size: .85rem; border-radius: 8px; padding: .5rem .9rem; }
.rev-msg:empty { display: none; }
.rev-msg-success { background: rgba(46,125,50,.2); color: #81c784; border: 1px solid rgba(46,125,50,.3); }
.rev-msg-error   { background: rgba(198,40,40,.2);  color: #ef9a9a; border: 1px solid rgba(198,40,40,.3); }

/* ---- Empty state ---- */
.rev-gold-empty {
  text-align: center; padding: 3rem 1rem;
  color: rgba(200,169,126,.4);
}
.rev-gold-empty svg { display: block; margin: 0 auto 1rem; }
.rev-gold-empty p { font-size: .95rem; margin-bottom: 1.2rem; color: rgba(240,228,200,.4); }

/* ---- Filters ---- */
.rev-gold-filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.rev-filter-chip {
  padding: .35rem 1rem;
  background: transparent;
  border: 1px solid rgba(200,169,126,.25);
  border-radius: 30px;
  color: rgba(200,169,126,.7);
  font-size: .78rem; font-family: inherit; cursor: pointer;
  transition: .2s;
}
.rev-filter-chip:hover,
.rev-filter-chip.active {
  background: #c8a97e; color: #0d0a05;
  border-color: #c8a97e; font-weight: 700;
}

/* ---- Cards Grid ---- */
.rev-gold-grid {
  columns: 2; column-gap: 1.4rem;
}
.rev-gold-card {
  break-inside: avoid;
  background: rgba(200,169,126,.05);
  border: 1px solid rgba(200,169,126,.15);
  border-radius: 14px;
  padding: 1.4rem;
  margin-bottom: 1.4rem;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: block;
}
.rev-gold-card:hover {
  border-color: rgba(200,169,126,.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.35), 0 0 0 1px rgba(200,169,126,.12);
}
.rev-hidden-more { display: none !important; }

/* New badge */
.rev-new-badge {
  position: absolute; top: .9rem; right: .9rem;
  background: linear-gradient(135deg, #c8a97e, #f5d792);
  color: #0d0a05; font-size: .62rem; font-weight: 800;
  padding: .18rem .55rem; border-radius: 20px;
  letter-spacing: .06em; text-transform: uppercase;
}

.rev-gold-card-top { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.rev-gold-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #c8a97e, #f5d792);
  color: #0d0a05;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.rev-gold-card-meta { flex: 1; overflow: hidden; }
.rev-gold-card-name { display: block; font-weight: 700; font-size: .9rem; color: #f0e4c8; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rev-gold-card-date { font-size: .7rem; color: rgba(200,169,126,.5); }
.rev-gold-card-stars { display: flex; gap: 1px; margin-bottom: .75rem; }
.rev-gold-card-stars span { font-size: .95rem; color: rgba(200,169,126,.2); }
.rev-gold-card-stars span.filled { color: #f5a623; }
.rev-gold-card-text { font-size: .875rem; color: rgba(240,228,200,.65); line-height: 1.7; margin: 0; }

/* ---- Load More ---- */
.rev-gold-loadmore-wrap {
  display: flex; flex-direction: column; align-items: center;
  gap: .6rem; margin-top: 2rem;
}
.rev-gold-loadmore {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 2rem;
  background: transparent;
  border: 1.5px solid rgba(200,169,126,.35);
  color: #c8a97e; border-radius: 40px;
  font-size: .85rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: .25s;
}
.rev-gold-loadmore:hover {
  background: rgba(200,169,126,.1);
  border-color: #c8a97e;
  box-shadow: 0 0 20px rgba(200,169,126,.2);
}
.rev-gold-showing { font-size: .72rem; color: rgba(200,169,126,.4); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .rev-gold-inner { padding: 2rem 1.2rem; }
  .rev-gold-title { font-size: 1.5rem; }
  .rev-gold-grid { columns: 1; }
  .rev-form-row { grid-template-columns: 1fr; }
  .rev-gold-header { flex-direction: column; }
  .rev-gold-summary { gap: .8rem; }
  .rev-gold-bignum { font-size: 2.8rem; }
}

/* ---- Main Product Recommendations (Tools pages) ---- */
.pdp-main-recs {
  margin: 1.2rem 0;
  padding: 1rem;
  border: 1px solid rgba(200,169,126,.25);
  border-radius: 12px;
  background: rgba(200,169,126,.04);
}
.pdp-main-recs-msg {
  font-size: .8rem; color: #f0c070;
  margin-bottom: .9rem; line-height: 1.5;
}
.pdp-main-recs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem;
}
.pdp-main-rec-card {
  display: flex; flex-direction: column;
  border: 1px solid rgba(200,169,126,.2);
  border-radius: 10px; overflow: hidden;
  text-decoration: none; transition: border-color .2s, transform .15s;
  background: rgba(255,255,255,.03);
}
.pdp-main-rec-card:hover {
  border-color: rgba(200,169,126,.55);
  transform: translateY(-2px);
}
.pdp-main-rec-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
}
.pdp-main-rec-body { padding: .5rem .6rem .3rem; flex: 1; }
.pdp-main-rec-cat {
  font-size: .6rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #c8a97e; margin-bottom: .15rem;
}
.pdp-main-rec-name {
  font-size: .72rem; font-weight: 700; color: #f0e4c8; line-height: 1.25; margin-bottom: .2rem;
}
.pdp-main-rec-price { font-size: .68rem; color: rgba(200,169,126,.7); }
.pdp-main-rec-btn {
  text-align: center; font-size: .7rem; font-weight: 700;
  color: #c8a97e; padding: .35rem;
  border-top: 1px solid rgba(200,169,126,.15);
}

/* ---- Upsell Section ---- */
.pdp-upsell-wrap {
  display: flex; flex-direction: column; gap: .7rem;
  margin: 1.2rem 0;
}
.pdp-upsell-row {
  display: flex; align-items: flex-start; gap: .8rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(200,169,126,.22);
  border-radius: 12px;
  background: rgba(200,169,126,.04);
  transition: border-color .2s;
}
.pdp-upsell-row:hover { border-color: rgba(200,169,126,.4); }
.pdp-upsell-icon { flex-shrink: 0; padding-top: .1rem; }
.pdp-upsell-info { flex: 1; }
.pdp-upsell-title { font-weight: 700; font-size: .85rem; color: #f0e4c8; margin-bottom: .15rem; }
.pdp-upsell-sub { font-size: .75rem; color: var(--text-muted); margin-bottom: .5rem; }
.pdp-upsell-options {
  display: flex; gap: 1rem; margin-bottom: .5rem;
}
.pdp-upsell-radio {
  display: flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: #f0e4c8; cursor: pointer;
}
.pdp-upsell-radio input[type="radio"] {
  accent-color: #c8a97e; width: 14px; height: 14px; cursor: pointer;
}
.pdp-upsell-sizes {
  display: flex; flex-wrap: wrap; gap: .4rem;
}
.pdp-upsell-size {
  font-size: .72rem; color: rgba(200,169,126,.7);
  border: 1px solid rgba(200,169,126,.2);
  border-radius: 20px; padding: .25rem .75rem;
  cursor: pointer; transition: .2s;
}
.pdp-upsell-size.active,
.pdp-upsell-size:hover {
  background: rgba(200,169,126,.15);
  border-color: #c8a97e; color: #c8a97e;
}
.pdp-upsell-btn {
  padding: .38rem 1rem;
  background: var(--accent-gold, #c8a97e);
  color: #0b0800; border: none; border-radius: 6px;
  font-weight: 700; font-size: .78rem;
  cursor: pointer; white-space: nowrap;
  transition: opacity .2s, background .2s;
  flex-shrink: 0; align-self: flex-start;
}
.pdp-upsell-btn:hover { opacity: .85; }

/* ---- Frequently Bought Together ---- */
.fbt-section {
  max-width: 1200px; margin: 0 auto 2.5rem;
  padding: 0 2rem;
}
.fbt-inner {
  background: linear-gradient(135deg, #0f0c07, #1a1408);
  border: 1px solid rgba(200,169,126,.2);
  border-radius: 18px;
  padding: 1.8rem 2rem;
}
.fbt-label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: #c8a97e; margin-bottom: 1.4rem;
}
.fbt-row {
  display: flex; align-items: center;
  gap: 1.2rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.fbt-item {
  display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  position: relative; flex: 1; min-width: 120px; max-width: 180px;
  transition: opacity .25s;
}
.fbt-item-main { flex: 1.2; }
.fbt-img-wrap {
  position: relative; width: 100%;
  aspect-ratio: 1; border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(200,169,126,.15);
  background: #0b0800;
}
.fbt-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.fbt-this-badge {
  position: absolute; bottom: .4rem; left: 50%; transform: translateX(-50%);
  background: rgba(200,169,126,.9); color: #0b0800;
  font-size: .6rem; font-weight: 800;
  padding: .18rem .55rem; border-radius: 20px;
  letter-spacing: .06em; text-transform: uppercase;
  white-space: nowrap;
}
.fbt-badge {
  position: absolute; top: .4rem; left: .4rem;
  background: linear-gradient(135deg, #c8a97e, #f5d792);
  color: #0b0800; font-size: .58rem; font-weight: 800;
  padding: .18rem .5rem; border-radius: 20px;
  letter-spacing: .05em; text-transform: uppercase;
}
.fbt-item-name {
  font-size: .78rem; font-weight: 700;
  color: #f0e4c8; text-align: center;
  line-height: 1.3;
}
.fbt-item-price {
  font-size: .82rem; color: #c8a97e; font-weight: 700;
}
.fbt-size-label {
  font-size: .7rem; color: rgba(200,169,126,.5);
  font-weight: 400;
}
.fbt-plus {
  font-size: 1.8rem; font-weight: 300;
  color: rgba(200,169,126,.4); flex-shrink: 0;
}
.fbt-checkbox-label {
  position: absolute; top: .4rem; right: .4rem;
  z-index: 2; cursor: pointer;
}
.fbt-checkbox-label input { display: none; }
.fbt-checkmark {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(200,169,126,.15);
  border: 1.5px solid rgba(200,169,126,.4);
  transition: .2s;
}
.fbt-checkbox-label input:checked + .fbt-checkmark {
  background: #c8a97e; border-color: #c8a97e;
}
.fbt-checkmark::after {
  content: '✓'; color: #0b0800;
  font-size: .75rem; font-weight: 800;
  display: none;
}
.fbt-checkbox-label input:checked + .fbt-checkmark::after { display: block; }

.fbt-cta {
  border-top: 1px solid rgba(200,169,126,.12);
  padding-top: 1.3rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.fbt-cta-why {
  display: flex; align-items: flex-start; gap: .5rem;
  font-size: .78rem; color: rgba(200,169,126,.6);
  line-height: 1.5; max-width: 380px;
}
.fbt-add-btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.8rem;
  background: linear-gradient(135deg, #c8a97e, #f5d792);
  color: #0b0800; border: none; border-radius: 40px;
  font-size: .88rem; font-weight: 800; font-family: inherit;
  cursor: pointer; white-space: nowrap;
  transition: box-shadow .25s, opacity .2s;
}
.fbt-add-btn:hover { box-shadow: 0 6px 20px rgba(200,169,126,.4); opacity: .9; }
@media (max-width: 768px) {
  .fbt-row { gap: .8rem; }
  .fbt-item { min-width: 90px; max-width: 130px; }
  .fbt-cta { flex-direction: column; }
  .fbt-add-btn { width: 100%; justify-content: center; }
}

/* ---- You May Also Like ---- */
.pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.pdp-related-grid .shop-card {
  text-decoration: none;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200,169,126,.12);
  background: #0f0c07;
  transition: border-color .25s, transform .25s;
  display: block;
}
.pdp-related-grid .shop-card:hover {
  border-color: rgba(200,169,126,.4);
  transform: translateY(-3px);
}
.pdp-related-grid .shop-card-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #c8a97e;
  display: block;
  margin-bottom: .3rem;
}
.pdp-related-grid .shop-card-name {
  font-size: .95rem;
  font-weight: 700;
  color: #f0e4c8;
  margin: 0 0 .6rem;
  line-height: 1.3;
}
.pdp-related-grid .shop-card-info {
  padding: .9rem 1rem 1rem;
}
.pdp-related-grid .shop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pdp-related-grid .shop-card-price {
  font-size: .9rem;
  font-weight: 700;
  color: #f0e4c8;
}
.pdp-related-grid .shop-card-price .old {
  font-size: .75rem;
  color: rgba(200,169,126,.4);
  text-decoration: line-through;
  margin-right: .3rem;
}
.pdp-related-grid .shop-card-arrow {
  color: #c8a97e;
}
.pdp-related-grid .shop-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.pdp-related-grid .shop-card:hover .shop-card-overlay { opacity: 1; }
.pdp-related-grid .shop-card-view-btn {
  background: #c8a97e;
  color: #0b0800;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .5rem 1.2rem;
  border-radius: 20px;
}
.pdp-related-grid .shop-card-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #1a1408;
}
.pdp-related-grid .shop-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.pdp-related-grid .shop-card:hover .shop-card-img { transform: scale(1.05); }
@media (max-width: 768px) {
  .pdp-related-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Main recs grid: 3 col → 1 row scroll on mobile */
  .pdp-main-recs-grid {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
    gap: .4rem;
  }
  .pdp-main-rec-name { font-size: .68rem; }
  .pdp-main-rec-price { font-size: .64rem; }

  /* Upsell size pills: wrap nicely */
  .pdp-upsell-sizes { gap: .3rem; }
  .pdp-upsell-size { font-size: .68rem; padding: .2rem .6rem; }

  /* Upsell row: stack info + button vertically on very small */
  .pdp-upsell-row { flex-wrap: wrap; }
  .pdp-upsell-btn { align-self: flex-end; margin-left: auto; }

  /* FBT: allow wrapping on very small screens */
  .fbt-row { flex-wrap: wrap; justify-content: center; }
}
