.section--hero-specs {
  background-color: var(--color-surface);
  padding-top: var(--space-48);
  padding-bottom: var(--space-40);
}

.section-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-32);
  align-items: center;
}

.section-hero-text p {
  color: var(--color-text-muted);
}

.section-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-24);
}

.section-hero-media img {
  border-radius: var(--radius-lg);
}

.hero-media-caption {
  margin-top: var(--space-12);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.specs-highlights-grid .card__body {
  font-size: var(--font-size-sm);
}

.specs-list {
  list-style: none;
  padding-left: 0;
}

.specs-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  color: var(--color-text-muted);
}

.specs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-primary);
}

.text-muted {
  color: var(--color-text-soft);
}

.size-grid img,
.utensil-grid img,
.storage-grid img,
.gallery-card img {
  border-radius: var(--radius-lg);
}

.image-caption {
  margin-top: var(--space-12);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.specs-table {
  width: 100%;
  font-size: var(--font-size-sm);
  margin-top: var(--space-12);
}

.specs-table th,
.specs-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--gray-200);
  text-align: left;
}

.specs-table thead th {
  background-color: var(--color-surface-muted);
  font-weight: var(--font-weight-semibold);
}

.heat-grid .card h3 {
  margin-bottom: var(--space-8);
}

.gallery-card {
  padding: 0;
  overflow: hidden;
}

.gallery-card-body {
  padding: var(--space-20);
}

.gallery-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.safety-grid .card {
  height: 100%;
}

.utensil-grid .card,
.storage-grid .card {
  height: 100%;
}

.storage-footer {
  margin-top: var(--space-16);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  margin-bottom: var(--space-8);
  border: 1px solid var(--gray-200);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: var(--font-weight-medium);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-soft);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.faq-cta {
  margin-top: var(--space-24);
  padding: var(--space-20);
  border-radius: var(--radius-lg);
  background-color: var(--color-primary-soft);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
}

.faq-cta p {
  margin: 0;
}

@media (max-width: 959px) {
  .section-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .section--hero-specs {
    padding-top: var(--space-40);
  }

  .section-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .specs-table th,
  .specs-table td {
    padding-inline: 0.5rem;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
