/* =====================================================
   Main Shop Page
   ===================================================== */

/* ── Ambient glows ──────────────────────────────────── */
.sh-bg-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.sh-bg-glow--1 {
  width: 600px;
  height: 600px;
  top: -180px;
  left: -150px;
  background: radial-gradient(circle, rgba(234, 60, 70, 0.1) 0%, transparent 65%);
  filter: blur(80px);
}

.sh-bg-glow--2 {
  width: 500px;
  height: 500px;
  top: 30%;
  right: -120px;
  background: radial-gradient(circle, rgba(167, 110, 232, 0.1) 0%, transparent 65%);
  filter: blur(70px);
}

/* ── Gradient text ──────────────────────────────────── */
.sh-gradient-text {
  background: var(--primary-gradient, linear-gradient(90deg, #ff0101, #fe4982));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ── Badge ──────────────────────────────────────────── */
.sh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(234, 60, 70, 0.1);
  border: 1px solid rgba(234, 60, 70, 0.28);
  color: #ea3c46;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 20px;
}

/* ── Hero ───────────────────────────────────────────── */
.sh-hero {
  text-align: center;
  padding: 64px 24px 48px;
  position: relative;
}

.sh-hero__glow {
  position: absolute;
  width: 500px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 60, 70, 0.1) 0%, transparent 65%);
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  filter: blur(60px);
}

.sh-badge {
  margin: 0 auto 20px;
}

.sh-hero__title {
  margin: 0 0 18px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.03em;
}

.sh-hero__desc {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(195, 193, 210, 0.78);
}

/* ── Product cards ──────────────────────────────────── */
.sh-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.sh-product-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  border-radius: 28px;
  background: rgba(17, 18, 27, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.38);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.sh-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 28px 28px 0 0;
  transition: opacity 0.26s ease;
}

.sh-product-card--steam::before {
  background: linear-gradient(90deg, #ff0101, #fe4982);
}

.sh-product-card--genshin::before {
  background: linear-gradient(90deg, #c89b3c, #a76ee8);
}

.sh-product-card__glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  top: -100px;
  right: -80px;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sh-product-card--steam .sh-product-card__glow {
  background: radial-gradient(circle, rgba(234, 60, 70, 0.18) 0%, transparent 65%);
}

.sh-product-card--genshin .sh-product-card__glow {
  background: radial-gradient(circle, rgba(200, 155, 60, 0.18) 0%, transparent 65%);
}

.sh-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}

.sh-product-card--steam:hover {
  border-color: rgba(234, 60, 70, 0.28);
}

.sh-product-card--genshin:hover {
  border-color: rgba(200, 155, 60, 0.28);
}

.sh-product-card:hover .sh-product-card__glow {
  opacity: 1;
}

.sh-product-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.sh-product-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  color: #fff;
  flex-shrink: 0;
}

.sh-product-card__icon--steam {
  background: linear-gradient(135deg, #ff0101, #fe4982);
  box-shadow: 0 8px 22px rgba(234, 60, 70, 0.35);
}

.sh-product-card__icon--genshin {
  background: linear-gradient(135deg, #c89b3c, #a76ee8);
  box-shadow: 0 8px 22px rgba(200, 155, 60, 0.32);
}

.sh-product-card__label {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sh-product-card--steam .sh-product-card__label {
  background: rgba(234, 60, 70, 0.1);
  border: 1px solid rgba(234, 60, 70, 0.25);
  color: #ea3c46;
}

.sh-product-card--genshin .sh-product-card__label {
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.28);
  color: #c89b3c;
}

.sh-product-card__title {
  margin: 0 0 12px;
  font-size: 1.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
}

.sh-product-card__desc {
  margin: 0 0 18px;
  font-size: 0.96rem;
  color: rgba(195, 193, 210, 0.76);
  line-height: 1.68;
}

.sh-product-card__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}

.sh-product-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(195, 193, 210, 0.8);
  font-weight: 500;
}

.sh-product-card__list li::before {
  content: '✓';
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(8, 206, 58, 0.12);
  border: 1px solid rgba(8, 206, 58, 0.26);
  color: #08ce3a;
  font-size: 0.6rem;
  font-weight: 900;
}

.sh-product-card__cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: auto;
  transition: gap 0.22s ease;
}

.sh-product-card--steam .sh-product-card__cta {
  color: #ea3c46;
}

.sh-product-card--genshin .sh-product-card__cta {
  color: #c89b3c;
}

.sh-product-card:hover .sh-product-card__cta {
  gap: 6px;
}

/* ── Why us section ─────────────────────────────────── */
.sh-section {
  margin-top: 88px;
}

.sh-section__head {
  margin-bottom: 36px;
}

.sh-section__title {
  margin: 0 0 10px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 800;
  line-height: 1.1;
}

.sh-section__sub {
  margin: 0;
  font-size: 1rem;
  color: rgba(195, 193, 210, 0.72);
  line-height: 1.65;
}

.sh-why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.sh-why__item {
  display: flex;
  gap: 16px;
  padding: 24px 22px;
  border-radius: 20px;
  background: rgba(17, 18, 27, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.sh-why__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(234, 60, 70, 0.08);
  border: 1px solid rgba(234, 60, 70, 0.16);
  color: #ea3c46;
}

.sh-why__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.sh-why__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(195, 193, 210, 0.72);
  line-height: 1.62;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 768px) {
  .sh-hero {
    padding: 48px 16px 36px;
  }

  .sh-hero__title {
    font-size: 2.4rem;
  }

  .sh-products {
    grid-template-columns: 1fr;
  }

  .sh-section {
    margin-top: 64px;
  }
}

@media (max-width: 480px) {
  .sh-hero__title {
    font-size: 2rem;
  }

  .sh-product-card {
    padding: 24px 20px;
  }

  .sh-why__grid {
    grid-template-columns: 1fr;
  }
}
