/* Page-specific styles for storefront product details */

.product-stack {
  max-width: 960px;
  margin: 20px auto 0;
  display: grid;
  gap: 16px;
}

.product-main-card,
.product-description-card {
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.product-header {
  margin-bottom: 12px;
}

.product-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.product-header h1 {
  margin-bottom: 6px;
}

.product-price-badge {
  background: var(--soft-accent);
  border: 1px solid var(--soft-accent-2);
  color: var(--accent);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.product-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-family: Sen;
}

.product-description {
  margin-bottom: 16px;
}

.product-actions .cta,
.product-actions .secondary-button {
  border-radius: 999px;
  font-family: Sen;
  font-size: 14px;
}

.product-actions .secondary-button {
  display: inline-block;
  padding: 10px 16px;
  text-decoration: none;
  border: 1px solid var(--soft-border);
  border-radius: 999px;
  color: var(--text);
  background: var(--white);
  font-weight: 600;
}

.technical-data h2,
.product-description h2 {
  margin: 0 0 10px 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border: 1px solid var(--soft-border);
  border-radius: 999px;
  padding: 8px 10px;
  text-align: left;
}

@media (max-width: 740px) {
  .product-header-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
