/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f7fb;
  color: #1f2529;
}

/* Layout */
.page {
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 16px 40px;
}

/* Header / nav */
.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  height: 40px;
  width: auto;
}

.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  color: #3a434b;
}

.nav a:hover {
  color: #111;
}

/* Product hero section */
.product-hero {
  margin-top: 24px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

/* Left side: fake “product image” */
.product-media {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-main-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Simple fake box placeholder until we add real artwork */
.fake-box {
  width: 220px;
  height: 280px;
  border-radius: 16px;
  background: linear-gradient(145deg, #9adf73, #fdf5a8);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fake-box-title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fake-box-subtitle {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.product-caption {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #4a565f;
  text-align: center;
}

/* Right side: details */
.product-info h1 {
  font-size: 2rem;
}

.product-tagline {
  margin-top: 8px;
  font-size: 1rem;
  color: #414b54;
}

.product-meta {
  margin-top: 16px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.price-note {
  font-size: 0.9rem;
  color: #6b747c;
}

.age-player {
  margin-top: 4px;
  font-size: 0.95rem;
  color: #4a565f;
}

.primary-btn {
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #9adf73;
  color: #183026;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: not-allowed; /* disabled for now */
  opacity: 0.7;
}

.coming-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #4f5962;
}

.product-bullets {
  padding-left: 18px;
  margin-top: 14px;
  font-size: 0.95rem;
}

.product-bullets li + li {
  margin-top: 4px;
}

/* Content sections below */
.section {
  margin-top: 28px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 18px 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.section h2 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.section p {
  font-size: 0.96rem;
  color: #384047;
}

.section p + p {
  margin-top: 6px;
}

/* Grid for “What’s in the box” cards */
.grid-3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin-top: 10px;
}

.info-card {
  background: #f9fcf5;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #e2f1d1;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

/* Steps list */
.steps {
  margin-top: 8px;
  padding-left: 20px;
  font-size: 0.95rem;
}

.steps li + li {
  margin-top: 4px;
}

.steps-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #526068;
}

/* Footer */
.footer {
  margin-top: 32px;
  text-align: center;
  font-size: 0.85rem;
  color: #6b747c;
}

/* Responsive */
@media (max-width: 800px) {
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-info h1 {
    margin-top: 8px;
  }
}
/* Sample Cards grid */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 14px;
} 
.card-row img {
  width: 100%;
  Height:auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  background: #fff;
}

/* Tablet: 2 columns */
@media (max-width: 900px) {
  .card-row {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .card-row {
    grid-template-columns: 1fr;
  }
}

.shop-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.shop-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.shop-option {
  max-width: 300px;
}

.shop-option h3 {
  margin-bottom: 0.5rem;
}

.shop-option p {
  margin-bottom: 1rem;
}

.shop-option input[type="submit"],
.amazon-button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}

.shop-option input[type="submit"] {
  background: #0070ba;
  color: #fff;
  border: none;
}

.amazon-button {
  background: #ff9900;
  color: #000;
  font-weight: bold;
}
.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: #7ed957;
  color: #000;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
}
/* Fix oversized hero box image */
.hero-image {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .hero-image {
    max-width: 300px;
  }
}
