/* ================================================================
   SKLEP PAGE — sekcje ze scrollem jak na stronie głównej
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; }

/* ── TŁA SEKCJI ── */
.panel-bg--sklep-hero {
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(61,244,255,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 80%, rgba(183,63,255,0.14) 0%, transparent 60%),
    linear-gradient(180deg, #07050f 0%, #0a040f 100%);
}

.panel-bg--sklep-what {
  background:
    radial-gradient(ellipse 70% 50% at 20% 25%, rgba(183,63,255,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 85% 75%, rgba(61,244,255,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #080510 0%, #060310 100%);
}

.panel-bg--sklep-sponsor {
  background:
    radial-gradient(ellipse 60% 60% at 85% 20%, rgba(183,63,255,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(61,244,255,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #060310 0%, #080512 100%);
}

.panel-bg--sklep-join {
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(183,63,255,0.20) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(61,244,255,0.10) 0%, transparent 60%),
    linear-gradient(180deg, #070410 0%, #05040b 100%);
}

/* ══════════════════════════════════════════
   SEKCJA 1 — HERO
══════════════════════════════════════════ */
.sklep-hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.sklep-hero-layout .hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  font-weight: 900;
  color: #f5f6ff;
}

.sklep-hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(61,244,255,0.1);
  border: 1px solid rgba(61,244,255,0.3);
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.status-dot--soon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  display: inline-block;
}

/* ══════════════════════════════════════════
   SEKCJA 2 — CO SIĘ SZYKUJE
══════════════════════════════════════════ */
.sklep-what-layout {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sklep-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.sklep-card {
  padding: 1.75rem 1.5rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sklep-card:hover {
  transform: translateY(-6px);
  border-color: rgba(183,63,255,0.35);
  box-shadow: 0 20px 60px rgba(183,63,255,0.12);
}

.sklep-card--accent {
  background: rgba(183,63,255,0.07);
  border-color: rgba(183,63,255,0.25);
}

.sklep-card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
}

.sklep-card h3 {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.sklep-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SEKCJA 3 — DLA SPONSORA
══════════════════════════════════════════ */
.sklep-sponsor-layout {
  display: flex;
  justify-content: center;
}

.sklep-sponsor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 680px;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  background: rgba(183,63,255,0.06);
  border: 1px solid rgba(183,63,255,0.25);
}

.sklep-sponsor-card h2 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #f5f6ff;
  line-height: 1.3;
}

.sklep-sponsor-card p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ══════════════════════════════════════════
   SEKCJA 4 — BĄDŹ NA BIEŻĄCO
══════════════════════════════════════════ */
.sklep-join-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  padding-top: 2rem;
}

.sklep-join-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  color: #f5f6ff;
  position: relative;
  z-index: 1;
}

.sklep-join-cards {
  display: flex;
  gap: 1.25rem;
  width: 100%;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .sklep-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .sklep-cards { grid-template-columns: 1fr; }
  .sklep-join-cards { flex-direction: column; }
  .sklep-sponsor-card { padding: 2.25rem 1.5rem; }
}
