/* ===== GAXEL Bloom — Product Page ===== */
:root {
  --pdp-bg: #ffffff;
  --pdp-ink: #2a2230;
  --pdp-text: #4a4350;
  --pdp-muted: #6e6675;
  --pdp-pink: #ec5a92;
  --pdp-pink-dark: #d63f7e;
  --pdp-pink-soft: #fbe7f0;
  --pdp-pink-softer: #fdf1f6;
  --pdp-line: #f0e3ea;
  --pdp-green: #2fb872;
  --pdp-radius: 24px;
  --pdp-display: "Quicksand", "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--pdp-bg);
  color: var(--pdp-text);
  font-family: "DM Sans", Arial, sans-serif;
}

.pdp-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 70px;
}

/* ---------- Breadcrumb ---------- */
.pdp-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pdp-muted);
  margin-bottom: 26px;
}
.pdp-crumbs a { color: var(--pdp-muted); text-decoration: none; }
.pdp-crumbs a:hover { color: var(--pdp-pink); }
.pdp-crumbs .sep { color: #c9bcc4; }
.pdp-crumbs .current { color: var(--pdp-ink); font-weight: 700; }

/* ---------- Hero / Buy ---------- */
.pdp-hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 44px;
}

/* Left info */
.pdp-kicker {
  display: inline-block;
  font-family: var(--pdp-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--pdp-pink-dark);
  background: var(--pdp-pink-soft);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.pdp-title {
  margin: 0;
  font-family: var(--pdp-display);
  line-height: .9;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--pdp-ink);
}
.pdp-title { font-size: 30px; }
.pdp-title span {
  display: block;
  font-size: 68px;
  color: var(--pdp-pink);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}
/* YouTube channel section (Flow) */
.pdp-youtube {
  margin: 8px auto 64px;
  text-align: center;
}
.pdp-youtube h2 {
  margin: 0 0 6px;
  font-family: var(--pdp-display);
  font-size: 30px;
  color: var(--pdp-ink);
}
.pdp-youtube > p {
  margin: 0 auto 22px;
  max-width: 540px;
  color: var(--pdp-muted, #6e6871);
  font-size: 15px;
}
.pdp-yt-frame {
  position: relative;
  width: min(820px, 100%);
  margin: 0 auto 20px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(67, 45, 75, .14);
  background: #000;
}
.pdp-yt-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pdp-yt-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  width: min(820px, 100%);
  margin: 0 auto 20px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--pdp-pink) 0%, var(--pdp-pink-dark) 100%);
  box-shadow: 0 18px 42px rgba(67, 45, 75, .14);
}
.pdp-yt-play {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--pdp-pink-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
}
.pdp-yt-play .material-symbols-outlined { font-size: 44px; }
.pdp-yt-card-text {
  font-family: var(--pdp-display);
  font-size: 30px;
  letter-spacing: .01em;
}
.pdp-yt-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: 6px;
  background: var(--pdp-pink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  text-decoration: none;
}
.pdp-yt-link:hover { background: var(--pdp-pink-dark); }
.pdp-subtitle {
  margin: 16px 0 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--pdp-ink);
}
.pdp-hero-desc {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--pdp-muted);
  max-width: 440px;
}
.pdp-desc {
  font-size: 16px;
  line-height: 1.7;
  max-width: 400px;
  color: var(--pdp-text);
  margin: 0 0 26px;
}

.pdp-benefits { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.pdp-benefits li { display: flex; align-items: center; gap: 14px; }
.pdp-benefits .material-symbols-outlined {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pdp-pink-soft);
  color: var(--pdp-pink-dark);
  font-size: 22px;
}
.pdp-benefits strong { display: block; font-size: 14px; color: var(--pdp-ink); font-weight: 800; }
.pdp-benefits div span { display: block; font-size: 13px; color: var(--pdp-muted); margin-top: 2px; }

