/* ═══════════════════════════════════════════
   PRODUCT PAGE STYLES
   Builds on top of styles.css
═══════════════════════════════════════════ */

/* ─── PDP HERO ─────────────────────────── */
.pdp-hero {
  padding: 0 0 var(--section-pad);
  padding-top: calc(25px + clamp(0.5rem, 1.5vw, 1rem));
  background: var(--warm-white);
}

.pdp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  position: sticky;
  top: 150px;
}

.pdp-gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

/* Slider track */
.gallery-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  touch-action: pan-y;
}

.gallery-track.dragging {
  transition: none;
}

.gallery-slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
}

.gallery-slide img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Nav arrows */
.gallery-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  min-width: 44px;
  display: flex;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.25s ease;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.gallery-nav-prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 0.6rem;
}

.gallery-nav-next {
  right: 0;
  justify-content: flex-end;
  padding-right: 0.6rem;
}

.pdp-gallery-main:hover .gallery-nav {
  opacity: 1;
}

.gallery-nav svg {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  color: var(--navy);
  transition: all 0.2s;
  flex-shrink: 0;
}

.gallery-nav:hover svg {
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.18);
  transform: scale(1.08);
}

/* Dot indicators (mobile) */
.gallery-dots {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  gap: 6px;
  z-index: 3;
}

.gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s;
}

.gallery-dot.active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.pdp-placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-light);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.5;
}

.pdp-placeholder-img.main {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f8f7f5 0%, #f0eeeb 100%);
}

.pdp-placeholder-img svg {
  width: 60px;
  height: 60px;
  opacity: 0.4;
}

.pdp-placeholder-img.main svg {
  width: 80px;
  height: 80px;
}

.pdp-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pdp-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.pdp-gallery-thumbs .pdp-thumb {
  min-width: 64px;
  max-width: 72px;
  flex-shrink: 0;
}

.pdp-thumb {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #fff;
  padding: 0;
}

.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--brand);
}

.pdp-placeholder-img.thumb {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #f8f7f5 0%, #f0eeeb 100%);
  padding: 0.4rem;
  font-size: 0.55rem;
}

.pdp-placeholder-img.thumb svg {
  display: none;
}

/* Product Info */
.pdp-info {
  padding-top: 0.5rem;
}

.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.pdp-breadcrumb a {
  color: var(--text-light);
  transition: color 0.2s;
}

.pdp-breadcrumb a:hover {
  color: var(--brand);
}

.pdp-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.pdp-subtitle {
  font-size: 1rem;
  color: var(--brand);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.pdp-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.pdp-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.pdp-review-count {
  font-size: 0.82rem;
  color: var(--text-mid);
  border-bottom: 1px dashed rgba(0,0,0,0.2);
  transition: color 0.2s;
}

.pdp-review-count:hover {
  color: var(--brand);
}

/* Price */
.pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.pdp-price-current {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--navy);
}

