/* ── Store Page Styles ── */

.store-hero {
  background: #042a0c;
  padding: 100px 0 40px;
  text-align: center;
}
.store-hero-tag {
  display: inline-block;
  background: rgba(47,177,71,0.18);
  color: #2fb147;
  border: 1px solid rgba(47,177,71,0.35);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 18px;
}
.store-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.store-hero h1 span { color: #2fb147; }
.store-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}
.store-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.store-pill {
  background: rgba(47,177,71,0.12);
  border: 1px solid rgba(47,177,71,0.25);
  color: rgba(255,255,255,0.85);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
}
.store-embed {
  background: #f8fdf8;
  padding: 48px 0 0;
}
.store-embed iframe {
  display: block;
  border: none;
}