/* Center gallery */
.pdp-gallery {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 0;
  background:
    radial-gradient(circle at 50% 42%, #fff, rgba(251,231,240,.45) 55%, transparent 72%);
}
.pdp-gallery .racket {
  width: 82%;
  max-width: 440px;
  object-fit: contain;
  filter: drop-shadow(0 26px 30px rgba(80, 30, 55, .18));
}
.pdp-gallery .racket.pink { transform: rotate(-6deg) translateY(6px); z-index: 2; }
.pdp-gallery .racket.purple {
  transform: rotate(6deg) translateY(6px);
  margin-left: -48px;
  filter: hue-rotate(35deg) saturate(.85) drop-shadow(0 26px 30px rgba(70, 40, 90, .2));
}

/* Right buy column (plain, no panel) */
.pdp-buy {
  background: transparent;
  border: 0;
  padding: 0;
  position: sticky;
  top: 100px;
}
.pdp-price { display: flex; align-items: baseline; gap: 7px; margin-bottom: 6px; }
.pdp-price .amount { font-family: var(--pdp-display); font-size: 40px; font-weight: 700; color: var(--pdp-pink); letter-spacing: -.01em; }
.pdp-price .cur { font-size: 14px; font-weight: 700; color: var(--pdp-muted); }
.pdp-ship { font-size: 14px; color: var(--pdp-muted); margin: 0 0 16px; }
.pdp-stock {
  display: inline-flex; align-items: center; gap: 9px;
  margin: 0 0 24px;
  font-size: 14px; font-weight: 600; color: var(--pdp-pink-dark);
}
.pdp-stock .material-symbols-outlined {
  width: 30px; height: 30px; display: grid; place-items: center;
  border-radius: 50%; background: var(--pdp-pink-soft); color: var(--pdp-pink-dark);
  font-size: 18px;
}

.pdp-qty-label { display: block; font-size: 13px; font-weight: 700; color: var(--pdp-ink); margin-bottom: 8px; }
.pdp-qty {
  display: inline-flex; align-items: center;
  border: 1px solid #e7d4de; border-radius: 10px;
  overflow: hidden; background: #fff; margin-bottom: 18px;
}
.pdp-qty button {
  width: 44px; height: 44px; border: 0; background: #fff;
  font-size: 20px; color: var(--pdp-ink); cursor: pointer;
}
.pdp-qty button:hover { background: var(--pdp-pink-soft); }
.pdp-qty input {
  width: 52px; height: 44px; border: 0; text-align: center;
  font-size: 15px; font-weight: 700; color: var(--pdp-ink);
  font-family: inherit; outline: none;
}

.pdp-add, .pdp-buynow {
  width: 100%; min-height: 54px; border-radius: 12px;
  font-size: 15px; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-family: inherit; transition: .2s ease;
}
.pdp-add { background: #fff; color: var(--pdp-ink); border: 1.5px solid var(--pdp-ink); margin-bottom: 12px; }
.pdp-add:hover { background: var(--pdp-pink-softer); border-color: var(--pdp-pink); color: var(--pdp-pink-dark); }
.pdp-buynow { background: var(--pdp-pink); color: #fff; border: 0; }
.pdp-buynow:hover { background: var(--pdp-pink-dark); }
.pdp-add:active, .pdp-buynow:active { transform: translateY(1px); }

.pdp-pay-link {
  display: block; text-align: center; margin: 14px 0 0;
  font-size: 13px; color: var(--pdp-ink); text-decoration: underline;
}
.pdp-pay-link:hover { color: var(--pdp-pink-dark); }

.pdp-help { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--pdp-line); }
.pdp-help-kicker {
  display: block; font-size: 11px; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--pdp-muted); margin-bottom: 8px;
}
.pdp-help p { font-size: 14px; color: var(--pdp-text); margin: 0; }
.pdp-help a { color: var(--pdp-pink-dark); text-decoration: underline; }

.pdp-trust {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 14px;
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--pdp-line);
}
.pdp-trust > div { display: flex; align-items: center; gap: 9px; }
.pdp-trust .material-symbols-outlined { font-size: 22px; color: var(--pdp-pink-dark); flex: 0 0 auto; }
.pdp-trust strong { display: block; font-size: 12px; color: var(--pdp-ink); font-weight: 800; }
.pdp-trust div span { font-size: 11px; color: var(--pdp-muted); }