.pdp-price-original {
  font-size: 1.1rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.pdp-price-save {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red-therapy);
  background: rgba(221, 29, 29, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

/* Therapy tags */
.pdp-therapies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.pdp-therapy-tag {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  border: 1px solid;
}

.pdp-therapy-tag.red {
  color: var(--red-therapy);
  border-color: rgba(221, 29, 29, 0.2);
  background: rgba(221, 29, 29, 0.04);
}

.pdp-therapy-tag.heat {
  color: var(--amber);
  border-color: rgba(232, 160, 64, 0.25);
  background: rgba(232, 160, 64, 0.05);
}

.pdp-therapy-tag.massage {
  color: var(--brand);
  border-color: rgba(82, 113, 255, 0.2);
  background: rgba(82, 113, 255, 0.04);
}

/* Key benefits */
.pdp-key-benefits {
  margin-bottom: 1rem;
}

.pdp-key-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.pdp-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26,154,92,0.1);
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.pdp-key-benefits li strong {
  color: var(--navy);
}

/* Sale banner */
.pdp-sale-banner {
  background: rgba(221, 29, 29, 0.06);
  border: 1px solid rgba(221, 29, 29, 0.2);
  color: var(--red-therapy);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

/* Bundle */
.pdp-bundle {
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.pdp-bundle-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
}

.pdp-bundle-img {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.pdp-placeholder-img.bundle-thumb {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #f8f7f5 0%, #f0eeeb 100%);
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 0.25rem;
  font-size: 0.5rem;
  gap: 0;
}

.pdp-placeholder-img.bundle-thumb svg {
  display: none;
}

.pdp-bundle-details {
  flex: 1;
  min-width: 0;
}

.pdp-bundle-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}

.pdp-bundle-options {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.pdp-select {
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  background: #fff;
  color: var(--text-dark);
  cursor: pointer;
}

.pdp-bundle-price {
  text-align: right;
  flex-shrink: 0;
}

.pdp-bundle-was {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
  display: block;
}

.pdp-bundle-now {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

.pdp-bundle-free {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}

.pdp-bundle-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  background: #fff;
  font-size: 0.9rem;
  color: var(--text-mid);
  margin: -14px auto;
  position: relative;
  z-index: 1;
}

.pdp-bundle-total {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 0.8rem 1rem;
}

.pdp-bundle-savings {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red-therapy);
  text-align: right;
  margin-bottom: 0.2rem;
}

.pdp-bundle-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.pdp-bundle-total-was {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-weight: 400;
}

.pdp-bundle-total-now {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
}

/* Sizing link */
.pdp-sizing-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-mid);
  border-bottom: 1px dashed rgba(0,0,0,0.2);
  padding-bottom: 2px;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.pdp-sizing-link:hover {
  color: var(--brand);
}

/* CTA block */
.pdp-cta-block {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pdp-add-to-cart {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 1rem 2rem;
}

.pdp-bundle-cta {
  background: var(--green);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pdp-bundle-cta:hover {
  background: var(--green-deep);
}

.pdp-buy-now {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 100px;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.pdp-buy-now:hover {
  background: var(--navy);
  color: #fff;
}

/* Trust strip */
.pdp-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.35rem;
}

.pdp-trust-item svg {
  color: var(--green);
}

.pdp-trust-item span {
  font-size: 0.68rem;
  color: var(--text-mid);
  line-height: 1.3;
  font-weight: 700;
}

.pdp-testimonial-inline {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  margin-top: 1.2rem;
}

.pdp-testimonial-inline img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pdp-testimonial-inline blockquote {
  margin: 0;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.5;
  font-style: normal;
}

.pdp-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.78rem;
  color: var(--text-mid);
}

.pdp-testimonial-author .stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* ─── TRIPLE THERAPY STRIP ────────────── */
.pdp-therapy-strip {
  padding: var(--section-pad) 0;
  background: var(--navy);
  color: #fff;
}

.pdp-therapy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pdp-therapy-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.pdp-therapy-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.pdp-therapy-icon.red-icon {
  background: rgba(221, 29, 29, 0.15);
  color: var(--red-light);
}

.pdp-therapy-icon.heat-icon {
  background: rgba(232, 160, 64, 0.15);
  color: var(--amber);
}

.pdp-therapy-icon.massage-icon {
  background: rgba(82, 113, 255, 0.15);
  color: var(--brand-light);
}

.pdp-therapy-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.pdp-therapy-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pdp-therapy-spec {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

/* ─── LIFESTYLE SECTION ───────────────── */
.pdp-lifestyle {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.pdp-lifestyle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pdp-lifestyle-content .section-title {
  text-align: left;
}

.pdp-lifestyle-content .section-label {
  text-align: left;
}

.pdp-lifestyle-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pdp-lifestyle-visual video {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
}

.pdp-lifestyle-stats {
  display: flex;
  gap: 2rem;
}

.pdp-stat {
  display: flex;
  flex-direction: column;
}

.pdp-stat strong {
  font-size: 1.1rem;
  color: var(--navy);
}

.pdp-stat span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.pdp-placeholder-img.lifestyle {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0eeeb 0%, #e8e5e0 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
}

/* ─── WHAT'S IN THE BOX ──────────────── */
.pdp-inbox {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.pdp-inbox-header {
  text-align: center;
  margin-bottom: 3rem;
}

.pdp-inbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pdp-placeholder-img.inbox {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0eeeb 0%, #e8e5e0 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
}

.pdp-inbox-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.pdp-inbox-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
}

.pdp-inbox-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: rgba(82, 113, 255, 0.08);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-inbox-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.pdp-inbox-item p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}

/* ─── SPECIFICATIONS ─────────────────── */
.pdp-specs {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.pdp-specs-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.pdp-specs-grid {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
}

.pdp-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pdp-spec-row:last-child {
  border-bottom: none;
}

.pdp-spec-row:nth-child(even) {
  background: rgba(0,0,0,0.015);
}

.pdp-spec-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  min-width: 140px;
}

.pdp-spec-value {
  font-size: 0.85rem;
  color: var(--text-mid);
  text-align: right;
}

/* ─── REVIEW SUMMARY ─────────────────── */
.pdp-review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 2rem;
  margin-bottom: 2rem;
}

.pdp-review-score {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.pdp-review-big {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--navy);
  line-height: 1;
}

.pdp-review-total {
  font-size: 0.75rem;
  color: var(--text-light);
}

.pdp-review-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.pdp-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-mid);
}

