.piece-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.piece-link h3 {
  transition: color 0.15s ease;
}
.piece:hover .piece-link h3 {
  color: var(--tiffany-deep);
}
.piece-view {
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--tiffany-deep);
}

/* ---------- Product detail page ---------- */
.product-page {
  padding: 48px 28px 80px;
  max-width: 1080px;
  margin: 0 auto;
}
.product-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--tide-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.product-back:hover { color: var(--tiffany-deep); }

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 380px) 1fr;
  gap: 36px;
  align-items: start;
}
.product-gallery {
  max-width: 380px;
}
.product-gallery-main {
  aspect-ratio: 4 / 5;
  max-height: 420px;
  background: #f0ece2;
  border-radius: 6px;
  overflow: hidden;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.product-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 70px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  padding: 0;
  background: #f0ece2;
  cursor: pointer;
}
.product-thumb.is-active {
  border-color: var(--tiffany-deep);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info .piece-eyebrow { margin-bottom: 8px; }
.product-info h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
}
.product-price {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 600;
  margin-top: 16px;
}
.product-lead {
  color: var(--tide-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 18px;
}
.product-details {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.product-details h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: 'Work Sans', sans-serif;
  color: var(--tiffany-deep);
  margin-bottom: 12px;
}
.product-details ul {
  margin: 0;
  padding-left: 18px;
  color: var(--tide-soft);
  font-size: 15px;
}
.product-details li + li { margin-top: 8px; }
.product-pay { margin-top: 28px; }
.product-promo-note {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--driftwood);
}
.product-promo-note code {
  font-weight: 600;
  color: var(--tiffany-deep);
}

@media (max-width: 860px) {
  .product-layout { grid-template-columns: 1fr; gap: 28px; }
}