/* ---------- Feature strip ---------- */
.pdp-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.pdp-strip > div {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 28px 18px;
  border: 1px solid var(--pdp-line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, var(--pdp-pink-softer));
  text-align: center;
  font-family: var(--pdp-display);
  font-size: 13.5px; font-weight: 700; text-transform: none;
  letter-spacing: 0; color: var(--pdp-ink); line-height: 1.35;
  box-shadow: 0 8px 24px rgba(214, 63, 126, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pdp-strip > div:hover {
  transform: translateY(-5px);
  border-color: #f2c2d6;
  box-shadow: 0 16px 34px rgba(214, 63, 126, .14);
}
.pdp-strip .material-symbols-outlined {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pdp-pink), var(--pdp-pink-dark));
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(214, 63, 126, .28);
}

/* ---------- Details (collapsible) ---------- */
.pdp-details { margin: 8px 0 50px; }
.pdp-details-bar { display: flex; justify-content: center; }
.pdp-details-toggle {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--pdp-display);
  font-size: 15px; font-weight: 700; color: var(--pdp-pink-dark);
  background: #fff; border: 1.5px solid #f2c2d6;
  padding: 13px 28px; border-radius: 999px; cursor: pointer;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pdp-details-toggle:hover { background: var(--pdp-pink-soft); box-shadow: 0 8px 20px rgba(214, 63, 126, .14); }
.pdp-details-toggle:active { transform: translateY(1px); }
.pdp-details-toggle .info { font-size: 20px; }
.pdp-details-toggle .chevron { font-size: 22px; transition: transform .25s ease; }
.pdp-details-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.pdp-details-panel { margin-top: 36px; animation: pdp-reveal .3s ease; }
.pdp-details-panel[hidden] { display: none; }
.pdp-details-panel > section { margin-bottom: 46px; }
.pdp-details-panel > section:last-child { margin-bottom: 0; }
@keyframes pdp-reveal {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Revelado al hacer scroll (lo activa producto-modelo.js) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- About / intro (inside details) ---------- */
.pdp-about {
  display: grid; grid-template-columns: minmax(auto, 540px) auto;
  justify-content: center; gap: 48px; align-items: center;
}
.about-copy { max-width: 520px; }
.pdp-about-title { margin: 0; }
.pdp-about .pdp-desc { margin-bottom: 0; }
.about-img {
  border-radius: var(--pdp-radius); overflow: hidden;
  box-shadow: 0 16px 40px rgba(80, 30, 55, .14);
  justify-self: center;
}
.about-img img { width: auto; height: 400px; max-height: 60vh; object-fit: cover; object-position: center; display: block; aspect-ratio: 4 / 5; }

/* ---------- Section headings (detail look) ---------- */
.pdp-love h2, .pdp-for h2, .pdp-specs h2 {
  font-size: 14px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .14em; color: var(--pdp-pink); margin: 0 0 24px;
}
.pdp-love h2 { text-align: center; }
.pdp-love h2::after {
  content: ""; display: block; width: 40px; height: 2px;
  background: var(--pdp-pink); border-radius: 2px; margin: 12px auto 0;
}
.pdp-for h2 { text-align: center; }
.pdp-specs h2 { text-align: left; }

/* ---------- Why you'll love ---------- */
.love-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.love-grid article { text-align: left; }
.love-grid .material-symbols-outlined {
  font-size: 36px; color: var(--pdp-pink); margin-bottom: 14px;
  font-variation-settings: 'FILL' 0, 'wght' 300;
}
.love-grid h3 {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--pdp-ink); margin: 0 0 9px; line-height: 1.3;
}
.love-grid p { font-size: 13px; line-height: 1.6; color: var(--pdp-muted); margin: 0; }

