/* clean-medical — Product Detail Page Styles */

.section_product {
  padding: 40px 0 56px;
  background: var(--bg_white);
}

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

.gallery_frame {
  border-radius: var(--radius_card);
  overflow: hidden;
  box-shadow: var(--shadow_card);
  background: var(--bg_section);
  aspect-ratio: 3 / 4;
}

.gallery_hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_thumbs {
  margin-top: 16px;
}

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

.thumb_row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.thumb_row img:hover,
.thumb_row img.is_active {
  border-color: var(--accent_teal);
}

.product_header {
  margin-bottom: 24px;
}

.product_name {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--heading_navy);
}

.product_tags {
  margin-top: 8px;
}

.price_block {
  background: var(--bg_section);
  border-radius: var(--radius_card);
  padding: 20px 24px;
  margin-bottom: 28px;
  border-left: 4px solid var(--accent_teal);
}

.price_label {
  display: block;
  font-size: 0.8125rem;
  color: var(--text_muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price_value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent_teal);
}

.spec_section {
  margin-bottom: 28px;
}

.spec_heading {
  font-size: 1.125rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg_section);
}

.info_table {
  width: 100%;
  border: 1px solid var(--border_light);
  border-radius: var(--radius_card);
  overflow: hidden;
}

.info_table th,
.info_table td {
  padding: 12px 18px;
  text-align: left;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border_light);
}

.info_table tr:last-child th,
.info_table tr:last-child td {
  border-bottom: none;
}

.info_table th {
  width: 35%;
  background: var(--bg_section);
  color: var(--heading_navy);
  font-weight: 600;
}

.info_table td {
  color: var(--text_body);
}

.product_actions {
  margin-bottom: 24px;
}

.notices_compact {
  font-size: 0.875rem;
}

.section_detail {
  padding: 48px 0;
  background: var(--bg_section);
}

.detail_prose {
  background: var(--bg_white);
  border: 1px solid var(--border_light);
  border-radius: var(--radius_card);
  padding: 36px;
  line-height: 1.75;
}

.detail_prose p {
  margin-bottom: 1em;
}

.detail_prose p:last-child {
  margin-bottom: 0;
}

.section_related {
  padding: 48px 0 64px;
  background: var(--bg_white);
}

@media (max-width: 960px) {
  .product_layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .product_name {
    font-size: 1.5rem;
  }

  .info_table th,
  .info_table td {
    padding: 10px 14px;
    font-size: 0.875rem;
  }

  .thumb_row img {
    width: 60px;
    height: 60px;
  }
}
