/* ============ Produktsida ============ */
.product-body { background: var(--cream); }
.product-header { position: sticky; top: 0; }

.product-main { max-width: 1180px; margin: 0 auto; padding: 1.4rem clamp(1rem, 4vw, 2.5rem) 0; }

.crumbs {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0.6rem 0 1.8rem;
}
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--coral); }
.crumbs strong { color: var(--charcoal); }
.crumbs span { opacity: 0.5; }

/* Hero: gallery + info */
.product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(300px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.gallery { position: sticky; top: 90px; }
.stage {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--tile);
  border: 1px solid rgba(28, 27, 25, 0.09);
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(28, 27, 25, 0.12);
}
.stage img {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.stage img.stage-photo { inset: 0; width: 100%; height: 100%; object-fit: cover; mix-blend-mode: normal; }
.stage video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.thumbs { display: flex; gap: 0.7rem; margin-top: 0.9rem; flex-wrap: wrap; }
.thumb {
  position: relative;
  width: 74px;
  height: 74px;
  border-radius: 14px;
  border: 2px solid rgba(28, 27, 25, 0.1);
  background: var(--tile);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; }
.thumb:hover { transform: translateY(-2px); border-color: rgba(28, 27, 25, 0.3); }
.thumb.active { border-color: var(--charcoal); }
.thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: #fff;
  background: rgba(28, 27, 25, 0.35);
}

/* Info column */
.pinfo-title { font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--charcoal); margin: 0.35rem 0 0.4rem; }
.pinfo-rating { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.pinfo-rating .stars { font-size: 1.05rem; }
.pinfo-rating-note { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.pinfo-price { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.3rem; }
.pinfo-lead { line-height: 1.7; margin-bottom: 1.2rem; }
.pinfo-features { list-style: none; display: grid; gap: 0.55rem; margin-bottom: 1.6rem; }
.pinfo-features li { padding-left: 1.5rem; position: relative; line-height: 1.55; font-size: 0.97rem; }
.pinfo-features li::before { content: "◆"; position: absolute; left: 0; top: 0.28em; color: var(--turquoise); font-size: 0.75em; }
.pinfo-size { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.pinfo-size-label { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }

/* Featured customer quote (verbatim from the live store's garment pages) */
.pinfo-quote {
  margin: 0 0 1.4rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--turquoise);
  background: rgba(28, 27, 25, 0.04);
  border-radius: 0 10px 10px 0;
}
.pinfo-quote p { font-size: 0.92rem; font-style: italic; line-height: 1.6; margin-bottom: 0.35rem; }
.pinfo-quote cite { font-size: 0.78rem; font-weight: 700; font-style: normal; color: var(--ink-soft); }

/* Colorway picker (polos: White/Black are variants of the same product) */
.pinfo-colors { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.colorways { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.colorway {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  border: 1.5px solid rgba(28, 27, 25, 0.22);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-on-cream);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.colorway i { width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(28, 27, 25, 0.25); }
.colorway:hover { border-color: var(--turquoise); }
.colorway.active { border-color: var(--charcoal); background: rgba(28, 27, 25, 0.06); }
.pinfo-stock {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #1d7d44;
  margin-bottom: 0.9rem;
}
.stock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2eaf5f;
  box-shadow: 0 0 0 4px rgba(46, 175, 95, 0.16);
}
.pinfo-buy { max-width: none; }
.pinfo-secure { font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); margin-top: 0.7rem; text-align: center; }
.pinfo .usps, .pinfo-usps { margin-top: 1.6rem; }

/* Accordions */
.accordions { margin-top: 2rem; border-top: 1px solid rgba(28, 27, 25, 0.12); }
.accordions details { border-bottom: 1px solid rgba(28, 27, 25, 0.12); }
.accordions summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.05rem 0;
  font-weight: 800;
  font-size: 0.95rem;
}
.accordions summary::-webkit-details-marker { display: none; }
.accordions summary::after { content: "+"; font-size: 1.25rem; font-weight: 600; color: var(--ink-soft); transition: transform 0.25s ease; }
.accordions details[open] summary::after { transform: rotate(45deg); }
.accordions details div { padding: 0 0 1.2rem; line-height: 1.7; font-size: 0.95rem; color: var(--ink-soft); }
.accordions a { color: var(--turquoise); font-weight: 600; }
.accordions a:hover { color: var(--coral); }

/* Keps-reviews i hemsidans karusellstil, full bredd */
.pvoices { margin: 0 calc(50% - 50vw); }
.pvoices .voice-avatar { background: var(--tile); }
.pvoices .voice-avatar img { mix-blend-mode: multiply; border: 2px solid #fff; }
.pvoices .voice-avatar img[src$=".jpg"] { mix-blend-mode: normal; }

/* Detail strip */
.pdetail {
  position: relative;
  margin: clamp(3.5rem, 8vw, 6rem) calc(50% - 50vw) 0;
  min-height: 66vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--charcoal);
}
.pdetail video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdetail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 45%, rgba(16, 15, 13, 0.7) 85%);
}
.pdetail-copy {
  position: relative;
  z-index: 2;
  color: var(--cream);
  padding: 0 clamp(1.4rem, 6vw, 6rem) clamp(2.4rem, 6vh, 4rem);
  max-width: 38rem;
}
.pdetail-copy h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: 0.5rem 0 0.9rem; text-shadow: 0 3px 24px rgba(0, 0, 0, 0.5); }
.pdetail-copy p { line-height: 1.7; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6); }

/* Vanliga frågor */
.pfaq { padding: clamp(3.5rem, 8vw, 6rem) 0 0; }
.pfaq-accordions {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(28, 27, 25, 0.12);
}

/* Related */
.prelated { padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem); }
.prelated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}
.rel-card { text-decoration: none; text-align: center; color: var(--charcoal); }
.rel-media {
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--tile);
  border: 1px solid rgba(28, 27, 25, 0.09);
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  margin-bottom: 0.9rem;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.rel-card:hover .rel-media { transform: translateY(-6px); box-shadow: 0 22px 60px rgba(28, 27, 25, 0.16); }
.rel-media img { width: 100%; height: 100%; object-fit: contain; padding: 8%; mix-blend-mode: multiply; }
.rel-card h3 { font-size: 1.35rem; }
.rel-card .stars { font-size: 0.85rem; margin: 0.25rem 0; }
.rel-price { font-weight: 800; font-size: 0.92rem; }

@media (max-width: 860px) {
  .product-hero { grid-template-columns: 1fr; }
  .gallery { position: static; }
}