/* ---------- Who is bloom for ---------- */
.pdp-for {
  background: var(--pdp-pink-softer);
  border-radius: var(--pdp-radius);
  padding: 36px 40px;
}
.for-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.for-col + .for-col { border-left: 1px solid #efd3df; padding-left: 40px; }
.for-col h4 {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: var(--pdp-ink); margin: 0 0 16px;
}
.for-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.for-col li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--pdp-text); }
.for-col .material-symbols-outlined { font-size: 20px; flex: 0 0 auto; color: var(--pdp-pink); }

/* ---------- Specifications ---------- */
.specs-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 36px; border-radius: 12px; overflow: hidden;
}
.specs-grid .row {
  display: grid; grid-template-columns: 145px 1fr; align-items: center;
  padding: 13px 18px; font-size: 13px;
}
.specs-grid .row:nth-child(4n+3),
.specs-grid .row:nth-child(4n) { background: #faf3f7; }
.specs-grid .row span { color: var(--pdp-muted); }
.specs-grid .row b { color: var(--pdp-ink); font-weight: 700; }

/* ---------- Story banner ---------- */
.pdp-story {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: var(--pdp-pink-softer);
  border-radius: var(--pdp-radius); overflow: hidden;
  border: 1px solid var(--pdp-line);
}
.pdp-story .story-img { min-height: 280px; }
.pdp-story .story-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-story .story-copy { padding: 44px 40px; align-self: center; }
.pdp-story .story-copy p { font-size: 15px; line-height: 1.7; color: var(--pdp-text); margin: 0 0 22px; max-width: 460px; }
.pdp-story-btn {
  display: inline-flex; align-items: center; height: 50px; padding: 0 32px;
  background: var(--pdp-pink); color: #fff; border-radius: 999px;
  font-family: var(--pdp-display);
  font-size: 15px; font-weight: 700; letter-spacing: .01em;
  text-decoration: none; transition: .2s ease;
  box-shadow: 0 10px 22px rgba(214, 63, 126, .22);
}
.pdp-story-btn:hover { background: var(--pdp-pink-dark); transform: translateY(-2px); }

/* ---------- Carousel ---------- */
.pdp-carousel { margin: 0; align-self: start; display: flex; flex-direction: row; gap: 16px; align-items: stretch; }
.carousel-stage {
  position: relative;
  flex: 1; min-width: 0;
  display: grid; place-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 24px;
  min-height: 560px;
  overflow: hidden;
}
.carousel-track { position: relative; width: 100%; height: 540px; }
.carousel-slide {
  position: absolute; inset: 0; margin: auto;
  max-width: 92%; max-height: 100%;
  object-fit: contain;
  opacity: 0; visibility: hidden;
  transform: scale(.97);
  transition: opacity .4s ease, transform .4s ease;
  filter: drop-shadow(0 22px 28px rgba(80, 30, 55, .16));
}
.carousel-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border: 1px solid var(--pdp-line); border-radius: 50%;
  background: rgba(255, 255, 255, .9); color: var(--pdp-pink-dark);
  cursor: pointer; transition: .2s ease;
  box-shadow: 0 6px 16px rgba(80, 30, 55, .12);
}
.carousel-arrow:hover { background: var(--pdp-pink); color: #fff; border-color: var(--pdp-pink); }
.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }
.carousel-arrow .material-symbols-outlined { font-size: 26px; }