.pdp-bar-row span:first-child {
  min-width: 42px;
  text-align: right;
}

.pdp-bar-row span:last-child {
  min-width: 30px;
}

.pdp-bar {
  flex: 1;
  height: 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.pdp-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
}

/* ─── FINAL CTA PRICE ────────────────── */
.pdp-final-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pdp-final-price .pdp-price-current {
  font-size: 2.5rem;
  color: #fff;
}

.pdp-final-price .pdp-price-original {
  color: rgba(255,255,255,0.5);
}

/* ─── STICKY MOBILE CTA ─────────────── */
.pdp-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  padding: 0.75rem 1rem;
}

.pdp-sticky-cta.visible {
  transform: translateY(0);
}

.pdp-sticky-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

.pdp-sticky-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.pdp-sticky-info strong {
  font-size: 0.85rem;
  color: var(--navy);
}

.pdp-sticky-info span {
  font-size: 0.78rem;
  color: var(--text-mid);
}

.pdp-sticky-info s {
  color: var(--text-light);
  font-size: 0.7rem;
  margin-left: 0.3rem;
}

.pdp-sticky-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.pdp-sticky-save {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red-therapy);
  background: rgba(221, 29, 29, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.pdp-sticky-btn {
  margin-left: auto;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .pdp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-hero {
    padding-top: clamp(0.5rem, 2vw, 1rem);
  }

  .pdp-gallery-main {
    border-radius: var(--radius);
  }

  .pdp-gallery-thumbs {
    gap: 0.4rem;
  }

  /* Show dots on mobile, always show arrows */
  .gallery-dots {
    display: flex;
  }

  .gallery-nav {
    opacity: 1;
  }

  .gallery-nav svg {
    width: 28px;
    height: 28px;
    padding: 5px;
  }

  .pdp-therapy-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pdp-therapy-card {
    padding: 1.5rem;
  }

  .pdp-lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-lifestyle-content .section-title,
  .pdp-lifestyle-content .section-label {
    text-align: center;
  }

  .pdp-lifestyle-content p {
    text-align: center;
  }

  .pdp-lifestyle-stats {
    justify-content: center;
  }

  .pdp-inbox-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-review-summary {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer {
    padding-bottom: 5rem;
  }
}

/* ─── MOBILE (≤600px) — 85% of traffic ─── */
@media (max-width: 600px) {
  /* ── Gallery ── */
  .pdp-gallery-thumbs {
    display: none;
  }
  .pdp-gallery-main {
    border-radius: 0;
    margin-left: calc(-1 * clamp(1rem, 4vw, 2rem));
    margin-right: calc(-1 * clamp(1rem, 4vw, 2rem));
    border: none;
  }
  .gallery-nav svg {
    width: 32px;
    height: 32px;
    padding: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }
  .gallery-dot {
    width: 8px;
    height: 8px;
    padding: 8px;
    background-clip: content-box;
  }

  /* ── Hero grid ── */
  .pdp-hero {
    padding-top: 0.25rem;
    padding-bottom: 2rem;
  }
  .pdp-hero-grid {
    gap: 1.25rem;
  }

  /* ── Product info ── */
  .pdp-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    margin-bottom: 0.3rem;
  }
  .pdp-subtitle {
    font-size: 0.88rem;
  }
  .pdp-short-desc {
    font-size: 0.88rem;
  }

  /* ── Stars / reviews link ── */
  .pdp-reviews-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* ── Price ── */
  .pdp-price-current {
    font-size: 1.75rem;
  }
  .pdp-price-save {
    font-size: 0.7rem;
  }

  /* ── Key benefits ── */
  .pdp-key-benefits li {
    font-size: 0.85rem;
    padding: 0.3rem 0;
    min-height: 36px;
    align-items: center;
  }

  /* ── Bundle card ── */
  .pdp-bundle-card {
    padding: 1rem;
  }
  .pdp-bundle-item {
    padding: 0.6rem 0.75rem;
    gap: 0.5rem;
  }
  .pdp-bundle-item-name {
    font-size: 0.82rem;
  }
  .pdp-bundle-item-price {
    font-size: 0.82rem;
  }
  .pdp-select {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
    min-height: 36px;
  }
  .pdp-bundle-total {
    font-size: 0.85rem;
    padding-top: 0.75rem;
  }

  /* ── CTA button ── */
  .pdp-cta-block .btn-primary {
    width: 100%;
    min-height: 52px;
    font-size: 1rem;
    justify-content: center;
  }

  /* ── Sizing link ── */
  .pdp-sizing-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* ── Trust strip ── */
  .pdp-trust-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .pdp-trust-item {
    font-size: 0.72rem;
    padding: 0.5rem;
  }
  .pdp-trust-item svg {
    width: 16px;
    height: 16px;
  }

  /* ── Therapy cards ── */
  .pdp-therapy-card {
    padding: 1.2rem 1rem;
  }
  .pdp-therapy-card h3 {
    font-size: 1.1rem;
  }
  .pdp-therapy-card p {
    font-size: 0.85rem;
  }

  /* ── Lifestyle section ── */
  .pdp-lifestyle-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .pdp-stat {
    align-items: center;
  }
  .pdp-stat-number {
    font-size: 1.8rem;
  }

  /* ── Specs ── */
  .pdp-spec-row {
    flex-direction: column;
    gap: 0.2rem;
  }
  .pdp-spec-value {
    text-align: left;
  }
  .pdp-spec-row {
    padding: 0.75rem 0;
  }

  /* ── Reviews ── */
  .pdp-review-summary {
    text-align: center;
  }
  .pdp-review-big {
    font-size: 2.8rem;
  }

  /* ── FAQ ── */
  .pdp-faq-question {
    font-size: 0.88rem;
    padding: 1rem;
    min-height: 48px;
  }
  .pdp-faq-answer-inner {
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
  }

  /* ── Sticky mobile CTA ── */
  .pdp-sticky-cta {
    padding: 0.6rem 1rem;
  }
  .pdp-sticky-cta .btn-primary {
    min-height: 48px;
    font-size: 0.92rem;
  }
  .footer {
    padding-bottom: 4.5rem;
  }
}

/* ═══════════════════════════════════════════
   MODAL
═══════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-mid);
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(0,0,0,0.06);
}

.modal-body {
  padding: 1.5rem;
}

.sizing-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.sizing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.sizing-table thead th {
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 0.8rem;
  font-weight: 600;
  font-size: 0.75rem;
  text-align: left;
  white-space: nowrap;
}

.sizing-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.sizing-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.sizing-table tbody td {
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text-mid);
}

.sizing-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.sizing-table tbody tr:nth-child(even) {
  background: rgba(0,0,0,0.02);
}

.sizing-notes {
  padding: 1rem;
  background: var(--cream);
  border-radius: var(--radius);
}

.sizing-notes h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.sizing-notes ul {
  padding-left: 1.2rem;
  list-style: disc;
}

.sizing-notes li {
  font-size: 0.8rem;
  color: var(--text-mid);
  padding: 0.15rem 0;
  line-height: 1.5;
}

.sizing-notes li strong {
  color: var(--navy);
}

@media (max-width: 600px) {
  .modal {
    max-height: 85vh;
  }

  .sizing-table {
    font-size: 0.72rem;
  }

  .sizing-table thead th,
  .sizing-table tbody td {
    padding: 0.5rem 0.5rem;
  }
}
