/* ═══════════════════════════════════════
   PRODUCT PAGE — CSS
   ═══════════════════════════════════════ */

/* ─── Breadcrumbs ─── */
.breadcrumbs { background: #fafafa; border-bottom: 1px solid #f0f0f0; padding: 10px 0; }
.bc-list { display: flex; align-items: center; gap: 8px; list-style: none; font-size: 13px; color: #999; flex-wrap: wrap; }
.bc-list li::after { content: '›'; margin-left: 8px; color: #ccc; }
.bc-list li:last-child::after { display: none; }
.bc-list a { color: #666; }
.bc-list a:hover { color: var(--accent); }
.bc-current { color: #333; font-weight: 500; }

/* ─── Product Grid ─── */
.pd-section { padding: 32px 0 48px; }
.pd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ─── Gallery ─── */
.pd-gallery-wrap { position: sticky; top: 20px; }
.pd-main-wrap { position: relative; overflow: hidden; border-radius: 12px; background: #fafafa; border: 1px solid #f0f0f0; cursor: zoom-in; }
.pd-main-img { width: 100%; aspect-ratio: 1; object-fit: contain; display: block; transition: transform 0.3s; }
.pd-main-wrap:hover .pd-main-img { transform: scale(1.05); }
.pd-sale-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: #EF4444; color: #fff; font-weight: 700; font-size: 13px;
  padding: 4px 10px; border-radius: 6px;
}
.pd-thumbs { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.pd-thumb {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px;
  border: 2px solid #eee; cursor: pointer; flex-shrink: 0; transition: border-color 0.2s;
}
.pd-thumb:hover, .pd-thumb.active { border-color: var(--accent); }

/* ─── Product Info ─── */
.pd-title { font-size: 26px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; color: #1a1a2e; }

.pd-rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-stars { display: flex; align-items: center; gap: 1px; }
.star { color: #ddd; font-size: 18px; line-height: 1; }
.star.filled { color: #F59E0B; }
.star.half { background: linear-gradient(90deg, #F59E0B 50%, #ddd 50%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.star.sm { font-size: 14px; }
.pd-rating-num { font-weight: 600; font-size: 14px; color: #333; margin-left: 4px; }
.pd-reviews-link { color: #666; font-size: 13px; cursor: pointer; }
.pd-reviews-link:hover { color: var(--accent); text-decoration: underline; }
.pd-sold { font-size: 13px; color: #EF4444; font-weight: 600; }

.pd-price-block { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-price { font-size: 32px; font-weight: 800; color: var(--accent); }
.pd-was-price { font-size: 18px; color: #999; }
.pd-save-badge { background: #FEF2F2; color: #EF4444; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }

.pd-short { color: #555; font-size: 15px; line-height: 1.7; margin-bottom: 20px; }

/* Features inline */
.pd-features-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.pd-feat-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #555; padding: 8px 12px; background: #f8fafb; border-radius: 8px; }
.pd-feat-icon { font-size: 18px; }

/* Variants */
.pd-variants { margin-bottom: 20px; }
.pd-variant-group { margin-bottom: 12px; }
.pd-variant-label { font-size: 13px; font-weight: 600; color: #333; margin-bottom: 6px; display: block; }
.pd-variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.pd-var-btn {
  padding: 8px 16px; border: 2px solid #eee; border-radius: 8px; background: #fff;
  font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.pd-var-btn:hover { border-color: #ccc; }
.pd-var-btn.active { border-color: var(--accent); background: #fef2f2; color: var(--accent); font-weight: 600; }

/* Urgency */
.pd-urgency {
  display: flex; align-items: center; gap: 8px;
  background: #FFF7ED; border: 1px solid #FED7AA; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; color: #C2410C; margin-bottom: 16px;
}
.pd-urgency-dot { width: 8px; height: 8px; background: #EF4444; border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.pd-in-stock { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #16A34A; margin-bottom: 16px; font-weight: 500; }
.green-dot { width: 8px; height: 8px; background: #16A34A; border-radius: 50%; }

/* Actions */
.pd-actions { display: flex; gap: 12px; margin-bottom: 16px; }
.pd-qty-wrap { display: flex; align-items: center; border: 2px solid #eee; border-radius: 10px; overflow: hidden; }
.pd-qty-btn { width: 40px; height: 48px; border: none; background: #fafafa; font-size: 18px; cursor: pointer; color: #333; }
.pd-qty-btn:hover { background: #f0f0f0; }
.pd-qty-input { width: 50px; text-align: center; border: none; font-size: 16px; font-weight: 600; outline: none; -moz-appearance: textfield; }
.pd-qty-input::-webkit-inner-spin-button { display: none; }
.pd-add-cart {
  flex: 1; padding: 14px 20px; border: none;
  background: var(--accent); color: #fff;
  font-size: 16px; font-weight: 700; border-radius: 10px;
  cursor: pointer; letter-spacing: 0.5px; transition: all 0.2s;
}
.pd-add-cart:hover { background: var(--accent-hover, #C2410C); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(234,88,12,0.28); }
.pd-add-cart:active { transform: translateY(0); }

/* Trust */
.pd-trust-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.pd-trust-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #666; padding: 6px 0; }

.pd-payments { display: flex; gap: 6px; align-items: center; opacity: 0.7; }
.pd-payments img { height: 22px; }

/* ─── Tabs ─── */
.pd-tabs-section { padding: 0 0 48px; }
.pd-tabs-nav {
  display: flex; border-bottom: 2px solid #f0f0f0; gap: 0; margin-bottom: 32px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.pd-tab {
  padding: 14px 24px; border: none; background: none;
  font-size: 14px; font-weight: 600; color: #888; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px; white-space: nowrap; transition: all 0.2s;
}
.pd-tab:hover { color: #333; }
.pd-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.pd-tab-content { display: block; margin-top: 32px; padding-top: 28px; border-top: 1px solid #eef0f3; }
.pd-tab-content.active { display: block; }
.pd-tab-content:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
/* The section strip scrolls here; without this the heading lands under the sticky
   top bar and the reader sees the paragraph after the title they asked for. */
.pd-tab-content, .pd-size-guide { scroll-margin-top: 96px; }
.pd-section-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 18px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
  scroll-margin-top: 80px;
}
@media (max-width: 768px) {
  .pd-section-title { font-size: 19px; margin-bottom: 14px; }
  .pd-tab-content { margin-top: 24px; padding-top: 20px; }
}

/* Description */
.pd-description { line-height: 1.8; color: #444; font-size: 15px; max-width: 100%; }
.pd-description h2, .pd-description h3 { margin: 20px 0 10px; color: #1a1a2e; }
.pd-description ul, .pd-description ol { padding-left: 20px; margin: 12px 0; }
.pd-description img { border-radius: 8px; margin: 16px 0; }
.pd-size-guide { margin-top: 32px; padding-top: 24px; border-top: 1px solid #f0f0f0; }
.pd-size-guide h3 { margin-bottom: 12px; color: #1a1a2e; }
.pd-size-guide table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pd-size-guide th, .pd-size-guide td { padding: 8px 12px; border: 1px solid #eee; text-align: center; }
.pd-size-guide th { background: #fafafa; font-weight: 600; }

/* Features: short product facts and longer buying context carry different visual weight. */
.pd-features-grid { display: grid; gap: 14px; }
.pd-feature-facts,
.pd-feature-explainers { display: grid; gap: 14px; }
.pd-feature-facts { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.pd-feature-explainers { grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.pd-feature-facts:empty,
.pd-feature-explainers:empty { display: none; }
.pd-feature-card {
  position: relative; min-width: 0; padding: 20px 22px; text-align: left;
  background: #f7f9f8; border: 1px solid #e1e7e4; border-radius: 8px;
  display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: start;
  align-content: start; row-gap: 7px; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.pd-feature-card::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 3px; background: #1fa97c; opacity: 0; transition: opacity .2s; }
.pd-feature-card:hover { transform: translateY(-2px); border-color: #b9d7cc; box-shadow: 0 14px 28px -24px rgba(18,24,31,.55); }
.pd-feature-card:hover::before { opacity: 1; }
.pd-feature-icon { width: 29px; height: 29px; display: grid; place-items: center; grid-row: 1 / span 2; margin: -3px 0 0; color: #167c5e; background: #fff; border: 1px solid #c9d9d3; border-radius: 50%; font-size: 17px; line-height: 1; }
.pd-feature-card h4 { margin: 0; color: #12181f; font-family: 'Barlow Condensed','Barlow',sans-serif; font-size: 18px; font-weight: 700; line-height: 1.1; }
.pd-feature-card p { margin: 0; color: #68736f; font-size: 13px; line-height: 1.55; }
.pd-feature-card--fact { min-height: 122px; }
.pd-feature-card--explainer { min-height: 190px; padding: 24px 26px; background: #fff; }
.pd-feature-card--explainer::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: linear-gradient(90deg,#1fa97c 0 82%,#ddf247 82%); }
.pd-feature-card--explainer h4 { font-size: 22px; }
.pd-feature-card--explainer p { max-width: 62ch; color: #53605c; font-size: 13.5px; line-height: 1.62; }
@media (max-width: 760px) {
  .pd-feature-facts,
  .pd-feature-explainers { grid-template-columns: 1fr; }
  .pd-feature-card--fact,
  .pd-feature-card--explainer { min-height: 0; }
  .pd-feature-card--explainer { padding: 21px 20px; }
}

/* Specs */
.pd-specs-table { width: 100%; max-width: 600px; border-collapse: collapse; }
.pd-specs-table tr:nth-child(even) { background: #fafafa; }
.pd-specs-table th { text-align: left; padding: 10px 14px; font-size: 13px; color: #666; font-weight: 500; width: 40%; }
.pd-specs-table td { padding: 10px 14px; font-size: 14px; color: #333; }

/* Reviews */
.pd-reviews-summary { display: flex; align-items: center; gap: 32px; margin-bottom: 32px; padding: 24px; background: #f8fafb; border-radius: 12px; }
.pd-reviews-avg { text-align: center; }
.pd-reviews-big { font-size: 48px; font-weight: 800; color: #1a1a2e; display: block; }
.pd-reviews-stars { margin: 4px 0; }
.pd-reviews-total { font-size: 13px; color: #888; }
.pd-reviews-list { display: flex; flex-direction: column; gap: 20px; }
.pd-review { padding: 20px; border: 1px solid #f0f0f0; border-radius: 12px; }
.pd-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.pd-review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.pd-review-name { font-weight: 600; font-size: 14px; }
.pd-verified { font-size: 11px; color: #16A34A; font-weight: 500; }
.pd-review-date { font-size: 12px; color: #999; margin-left: auto; }
.pd-review-title { font-weight: 600; margin-bottom: 6px; }
.pd-review-text { font-size: 14px; color: #555; line-height: 1.6; }

/* FAQ */
.pd-faq-list { max-width: 700px; }
.pd-faq-item { border-bottom: 1px solid #f0f0f0; }
.pd-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 16px 0; border: none; background: none;
  font-size: 15px; font-weight: 600; color: #333; cursor: pointer; text-align: left;
}
.pd-faq-q:hover { color: var(--accent); }
.pd-faq-arrow { transition: transform 0.2s; font-size: 18px; color: #999; }
.pd-faq-item.open .pd-faq-arrow { transform: rotate(90deg); }
.pd-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; color: #555; font-size: 14px; line-height: 1.7; }
.pd-faq-item.open .pd-faq-a { max-height: 300px; padding-bottom: 16px; }

/* Related — use existing .product-card styles */
.product-was-price { font-size: 12px; color: #999; margin-left: 6px; }

/* ─── Sticky Bar ─── */
.pd-sticky-bar {
  position: fixed; bottom: -80px; left: 0; right: 0; z-index: 1000;
  background: #fff; border-top: 1px solid #eee; padding: 10px 16px;
  transition: bottom 0.3s; box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
}
.pd-sticky-bar.visible { bottom: 0; }
.pd-sticky-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pd-sticky-info { display: flex; flex-direction: column; }
.pd-sticky-price { font-size: 18px; font-weight: 700; color: var(--accent); }
.pd-sticky-name { font-size: 12px; color: #888; }
.pd-sticky-btn {
  padding: 12px 32px; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer;
}
.pd-sticky-btn:hover { background: var(--accent-hover, #C2410C); }

/* ─── Lightbox ─── */
.pd-lightbox {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.pd-lightbox.open { opacity: 1; pointer-events: all; }
.lb-img { max-width: 85vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lb-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; }
.lb-prev, .lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); border: none; color: #fff;
  font-size: 36px; padding: 12px 16px; cursor: pointer; border-radius: 8px;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-counter { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .pd-grid { grid-template-columns: 1fr; gap: 24px; }
  .pd-gallery-wrap { position: static; }
  .pd-title { font-size: 20px; }
  .pd-price { font-size: 26px; }
  .pd-actions { flex-direction: column; }
  .pd-add-cart { width: 100%; }
  .pd-trust-row { grid-template-columns: 1fr 1fr; }
  .pd-features-row { grid-template-columns: 1fr; }
  .pd-tabs-nav { gap: 0; }
  .pd-tab { padding: 12px 16px; font-size: 13px; }
  /* No hard two-column rule here: it pinned 481-768px to two columns, so five cards
     became 2+2+1. auto-fit picks three at 768 and two lower down on its own, and
     mobile.css still forces a single column below 480. */
  .pd-reviews-summary { flex-direction: column; }
}

/* ═══════════════════════════════════════
   NEW: Trust line (compact, SHEIN/Target style)
   ═══════════════════════════════════════ */
.pd-trust-line {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 0; margin-top: 4px;
  border-top: 1px solid #f0f0f0;
}
.pd-trust-chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #555; font-weight: 500;
}
.pd-trust-chip svg { color: #16A34A; flex-shrink: 0; }

/* ═══════════════════════════════════════
   NEW: Wishlist button
   ═══════════════════════════════════════ */
.pd-wishlist-btn {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #eee; border-radius: 10px; background: #fff;
  cursor: pointer; transition: all 0.2s; color: #999;
}
.pd-wishlist-btn:hover { border-color: var(--accent); color: var(--accent); }
.pd-wishlist-btn.active { border-color: var(--accent); color: var(--accent); }

/* ═══════════════════════════════════════
   NEW: Review rating bars
   ═══════════════════════════════════════ */
.pd-reviews-bars { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 200px; }
.pd-bar-row { display: flex; align-items: center; gap: 8px; }
.pd-bar-label { font-size: 12px; color: #666; min-width: 34px; display: flex; align-items: center; gap: 2px; }
.pd-bar-track { flex: 1; height: 8px; background: #f0f0f0; border-radius: 4px; overflow: hidden; }
.pd-bar-fill { height: 100%; background: #F59E0B; border-radius: 4px; transition: width 0.4s; }
.pd-bar-count { font-size: 12px; color: #999; min-width: 20px; text-align: right; }

/* ═══════════════════════════════════════
   NEW: Review tags
   ═══════════════════════════════════════ */
.pd-review-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pd-review-tag {
  padding: 6px 14px; border: 1px solid #e0e0e0; border-radius: 20px;
  background: #fff; font-size: 12px; color: #555; cursor: pointer;
  transition: all 0.2s;
}
.pd-review-tag:hover { border-color: var(--accent); color: var(--accent); }
.pd-review-tag.active { background: #fef2f2; border-color: var(--accent); color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════
   NEW: Review body measurements
   ═══════════════════════════════════════ */
.pd-review-measurements {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px;
}
.pd-measure-tag {
  font-size: 11px; color: #666; background: #f5f5f5; padding: 3px 8px;
  border-radius: 4px;
}
.pd-measure-tag.fit { background: #ecfdf5; color: #16A34A; font-weight: 600; }

/* ═══════════════════════════════════════
   NEW: Review photos
   ═══════════════════════════════════════ */
.pd-review-photos {
  display: flex; gap: 8px; margin-top: 10px;
}
.pd-review-photos img {
  width: 72px; height: 72px; object-fit: cover;
  border-radius: 8px; cursor: pointer; border: 1px solid #eee;
  transition: opacity 0.2s;
}
.pd-review-photos img:hover { opacity: 0.85; }

/* ═══════════════════════════════════════
   NEW: Helpful button
   ═══════════════════════════════════════ */
.pd-review-footer { margin-top: 10px; }
.pd-helpful-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border: 1px solid #e0e0e0; border-radius: 6px;
  background: #fff; font-size: 12px; color: #888; cursor: pointer;
  transition: all 0.2s;
}
.pd-helpful-btn:hover { border-color: #bbb; color: #555; }
.pd-helpful-btn.voted { background: #f0fdf4; border-color: #16A34A; color: #16A34A; cursor: default; }

/* ═══════════════════════════════════════
   Updated: pd-sold without emoji
   ═══════════════════════════════════════ */
.pd-sold {
  font-size: 13px; color: #EF4444; font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}
.pd-sold::before {
  content: ''; display: inline-block;
  width: 6px; height: 6px; background: #EF4444;
  border-radius: 50;
}

/* ═══════════════════════════════════════
   Updated: Reviews summary flex
   ═══════════════════════════════════════ */
.pd-reviews-summary {
  display: flex; align-items: center; gap: 32px;
  margin-bottom: 24px; padding: 24px; background: #f8fafb; border-radius: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   Responsive additions
   ═══════════════════════════════════════ */
@media (max-width: 768px) {
  .pd-trust-line { flex-direction: column; align-items: flex-start; gap: 8px; }
  .pd-actions { flex-wrap: wrap; }
  .pd-wishlist-btn { width: 48px; height: 48px; }
  .pd-reviews-bars { min-width: auto; }
  .pd-review-photos img { width: 60px; height: 60px; }
}

/* ═══════════════════════════════════════
   Player notes — review entry and form
   ═══════════════════════════════════════ */
.pd-reviews-eyebrow,
.rm-kicker,
.rev-cta-wide__index {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #167c5e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.pd-reviews-heading {
  display: grid;
  grid-template-columns: minmax(240px,.8fr) minmax(280px,1.2fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfe5e1;
}
.pd-reviews-heading .pd-section-title { margin: 0; }
.pd-reviews-eyebrow { color: #167c5e; margin-bottom: 8px; }
.pd-reviews-heading p {
  max-width: 520px;
  margin: 0;
  color: #66716d;
  font-size: 14px;
  line-height: 1.55;
}
.pd-reviews-subtitle {
  margin: 24px 0 16px;
  color: #12181f;
  font-family: 'Barlow Condensed','Barlow',sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.rev-cta-wide {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,340px);
  margin: 28px 0 8px;
  color: #12181f;
  background: #f7faf8;
  border: 1px solid #dce7e1;
  border-radius: 10px;
}
.rev-cta-wide__lead {
  padding: 26px 30px;
}
.rev-cta-wide__index { color: #167c5e; }
.rev-cta-wide h3 {
  margin: 0 0 8px;
  color: #12181f;
  font-family: 'Barlow Condensed','Barlow',sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1;
}
.rev-cta-wide p {
  max-width: 590px;
  margin: 0;
  color: #66716d;
  font-size: 14px;
  line-height: 1.6;
}
.rev-cta-wide__action {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  border-left: 1px solid #dce7e1;
}
.rev-cta-wide__action > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 17px;
  color: #fff;
  background: #1fa97c;
  border: 0;
  border-radius: 8px;
  font-family: Barlow, -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.rev-cta-wide__action > button:hover { background: #168f69; transform: translateY(-1px); }
.rev-cta-wide__action > button:focus-visible { outline: 3px solid #12181f; outline-offset: 2px; }
.rev-cta-wide__facts {
  display: grid;
  gap: 7px;
  margin-top: 13px;
}
.rev-cta-wide__facts span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #65716c;
  font-size: 11.5px;
}
.rev-cta-wide__facts i {
  width: 5px;
  height: 5px;
  background: #1fa97c;
  border-radius: 50%;
}

body.rm-open { overflow: hidden; }
.rm-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10060;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7,14,12,.72);
  backdrop-filter: blur(7px);
}
.rm-dialog {
  width: min(100%,580px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dce4df;
  border-radius: 12px;
  box-shadow: 0 30px 90px rgba(0,0,0,.38);
}
.rm-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 28px 23px;
  color: #12181f;
  background: #fff;
  border-bottom: 1px solid #dce4df;
}
.rm-kicker { color: #167c5e; margin-bottom: 7px; }
.rm-header h2 {
  margin: 0;
  color: #12181f;
  font-family: 'Barlow Condensed','Barlow',sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}
.rm-close {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  color: #61706a;
  background: #f4f7f5;
  border: 1px solid #dce4df;
  border-radius: 50%;
  font: 300 28px/1 Arial,sans-serif;
  cursor: pointer;
}
.rm-close:hover { color: #fff; background: #1fa97c; border-color: #1fa97c; }
.rm-close:focus-visible { outline: 3px solid #1fa97c; outline-offset: 2px; }
.rm-body { padding: 23px 28px 28px; }
.rm-product {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 21px;
  padding: 11px 13px;
  background: #e9efeb;
  border-left: 3px solid #1fa97c;
  color: #12181f;
  font-size: 13px;
}
.rm-product span {
  color: #74807b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.rm-product strong { font-weight: 700; }
.rm-fieldset { margin: 0 0 17px; padding: 0; border: 0; }
.rm-fieldset legend,
.rm-label {
  display: block;
  margin: 0 0 8px;
  color: #28332f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.rm-label span { margin-left: 4px; color: #8a9590; font-weight: 500; }
.rm-stars { display: flex; width: max-content; gap: 3px; }
.rm-stars button {
  width: 43px;
  height: 43px;
  padding: 0;
  color: #cbd3cf;
  background: transparent;
  border: 0;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: color .12s ease, transform .12s ease;
}
.rm-stars button.is-active { color: #f5a524; }
.rm-stars button:hover { transform: translateY(-2px) scale(1.06); }
.rm-stars button:focus-visible { outline: 2px solid #1fa97c; outline-offset: 1px; border-radius: 4px; }
.rm-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 19px; }
.rm-chip {
  min-height: 34px;
  padding: 0 12px;
  color: #50605a;
  background: #fff;
  border: 1px solid #d5ddd8;
  border-radius: 999px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.rm-chip:hover { color: #167c5e; border-color: #1fa97c; }
.rm-chip.rm-on { color: #0b513d; background: #dff5eb; border-color: #1fa97c; }
.rm-body textarea,
.rm-body input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 13px;
  color: #12181f;
  background: #fff;
  border: 1px solid #cfd8d3;
  border-radius: 7px;
  outline: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.rm-body textarea { min-height: 105px; resize: vertical; }
.rm-body input { margin-bottom: 14px; }
.rm-body textarea::placeholder,
.rm-body input::placeholder { color: #9aa49f; }
.rm-body textarea:focus,
.rm-body input:focus { border-color: #1fa97c; box-shadow: 0 0 0 3px rgba(31,169,124,.13); }
.rm-field-note {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 6px 0 18px;
  color: #7d8883;
  font-size: 10.5px;
  line-height: 1.4;
}
.rm-field-note span:last-child { flex-shrink: 0; font-variant-numeric: tabular-nums; }
.rm-public-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 15px;
  color: #66716d;
  font-size: 11px;
  line-height: 1.45;
}
.rm-public-note > span:first-child { color: #1fa97c; font-size: 15px; line-height: 1; }
.rm-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 17px;
  color: #fff;
  background: #167c5e;
  border: 0;
  border-radius: 7px;
  font-family: Barlow, -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.rm-submit:hover { background: #116b50; transform: translateY(-1px); }
.rm-submit:focus-visible { outline: 3px solid #12181f; outline-offset: 2px; }
.rm-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.rm-result { display: none; margin-top: 10px; padding: 9px 11px; border-radius: 6px; font-size: 12px; text-align: center; }
.rm-result.is-error { display: block; color: #a51d2d; background: #fff0f1; }
.rm-result.is-success { display: block; color: #0d6a4e; background: #e3f6ee; }

@media (max-width: 768px) {
  .pd-reviews-heading { grid-template-columns: 1fr; gap: 8px; }
  .rev-cta-wide { grid-template-columns: 1fr; }
  .rev-cta-wide__lead { padding: 24px 22px 25px; }
  .rev-cta-wide__action { padding: 0 22px 22px; border-left: 0; }
  .rm-modal { align-items: flex-end; padding: 0; }
  .rm-dialog { width: 100%; max-height: 94vh; border-radius: 14px 14px 0 0; }
  .rm-header { padding: 21px 20px 19px; }
  .rm-header h2 { font-size: 29px; }
  .rm-body { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .rev-cta-wide__action > button,
  .rm-stars button,
  .rm-submit { transition: none; }
}

/* ─── Padel product-detail hierarchy ─── */
.pd-gallery-progress,
.pd-mobile-accordions { display: none; }

.pd-kicker-row a {
  border-radius: 999px !important;
}

.pd-fulfilment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 4px 0 18px;
}

.pd-fulfilment-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 13px 14px;
  color: #12181f;
  background: #f4f7f3;
  border: 1px solid #dce5df;
  border-radius: 9px;
}

.pd-fulfilment-row > span:last-child {
  display: grid;
  gap: 3px;
}

.pd-fulfilment-row strong {
  font-size: 13px;
  line-height: 1.25;
}

.pd-fulfilment-row small {
  color: #68736f;
  font-size: 11.5px;
  line-height: 1.35;
}

.pd-fulfilment-icon {
  width: 9px;
  height: 9px;
  margin-top: 4px;
  background: #1fa97c;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(31, 169, 124, .12);
  flex: 0 0 auto;
}

.pd-fulfilment.is-oos .pd-fulfilment-icon {
  background: #8b9590;
  box-shadow: 0 0 0 4px rgba(120, 130, 126, .12);
}

.pd-fulfilment-row--delivery svg {
  color: #167c5e;
  flex: 0 0 auto;
}

.pd-compare-btn,
.cmp-toggle--pd {
  min-width: 52px;
  min-height: 52px;
  justify-content: center;
}

.pd-brand-player-note {
  padding: 42px 0;
  background: #12181f;
}

.pd-brand-player-note__inner {
  position: relative;
  max-width: 760px;
  padding-left: 22px;
  border-left: 3px solid #ddf247;
}

.pd-brand-player-note__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #ddf247;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pd-brand-player-note h2 {
  margin: 0 0 9px;
  color: #fff;
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  font-size: 30px;
  line-height: 1.05;
}

.pd-brand-player-note p {
  margin: 0 0 15px;
  color: #c8d0cc;
  font-size: 14px;
  line-height: 1.55;
}

.pd-brand-player-note a {
  color: #ddf247;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pd-section { background: #f4f7f3 !important; }
  .pd-section .container,
  .pd-tabs-section .container { width: 100%; max-width: none; }

  .pd-grid { gap: 8px !important; }
  .pd-gallery-wrap {
    margin: 0 !important;
    padding: 12px 0 10px !important;
    background: #fff;
  }

  .pd-main-wrap {
    overflow: visible;
    padding-top: 0 !important;
    background: #f7f9f7;
    border: 0;
    border-radius: 0;
    cursor: default;
    touch-action: pan-y;
  }

  .pd-main-wrap:hover .pd-main-img { transform: none; }
  .pd-cover-box {
    width: calc(100% - 32px) !important;
    max-width: 430px !important;
    min-height: 300px;
    display: grid;
    place-items: center;
    background: #f7f9f7;
  }

  .pd-main-img {
    max-height: 430px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .pd-no-img {
    width: 100%;
    min-height: 330px;
    background: #f1f4f1;
  }

  .pd-navarrow {
    width: 44px !important;
    height: 52px !important;
    color: #12181f !important;
    background: rgba(255, 255, 255, .9) !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 16px rgba(18, 24, 31, .12) !important;
  }

  .pd-navarrow.prev { left: 10px !important; }
  .pd-navarrow.next { right: 10px !important; }
  .pd-gallery-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 32px);
    margin: 10px auto 0;
    color: #66716d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .pd-gallery-swipe-hint::before {
    content: '↔';
    margin-right: 5px;
    color: #167c5e;
  }

  .pd-cover-wish {
    color: #12181f !important;
    border-color: #dce4df !important;
    box-shadow: 0 5px 18px rgba(18, 24, 31, .13) !important;
  }

  .pd-info {
    margin: 0 !important;
    padding: 22px 16px 24px !important;
    background: #fff;
  }

  .pd-kicker-row { margin-bottom: 10px !important; }
  .pd-kicker-row a,
  .pd-kicker-row span {
    min-height: 30px;
    box-sizing: border-box;
    padding: 7px 11px !important;
    font-size: 10px !important;
    letter-spacing: .08em !important;
  }

  .pd-section .pd-info .pd-title {
    margin: 0 0 13px;
    color: #12181f;
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-size: clamp(27px, 7.5vw, 30px) !important;
    font-weight: 800;
    letter-spacing: -.015em;
    line-height: 1.03;
  }

  .pd-rating-row {
    gap: 8px;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8e4;
  }

  .pd-rating-row > span:first-child { flex-basis: 100%; }
  .pd-price-block {
    align-items: center;
    gap: 8px 12px;
    margin: 0 0 20px;
  }

  .pd-section .pd-info .pd-price {
    color: #12181f;
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-size: 34px !important;
    letter-spacing: -.02em;
    line-height: 1;
  }

  .pd-was-price { font-size: 15px; }
  .pd-save-badge {
    padding: 5px 8px;
    color: #0b513d;
    background: #ddf247;
    border-radius: 5px;
  }

  .pd-variants {
    margin: 0 0 18px;
    padding: 17px 0 6px;
    border-top: 1px solid #e2e8e4;
  }

  .pd-variant-label {
    margin-bottom: 9px;
    color: #12181f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .pd-var-btn {
    min-width: 48px;
    min-height: 44px;
    padding: 8px 14px;
    color: #28332f;
    border: 1px solid #ccd6d0;
    border-radius: 7px;
  }

  .pd-var-btn.active {
    color: #fff;
    background: #167c5e;
    border-color: #167c5e;
  }

  .pd-fulfilment {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0 0 18px;
  }

  .pd-fulfilment-row { padding: 13px; }
  .pd-actions {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 9px;
    margin: 0 0 10px;
  }

  .pd-actions .pd-add-cart {
    min-height: 54px;
    padding: 13px 15px;
    background: #167c5e;
    border-radius: 7px;
    font-size: 14px;
    letter-spacing: .02em;
  }

  .pd-actions .pd-oos { grid-column: 1 / -1; }
  .pd-actions .pd-compare-btn,
  .pd-actions .cmp-toggle--pd {
    grid-column: 2;
    width: 48px;
    min-width: 48px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    color: #28332f;
    background: #fff;
    border: 1px solid #ccd6d0;
    border-radius: 7px;
  }

  .pd-actions .pd-compare-btn span,
  .pd-actions .cmp-toggle--pd {
    font-size: 0;
  }

  .pd-actions .cmp-toggle--pd::before {
    content: '⇄';
    font-size: 20px;
    line-height: 1;
  }

  .pd-actions--oos .pd-compare-btn,
  .pd-actions--oos .cmp-toggle--pd {
    grid-column: 1 / -1;
    width: 100%;
  }

  .pd-actions--oos .pd-compare-btn span,
  .pd-actions--oos .cmp-toggle--pd {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    font-size: 13px;
  }

  .pd-actions--oos .cmp-toggle--pd::before { margin-right: 7px; font-size: 18px; }
  .pd-key-parameters {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 7px !important;
    margin: 19px 0 12px !important;
    padding-top: 18px;
    border-top: 1px solid #e2e8e4;
  }

  .pd-key-parameters > span {
    display: grid !important;
    gap: 3px !important;
    align-content: start;
    min-height: 58px;
    padding: 10px 11px !important;
    background: #f4f7f3 !important;
    border: 1px solid #e0e7e2;
    border-radius: 7px !important;
    line-height: 1.25;
  }

  .pd-key-parameters strong { font-size: 10px; letter-spacing: .05em; text-transform: uppercase; }
  .pd-stock-old,
  .pd-in-stock { display: none !important; }

  .pd-mobile-accordions {
    display: block;
    margin-bottom: 8px;
    background: #fff;
  }

  .pd-accordion {
    border-bottom: 1px solid #dfe6e1;
  }

  .pd-accordion:first-child { border-top: 1px solid #dfe6e1; }
  .pd-accordion summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 16px;
    color: #12181f;
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
  }

  .pd-accordion summary::-webkit-details-marker { display: none; }
  .pd-accordion-plus {
    position: relative;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .pd-accordion-plus::before,
  .pd-accordion-plus::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 2px;
    background: #167c5e;
    transition: transform .18s ease;
  }

  .pd-accordion-plus::after { transform: rotate(90deg); }
  .pd-accordion[open] .pd-accordion-plus::after { transform: rotate(0); }
  .pd-accordion-body {
    padding: 0 16px 20px;
    color: #4d5954;
    font-size: 14px;
    line-height: 1.65;
  }

  .pd-accordion-body p:last-child { margin-bottom: 0; }
  .pd-mobile-specs { margin: 0; }
  .pd-mobile-specs > div {
    display: grid;
    grid-template-columns: minmax(105px, .85fr) 1.15fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #edf1ee;
  }

  .pd-mobile-specs > div:last-child { border-bottom: 0; }
  .pd-mobile-specs dt { color: #78827e; font-size: 12px; }
  .pd-mobile-specs dd { margin: 0; color: #28332f; font-weight: 650; }

  #tab-desc,
  #tab-specs { display: none !important; }

  .pd-tabs-section { padding: 0 0 8px !important; }
  .pd-tab-content {
    margin-bottom: 8px !important;
    padding: 22px 16px !important;
  }

  .pd-section-title {
    font-family: 'Barlow Condensed', 'Barlow', sans-serif;
    font-size: 25px;
    line-height: 1.05;
  }

  .pd-brand-player-note { padding: 30px 0; }
  .pd-brand-player-note__inner { padding-left: 16px; }
  .pd-brand-player-note h2 { font-size: 27px; }

  .pd-similar-section {
    padding: 30px 0 calc(30px + env(safe-area-inset-bottom, 0px)) !important;
  }

  .pd-similar-section .prod-grid-portal {
    display: grid !important;
    grid-auto-flow: column;
    grid-auto-columns: minmax(172px, 46vw);
    grid-template-columns: none !important;
    gap: 12px !important;
    overflow-x: auto;
    padding: 2px 1px 12px;
    scroll-snap-type: x proximity;
  }

  .pd-similar-section .product-card { scroll-snap-align: start; }
}

@media (max-width: 374px) {
  .pd-key-parameters { grid-template-columns: 1fr; }
  .pd-main-img { max-height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  .pd-accordion-plus::before,
  .pd-accordion-plus::after { transition: none; }
}