.carousel-thumbs {
  order: -1;
  display: flex; flex-direction: column; justify-content: flex-start; gap: 12px;
  flex: 0 0 auto;
}
.carousel-thumb {
  width: 76px; height: 76px;
  padding: 6px; cursor: pointer;
  background: #fff; border: 1.5px solid var(--pdp-line);
  border-radius: 12px; transition: .2s ease;
}
.carousel-thumb img { width: 100%; height: 100%; object-fit: contain; }
.carousel-thumb:hover { border-color: #f2c2d6; }
.carousel-thumb.is-active { border-color: var(--pdp-pink); box-shadow: 0 6px 16px rgba(214, 63, 126, .18); }

/* ---------- Highlights ---------- */
.pdp-highlights {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin: 16px 0 56px;
}
.hl-item { text-align: center; }
.hl-media {
  border-radius: var(--pdp-radius); overflow: hidden;
  background: linear-gradient(180deg, #fff, var(--pdp-pink-softer));
  border: 1px solid var(--pdp-line);
  aspect-ratio: 16 / 10; display: flex; align-items: center; justify-content: center; padding: 24px;
  margin-bottom: 22px;
}
.hl-media img {
  display: block;
  width: auto; height: auto;
  max-width: 80%; max-height: 82%;
  object-fit: contain;
  object-position: center;
}
.hl-item h3 {
  font-family: var(--pdp-display);
  font-size: 20px; font-weight: 700; letter-spacing: .04em;
  color: var(--pdp-ink); margin: 0 0 12px;
}
.hl-item p {
  font-size: 14px; line-height: 1.65; color: var(--pdp-muted);
  margin: 0 auto; max-width: 360px;
}

/* ---------- Related products ---------- */
.pdp-related { margin: 56px 0 10px; }
.pdp-related > h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px; font-weight: 600; color: var(--pdp-ink); margin: 0 0 26px;
}
.rel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.rel-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--pdp-line);
  border-radius: 16px; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.rel-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(80, 30, 55, .12); }
