@import url('style.css');

/* -----------------------------------
   Store Page Styles
------------------------------------ */

/* Optional small notice card (if used) */
.update {
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: #fff;
}

/* Reuse global muted if needed */
.meta {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Main store wrapper */
.store-main {
  padding: 3rem 1.5rem 5rem;
}

/* ========== HERO ========== */
.store-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.store-hero-text {
  flex: 1 1 320px;
}

.store-hero-media {
  flex: 1 1 260px;
  text-align: center;
}

.store-hero-media img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 0.4rem;
}

.store-hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.75rem;
}

.fulfillment-note {
  font-size: 0.9rem;
  color: #64748b;
}

/* ========== BUTTONS ========== */
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease,
    opacity 0.18s ease, transform 0.12s ease;
}

.btn-primary {
  background: #f97316;
  color: #fff;
  border-color: #f97316;
}

.btn-primary:hover {
  background: #ea580c;
  border-color: #ea580c;
}

.btn-secondary {
  background: #fff;
  color: #0f172a;
  border-color: #0f172a;
}

.btn-secondary:hover {
  background: #0f172a;
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #0f172a;
  border-color: #cbd5f5;
}

.btn-ghost:hover {
  border-color: #0f172a;
}

/* Disabled state for “Available Soon” links */
.btn-primary[aria-disabled="true"],
.btn-secondary[aria-disabled="true"],
.btn-ghost[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* ========== SECTIONS ========== */
.store-section {
  margin: 3.5rem 0;
}

.store-section--alt {
  background: #f9fafb;
  border-radius: 18px;
  padding: 2.5rem 2.5rem 3rem;
}

.store-section-header {
  max-width: 640px;
  margin-bottom: 2rem;
}

.store-section-header h2 {
  margin-bottom: 0.5rem;
}

/* ========== PRODUCT GRID ========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card--muted {
  opacity: 0.9;
}

.product-image {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 1rem;
  object-fit: cover;
}

.product-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #0f766e;
  margin-bottom: 0.5rem;
}

.product-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: -0.25rem;
}

.product-copy {
  font-size: 0.95rem;
  color: #334155;
  margin: 0.9rem 0 1.2rem;
}

.product-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.product-placeholder {
  border-radius: 14px;
  border: 1px dashed #cbd5f5;
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* ========== STEPS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.step {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #0f766e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.store-section-footer {
  margin-top: 2rem;
  text-align: center;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .store-main {
    padding-top: 2.5rem;
    padding-inline: 1rem;
  }

  .store-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .store-hero-media img {
    max-width: 320px;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .store-section--alt {
    padding: 2rem 1.4rem 2.4rem;
  }
}
