/* editorial-warmth — Product Detail Page Styles */

.product-showcase {
  padding: 32px 0 48px;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ===== Gallery ===== */
.product-gallery {
  margin: 0;
}

.gallery-main {
  margin-bottom: 16px;
}

.gallery-frame {
  overflow: hidden;
  border: 2px dashed var(--border-dashed, #c4a882);
  background: #fff;
}

.gallery-hero-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-frame:hover .gallery-hero-img {
  transform: scale(1.02);
}

.gallery-thumbs {
  font-size: 0.82rem;
  color: var(--text-muted, #6b5344);
}

.thumb-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thumb-strip img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: opacity 0.3s ease, border-color 0.3s ease;
}

.thumb-strip img:hover,
.thumb-strip img.is-active {
  opacity: 1;
  border-color: var(--accent-terracotta, #c85a32);
}

/* ===== Product Details ===== */
.product-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--border-dashed, #c4a882);
}

.product-name {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 12px 0 16px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  background: rgba(122, 158, 126, 0.15);
  color: var(--secondary-sage, #7a9e7e);
  border: 1px dashed var(--secondary-sage, #7a9e7e);
}

.product-price-block {
  background: #fff;
  border-left: 4px solid var(--accent-terracotta, #c85a32);
  padding: 20px 24px;
  margin-bottom: 28px;
}

.price-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted, #6b5344);
  margin-bottom: 4px;
}

.price-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-terracotta, #c85a32);
}

/* ===== Profile Specs ===== */
.profile-specs {
  margin-bottom: 28px;
}

.specs-heading {
  font-size: 1.25rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--link-gold, #b8860b);
  display: inline-block;
}

.specs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px dashed var(--border-dashed, #c4a882);
  background: #fff;
}

.spec-row {
  display: flex;
  border-bottom: 1px dotted var(--border-dashed, #c4a882);
}

.spec-row:nth-child(odd) {
  border-right: 1px dotted var(--border-dashed, #c4a882);
}

.spec-row dt {
  flex: 0 0 40%;
  padding: 12px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted, #6b5344);
  background: rgba(253, 248, 240, 0.6);
}

.spec-row dd {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--heading-brown, #2c1810);
}

.product-actions {
  margin-bottom: 24px;
}

.product-actions .btn-editorial {
  width: 100%;
  text-align: center;
}

.product-notices-panel {
  background: rgba(122, 158, 126, 0.08);
  border: 1px dashed var(--secondary-sage, #7a9e7e);
  padding: 18px 22px;
  font-size: 0.85rem;
  color: var(--text-muted, #6b5344);
  line-height: 1.7;
}

.product-notices-panel p {
  margin-bottom: 6px;
}

/* ===== Product Narrative ===== */
.product-narrative {
  padding: 48px 0;
  border-top: 2px dashed var(--border-dashed, #c4a882);
  margin-bottom: 32px;
}

.product-prose {
  max-width: 780px;
}

/* ===== Related Section ===== */
.related-editorial {
  padding-bottom: 48px;
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .specs-list {
    grid-template-columns: 1fr;
  }

  .spec-row:nth-child(odd) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .spec-row {
    flex-direction: column;
  }

  .spec-row dt {
    flex: none;
    padding-bottom: 4px;
  }

  .thumb-strip img {
    width: 56px;
    height: 74px;
  }
}
