/* Product Page Styles — extends theme.css */

/* Layout */
.product-page {
  min-height: calc(100vh - 80px);
  padding: 4rem 2.5rem;
}
.product-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* Image Panel */
.product-image-panel { position: sticky; top: 2rem; }

.product-image-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
}

.placeholder-icon {
  font-size: 2.5rem;
  color: var(--accent-light);
  opacity: 0.6;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
}

/* Info Panel */
.product-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.product-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.product-description {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Specs */
.product-specs {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.spec-row:last-child { border-bottom: none; }

.spec-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.spec-value {
  font-size: 0.875rem;
  color: var(--fg);
  text-align: right;
}

/* Presale */
.presale-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.25rem;
}

.presale-sub {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.presale-form { margin-bottom: 0; }

.form-row {
  display: flex;
  gap: 0.75rem;
}

.email-input {
  flex: 1;
  padding: 0.85rem 1.1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s;
}

.email-input:focus { border-color: var(--accent); }
.email-input::placeholder { color: var(--muted); font-weight: 300; }

.submit-btn {
  padding: 0.85rem 1.5rem;
  background: var(--fg);
  color: var(--bg);
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.submit-btn:hover:not(:disabled) { background: var(--accent); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.75rem;
  font-weight: 400;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
}

.success-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.success-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg);
}

.presale-privacy {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .product-page { padding: 2.5rem 1.5rem; }
  .product-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-image-panel { position: static; }
  .form-row { flex-direction: column; }
  .submit-btn { width: 100%; }
  .nav-logo--link { text-decoration: none; }
}