/* ============================================
   STORE.CSS — STELLA
   Store page styles only.
   All colors and fonts reference global.css variables.
   ============================================ */


/* ============================================
   SECTION 1 — CONSUMER DEVICE
   Hero product display
   ============================================ */

.product {
  padding: var(--space-section) var(--space-side);
  border-bottom: 0.5px solid var(--color-border);
}

.product-label {
  display: block;
  font-size: var(--size-label);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-green);
  margin-bottom: var(--space-gap);
}

.product-image {
  width: 100%;
  height: 220px;
  background: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-gap);
}

.product-image-placeholder {
  font-size: var(--size-label);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.5;
}

.product-name {
  font-family: var(--font-serif);
  font-size: var(--size-h2);
  color: var(--color-text-primary);
  font-weight: var(--weight-light);
  margin-bottom: 8px;
}

.product-tagline {
  font-size: var(--size-body-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-gap);
}

.product-price {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-text-primary);
  font-weight: var(--weight-light);
  margin-bottom: var(--space-gap);
}

.product-includes {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-gap);
  border-top: 0.5px solid var(--color-border);
}

.product-includes-label {
  font-size: var(--size-label);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  padding: 12px 0;
  border-bottom: 0.5px solid var(--color-border);
}

.product-includes li {
  font-size: var(--size-body-sm);
  color: var(--color-text-secondary);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--color-border-alt);
  line-height: 1.6;
}

.product-includes li:last-child {
  border-bottom: none;
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--color-green);
  color: var(--color-bg);
  font-family: var(--font-sans);
  font-size: var(--size-label);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
  margin-bottom: var(--space-gap-sm);
}

.btn-buy:hover {
  opacity: 0.85;
}

.product-checkout-note {
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  line-height: 1.8;
}


/* ============================================
   SECTION 2 — PAYMENT OPTIONS
   Accepted payment methods
   ============================================ */

.payment {
  padding: var(--space-section) var(--space-side);
  border-bottom: 0.5px solid var(--color-border);
  background: var(--color-bg-alt);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-gap-sm);
  margin-top: var(--space-gap-sm);
}

.payment-method {
  font-size: var(--size-label);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border: 0.5px solid var(--color-border);
  padding: 8px 14px;
  background: var(--color-bg);
}

.payment-note {
  margin-top: var(--space-gap);
  font-size: var(--size-body-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
}


/* ============================================
   SECTION 3 — ENTERPRISE TIER
   Contact only. No price. No buy button.
   ============================================ */

.enterprise {
  padding: var(--space-section) var(--space-side);
  border-bottom: 0.5px solid var(--color-border);
}

.enterprise-name {
  font-family: var(--font-serif);
  font-size: var(--size-h2);
  color: var(--color-text-primary);
  font-weight: var(--weight-light);
  margin-bottom: 8px;
}

.enterprise-tagline {
  font-size: var(--size-body-sm);
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-gap);
}

.enterprise-results {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--color-border);
  margin-bottom: var(--space-gap);
}

.enterprise-results li {
  font-size: var(--size-body-sm);
  color: var(--color-text-secondary);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--color-border-alt);
  line-height: 1.6;
}

.enterprise-results li:last-child {
  border-bottom: none;
}

.btn-contact {
  display: block;
  width: 100%;
  padding: 16px;
  background: none;
  color: var(--color-green);
  font-family: var(--font-sans);
  font-size: var(--size-label);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-align: center;
  border: 0.5px solid var(--color-green);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-contact:hover {
  background: var(--color-green);
  color: var(--color-bg);
}
