/* ============================================================
   Page produit
   ============================================================ */
.product-page {
  padding-top: 130px;
  padding-bottom: 120px;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.product-detail {
  padding: 0 var(--gutter);
}
.back-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-block;
  margin-bottom: 50px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--honey-deep); }

.pd-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}

.pd-visual {
  position: sticky;
  top: 100px;
}
.pd-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--bg-deep);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.pd-image {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 80%);
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: 60px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.pd-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'><path d='M40 1L78 23v46L40 91 2 69V23z' fill='none' stroke='%23e6d9bf' stroke-width='1' opacity='0.5'/></svg>");
  background-size: 80px 92px;
}
.pd-image img {
  position: relative;
  z-index: 1;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(122, 78, 30, 0.25));
  transition: transform 0.6s ease;
}
.pd-image:hover img { transform: rotate(-3deg) scale(1.04); }

.pd-info .section-label { color: var(--honey-deep); margin-bottom: 20px; }
.pd-info .section-label::before { background: var(--honey-deep); }

.pd-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}
.pd-title em { font-style: italic; color: var(--honey-deep); }

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.pd-price {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.pd-price span { font-size: 0.5em; color: var(--ink-mute); margin-left: 4px; }
.pd-perkg {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.pd-lead {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 16px;
}
.pd-lead strong { color: var(--honey-deep); font-weight: 500; }
.pd-body {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

.pd-specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 36px;
}
.pd-specs li {
  background: var(--bg);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pd-specs li span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.pd-specs li strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.pd-cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--bg-deep);
  color: var(--bg);
  padding: 20px 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  margin-bottom: 28px;
}
.pd-cta:hover {
  background: var(--honey-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(122, 78, 30, 0.45);
}
.pd-cta svg { transition: transform 0.3s; }
.pd-cta:hover svg { transform: translateX(4px); }

.pd-note {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.pd-note strong { color: var(--ink); font-weight: 500; }

@media (max-width: 1000px) {
  .pd-grid { grid-template-columns: 1fr; gap: 60px; }
  .pd-visual { position: static; }
  .product-page { padding-top: 100px; }
}

/* Other products */
.pd-other {
  margin-top: 140px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.pd-other-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.pd-other-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.pd-other-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: all 0.4s;
}
.pd-other-item:hover {
  background: var(--bg);
  transform: translateX(4px);
  border-color: var(--honey);
  box-shadow: 0 12px 30px -10px rgba(122,78,30,0.2);
}
.pd-other-item img {
  width: 110px; height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}
.pd-other-item h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 8px;
}
.pd-other-item span {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
}
.pd-other-item:hover span { color: var(--honey-deep); }

@media (max-width: 700px) {
  .pd-other-grid { grid-template-columns: 1fr; }
  .pd-specs { grid-template-columns: 1fr; }
}

/* propolis variant */
.pd-info.propolis .pd-price { color: var(--accent); }
.propolis-detail {
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 0 6px 6px 0;
}
.propolis-detail h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--accent);
}
.propolis-detail p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.propolis-detail ul { list-style: none; padding: 0; }
.propolis-detail ul li {
  font-size: 16px;
  line-height: 1.6;
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--ink-soft);
}
.propolis-detail ul li::before {
  content: "•";
  position: absolute;
  left: 8px; top: 6px;
  color: var(--accent);
  font-size: 18px;
}
.propolis-warning {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 6px;
}