.rel-media {
  position: relative; aspect-ratio: 1 / 1;
  display: grid; place-items: center; padding: 24px;
  background: linear-gradient(180deg, #fff, var(--pdp-pink-softer));
}
.rel-media img { max-width: 82%; max-height: 100%; object-fit: contain; }
.rel-badge {
  position: absolute; top: 14px; left: 14px;
  background: #fff; color: var(--pdp-ink);
  font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 6px; box-shadow: 0 4px 10px rgba(0, 0, 0, .06);
}
.rel-badge.sale { background: var(--pdp-pink-soft); color: var(--pdp-pink-dark); }
.rel-badge.new { background: #e7f3ec; color: #2f8f5c; }
.rel-body { display: flex; flex-direction: column; flex: 1; padding: 16px 18px 18px; }
.rel-meta {
  display: flex; justify-content: space-between;
  font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pdp-muted); margin-bottom: 9px;
}
.rel-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px; font-weight: 600; color: var(--pdp-ink); margin: 0 0 8px;
}
.rel-desc { font-size: 13px; line-height: 1.55; color: var(--pdp-muted); margin: 0 0 14px; }
.rel-rating { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.rel-stars { display: inline-flex; }
.rel-stars .material-symbols-outlined { font-size: 17px; color: var(--pdp-pink); font-variation-settings: 'FILL' 1; }
.rel-stars .st-empty { color: #ecd2dd; }
.rel-rating .count { font-size: 12px; color: var(--pdp-muted); }
.rel-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rel-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px; font-weight: 700; color: var(--pdp-pink); line-height: 1.1;
}
.rel-price .old {
  display: block; font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px; font-weight: 500; color: var(--pdp-muted); text-decoration: line-through;
}
.rel-view {
  flex: 0 0 auto;
  border: 1px solid #d9c4cf; border-radius: 6px; padding: 9px 18px;
  font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--pdp-ink); text-decoration: none; transition: .2s ease;
}
.rel-view:hover { background: var(--pdp-pink); color: #fff; border-color: var(--pdp-pink); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .pdp-hero { grid-template-columns: 1fr; }
  .pdp-buy { position: static; }
  .love-grid { grid-template-columns: repeat(3, 1fr); }
  .rel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .pdp-title span { font-size: 54px; }
  .pdp-strip { grid-template-columns: 1fr 1fr; }
  .pdp-strip > div:nth-child(2) { border-right: 0; }
  .love-grid { grid-template-columns: 1fr 1fr; }
  .for-grid, .specs-grid { grid-template-columns: 1fr; column-gap: 0; }
  .for-col + .for-col { border-left: 0; padding-left: 0; padding-top: 20px; margin-top: 4px; border-top: 1px solid #efd3df; }
  .pdp-story { grid-template-columns: 1fr; }
  .pdp-story .story-copy { padding: 30px 24px; }
  .pdp-highlights { grid-template-columns: 1fr; gap: 30px; }
  .pdp-about { grid-template-columns: 1fr; gap: 28px; }
  .about-copy { max-width: none; }
  .pdp-carousel { flex-direction: column; }
  .carousel-thumbs { flex-direction: row; justify-content: center; }
  .carousel-stage { min-height: 380px; padding: 18px; }
  .carousel-track { height: 360px; }
  .carousel-slide { max-width: 92%; }
  .carousel-thumb { width: 60px; height: 60px; }
}
@media (max-width: 600px) {
  .pdp-container { width: min(1180px, calc(100% - 32px)); padding: 18px 0 56px; }
  .pdp-title { font-size: 26px; }
  .pdp-title span { font-size: 46px; }
  .pdp-subtitle { font-size: 16px; }
  .pdp-hero-desc { font-size: 13.5px; }
  .pdp-price .amount { font-size: 32px; }
  .pdp-love h2, .pdp-for h2, .pdp-specs h2 { font-size: 24px; }
  .pdp-related > h2 { font-size: 27px; }
  .pdp-about-title span { font-size: 52px; }
  .carousel-stage { min-height: 320px; padding: 14px; }
  .carousel-track { height: 300px; }
  .carousel-thumb { width: 54px; height: 54px; }
  .pdp-for { padding: 26px 20px; }
  .specs-grid .row { grid-template-columns: 130px 1fr; padding: 12px 16px; }
}
@media (max-width: 480px) {
  .love-grid { grid-template-columns: 1fr; }
  .pdp-trust { grid-template-columns: 1fr; }
  .rel-grid { grid-template-columns: 1fr; }
  .pdp-title span { font-size: 42px; }
  .rel-media { aspect-ratio: 4 / 3; }
}

/* ============================================================
   USABILIDAD Y FACTORES HUMANOS
   ============================================================ */

/* Saltar al contenido (accesibilidad / navegacion por teclado) */
.skip-link {
  position: absolute;
  left: 14px; top: -60px;
  z-index: 1000;
  background: var(--pdp-pink-dark);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

/* Foco visible y consistente (control y libertad del usuario) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--pdp-pink);
  outline-offset: 2px;
  border-radius: 6px;
}
#main-content:focus { outline: none; }

/* Boton principal: objetivo grande y claro (Ley de Fitts) + feedback al pulsar */
.pdp-add {
  min-height: 54px;
  font-size: 15px;
  letter-spacing: .02em;
}
.pdp-add .material-symbols-outlined { font-size: 20px; }
.pdp-add:active { transform: translateY(1px); }
.pdp-qty button:active { transform: scale(.94); }

/* Mensaje de confirmacion del carrito (visibilidad del estado del sistema) */
.pdp-cart-status {
  margin: 12px 0 0;
  min-height: 0;
  max-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-radius: 10px;
  background: #e8f7ee;
  color: #1f7a4d;
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: opacity .25s ease, max-height .25s ease, padding .25s ease;
}
.pdp-cart-status.is-visible {
  opacity: 1;
  max-height: 60px;
  padding: 12px;
}

/* Quitar el spinner del input numerico para una apariencia limpia */
.pdp-qty input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.pdp-qty input[type="number"]::-webkit-outer-spin-button,
.pdp-qty input[type="number"]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Respeto a quien prefiere menos movimiento (factores humanos / vestibular) */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .pdp-strip > div:hover,
  .pdp-add:active,
  .pdp-qty button:active { transform: none; }
}

/* Areas tactiles minimas en movil (Ley de Fitts en pantallas pequenas) */
@media (max-width: 760px) {
  .pdp-crumbs a { padding: 4px 0; }
  .pdp-qty button { width: 48px; height: 48px; }
  .pdp-qty input { height: 48px; }
}
