.product-detail-page { background: #fff; color: #202344; padding: 24px 0 58px; }
.product-breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; color: #666d80; font-size: .875rem; padding: 0 0 28px; }
.product-breadcrumb a:hover { color: var(--green-deep); text-decoration: underline; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.product-photo { display: flex; align-items: center; justify-content: center; height: clamp(470px, 44vw, 700px); padding: 22px; border-radius: 32px; background: #fffdf5; overflow: hidden; }
.product-photo img { display: block; width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-information { padding: 8px 0 20px; min-width: 0; }
.product-type { display: inline-block; background: #f3b51b; color: #202344; font-size: .8125rem; font-weight: 600; text-transform: uppercase; border-radius: 100px; padding: 9px 20px; margin-bottom: 14px; }
.product-information h1 { font-size: clamp(2rem, 3.1vw, 3.2rem); font-weight: 500; line-height: 1.2; letter-spacing: -.015em; text-transform: uppercase; }
.product-subtitle { color: #505563; font-size: 1rem; margin-top: 18px; }
.product-description { font-size: 1rem; line-height: 1.8; color: #454955; margin-top: 22px; }
.product-features { padding: 22px 0; margin-top: 22px; border-top: 1px solid #e5e5eb; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.product-features li { display: flex; align-items: center; gap: 10px; color: #545a69; font-size: .8125rem; line-height: 1.4; }
.product-feature-icon { flex-shrink: 0; display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid #777a91; border-radius: 50%; font-size: 1.05rem; color: #24234f; }
.product-pack-size { margin-top: 10px; }
.product-pack-size > span { display: block; font-size: .875rem; color: #505563; margin-bottom: 10px; }
.product-pack-size strong { display: inline-block; padding: 12px 28px; background: #fff6da; border: 1px solid #e3c875; border-radius: 12px; min-width: 140px; text-align: center; font-size: 1rem; }
.product-uses { margin-top: 22px; font-size: .9375rem; color: #505563; line-height: 1.6; }
.product-uses strong { display: block; color: #202344; margin-bottom: 4px; font-weight: 600; }
.product-availability { margin-top: 48px; }
.product-availability h2 { font-family: var(--sans); font-size: 1rem; font-weight: 600; text-transform: uppercase; line-height: 1.4; }
.product-marketplaces { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px 18px; align-items: center; }
.product-marketplaces > span { width: 125px; max-width: 30%; border-radius: 5px; }
.product-marketplaces img { width: 100%; height: auto; object-fit: contain; }
.product-market-dark { background: #24234f; }
.product-pagination { border-top: 1px solid #e5e5eb; display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 60px; padding-top: 26px; font-size: .875rem; }
.product-pagination a { display: inline-flex; align-items: center; gap: 12px; flex: 1; }
.product-pagination a:last-child { justify-content: flex-end; text-align: right; }
.product-pagination .product-back { justify-content: center; text-align: center; font-weight: 600; color: var(--green-deep); }
.product-detail-page a:focus-visible { outline: 3px solid var(--green); outline-offset: 5px; }
@media (max-width: 1080px) {
  .product-features li { flex-direction: column; text-align: center; }
  .product-detail { gap: 32px; }
}
@media (max-width: 700px) {
  .product-detail { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .product-photo { height: min(115vw, 510px); padding: 22px; }
  .product-information h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .product-features { gap: 10px; }
  .product-pagination { flex-wrap: wrap; gap: 20px; }
  .product-pagination .product-back { flex-basis: 100%; order: -1; }
  .product-marketplaces > span { max-width: 42%; }
}

/* ==== Product Gallery & Thumbnails ==== */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(380px, 44vw, 600px);
  padding: 22px;
  border-radius: 24px;
  background: #fffdf5;
  overflow: hidden;
}
.product-photo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity .3s ease;
}
.product-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0;
}
.product-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fffdf5;
  cursor: pointer;
  padding: 4px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.product-thumb:hover {
  border-color: #ccc;
}
.product-thumb.active {
  border-color: var(--green-deep, #2d6a4f);
  box-shadow: 0 0 0 1px var(--green-deep, #2d6a4f);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .product-photo { height: clamp(280px, 60vw, 400px); border-radius: 18px; }
  .product-thumb { width: 60px; height: 60px; border-radius: 10px; }
}
/* =========================
   PRODUCT GALLERY STICKY
   ========================= */
.product-gallery,
.product-gallery-sticky {
    position: static !important;
    top: auto !important;
    max-height: none !important;
    height: auto;
}

/* Hide thumbnail scrollbar */
.product-thumbs {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-thumbs::-webkit-scrollbar {
    display: none;
}