/* ======================================================
   PRODUCT DETAIL PAGE
   ====================================================== */
.product-detail {
  padding-top: calc(72px + var(--space-12));
  padding-bottom: var(--space-20);
}
.product-detail-grid {
  display: grid;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

/* Gallery */
.product-gallery {
  display: grid;
  gap: var(--space-4);
}
.product-gallery-main {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--color-gray-100);
}
.product-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.product-gallery-thumb {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  background: var(--color-gray-100);
}
.product-gallery-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  border-color: var(--color-accent);
}

/* Info */
.product-detail-category {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.product-detail-name {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: var(--space-4);
}
.product-detail-desc {
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* Features */
.product-features {
  margin-bottom: var(--space-8);
}
.product-features-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-4);
}
.product-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.product-feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-gray-600);
}
.product-feature-check {
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-feature-check svg {
  width: 12px; height: 12px;
  stroke: var(--color-accent);
}

/* Colors & Sizes */
.product-options {
  margin-bottom: var(--space-8);
}
.product-option-label {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: var(--space-3);
  display: block;
}
.product-colors {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.product-color {
  width: 32px; height: 32px;
  border-radius: var(--radius-full);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 1px var(--color-gray-300);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.product-color:hover,
.product-color.is-active {
  box-shadow: 0 0 0 2px var(--color-accent);
}
.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.product-size {
  min-width: 52px;
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-700);
  background: var(--color-gray-100);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all var(--transition-fast);
}
.product-size:hover {
  background: var(--color-gray-200);
}

/* CTA */
.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

/* Related */
.related-section {
  margin-top: var(--space-20);
  padding-top: var(--space-16);
  border-top: 1px solid var(--color-gray-200);
}
