/* ── shop page ── */

.shop-page {
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: 5rem;
}

/* back home button */
.back-home-link {
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.88);
  box-shadow:
    0 0 0 1px rgba(151, 230, 57, 0.18),
    0 0 30px rgba(151, 230, 57, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.back-home-link svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #97e639;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-home-link:hover,
.back-home-link:focus-visible {
  transform: translateY(-2px) scale(1.03);
  background: rgba(12, 12, 12, 0.94);
  box-shadow:
    0 0 0 1px rgba(151, 230, 57, 0.28),
    0 0 40px rgba(151, 230, 57, 0.16);
}

/* hero */
.shop-hero {
  padding-bottom: 2rem;
}

.shop-hero__title {
  margin: 0 0 0.4rem;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(90deg, var(--lime-1), var(--lime-2), var(--lime-3), var(--lime-1));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientShift 9s ease-in-out infinite alternate;
}

.shop-hero__sub {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--muted);
}

.shop-hero__sub a {
  color: var(--lime-2);
  text-decoration: none;
}

.shop-hero__sub a:hover {
  color: var(--lime-1);
}

/* divider */
.shop-divider {
  width: min(100%, 760px);
  margin: 0.2rem 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(151, 230, 57, 0.18), transparent);
}

/* block */
.shop-block {
  width: min(100%, 760px);
  padding: 1.6rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.shop-block__title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  color: transparent;
  background: linear-gradient(90deg, var(--lime-1), var(--lime-2), var(--lime-3));
  -webkit-background-clip: text;
  background-clip: text;
}

.shop-block__sub {
  font-size: 0.68em;
  -webkit-text-fill-color: var(--muted);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

/* text lines */
.shop-text {
  margin: 0;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.6;
  color: var(--text);
}

.shop-muted {
  color: var(--muted);
}

.shop-num {
  color: var(--lime-3);
  font-weight: 600;
  margin-right: 0.2rem;
}

.shop-accent {
  color: var(--lime-2);
  font-weight: 600;
}

.shop-price {
  color: var(--lime-1);
  font-weight: 600;
}

/* deny card — единственная карточка */
.shop-deny-card {
  margin: 0.4rem 0 0.6rem;
  padding: 1.1rem 1.3rem;
  border-radius: 16px;
  background: var(--panel);
  border-left: 3px solid rgba(255, 80, 80, 0.5);
  box-shadow: 0 0 0 1px rgba(151, 230, 57, 0.06), var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.shop-deny-card__header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 110, 110, 0.9);
}

.shop-deny-card__header svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 110, 110, 0.9);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

.shop-deny-card__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
  color: var(--muted);
}

/* button */
.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime-2), var(--lime-3));
  color: #000;
  font-family: "M PLUS Rounded 1c", "Trebuchet MS", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 4px 12px rgba(151, 230, 57, 0.28);
}

.shop-btn:hover,
.shop-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(151, 230, 57, 0.4);
}

.shop-btn--accent {
  font-size: 1rem;
  padding: 0.75rem 2rem;
}

@media (max-width: 680px) {
  .shop-page {
    padding-top: 4.5rem;
  }
}
