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

html,
body {
  overflow-x: hidden;
}

.collectionsPage {
  background:
    radial-gradient(circle at 20% 0%, rgba(31, 111, 74, 0.08), transparent 32%),
    radial-gradient(
      circle at 80% 12%,
      rgba(117, 128, 255, 0.12),
      transparent 34%
    ),
    var(--bg);
  min-height: 100vh;
  padding: 0 20px 56px;
}

.collectionsHero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 0 34px;
}

.collectionsHeroInner {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 54px 44px;
  text-align: center;
  background:
    radial-gradient(
      circle at 18% 20%,
      rgba(31, 111, 74, 0.15),
      transparent 26%
    ),
    radial-gradient(
      circle at 82% 24%,
      rgba(117, 128, 255, 0.18),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(246, 250, 247, 0.86)
    );
  border: 1px solid rgba(31, 111, 74, 0.16);
  box-shadow: 0 24px 70px rgba(16, 32, 24, 0.09);
}

.collectionsHeroInner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(31, 111, 74, 0.35) 0 2px, transparent 2.5px),
    radial-gradient(circle, rgba(117, 128, 255, 0.32) 0 1.5px, transparent 2px);
  background-size:
    120px 80px,
    90px 70px;
  background-position:
    10px 20px,
    48px 12px;
  opacity: 0.18;
  pointer-events: none;
}

.collectionsHeroInner > * {
  position: relative;
  z-index: 1;
}

.collectionsEyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.collectionsHero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--text);
}

.collectionsSub {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.collectionsCtas {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.collectionsPanel {
  width: 100%;
  max-width: 1120px;
  margin: 28px auto 0;
  padding: 38px 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 111, 74, 0.14);
  box-shadow: 0 18px 48px rgba(16, 32, 24, 0.06);
  overflow: hidden;
}

.collectionsPanel h2 {
  margin: 0 0 18px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.collectionsPanel p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.collectionMethodGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.collectionMethodGrid .benefit {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-height: 0;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 111, 74, 0.16);
  box-shadow: none;
  overflow: hidden;
}

.collectionMethodGrid .benefit h3,
.collectionMethodGrid .benefit p {
  overflow-wrap: anywhere;
}

.collectionsInfoBlock {
  max-width: 780px;
}

.collectionsInfoBlock p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.collectionsInfoBlock p:last-child {
  margin-bottom: 0;
}

.collectionsNote {
  max-width: 760px;
  margin: 10px 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.collectionsGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.collectionCategoryCard {
  display: block;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 111, 74, 0.14);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.collectionCategoryCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16, 32, 24, 0.08);
}

.collectionCategoryCard h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.collectionCategoryCard p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.collectionCard {
  display: block;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(31, 111, 74, 0.14);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.collectionCard:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(16, 32, 24, 0.08);
}

.collectionCard h3 {
  margin: 14px 0 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.collectionCard p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.collectionTag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.collectionCard.live .collectionTag {
  background: rgba(31, 111, 74, 0.12);
  color: var(--accent);
}

.collectionCard.comingSoon .collectionTag {
  background: rgba(117, 128, 255, 0.12);
  color: #4a4f9e;
}

.collectionMeta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.collectionActions {
  margin-top: 18px;
}

.textLink {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.textLink:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .collectionsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .collectionsPage {
    padding: 0 14px 42px;
  }

  .collectionsHero {
    padding: 34px 0 22px;
  }

  .collectionsHeroInner {
    padding: 34px 20px;
    border-radius: 24px;
  }

  .collectionsHero h1 {
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.04;
  }

  .collectionsSub {
    font-size: 17px;
  }

  .collectionsCtas {
    flex-direction: column;
  }

  .collectionsCtas .cta {
    width: 100%;
    text-align: center;
  }

  .collectionsPanel {
    padding: 28px 18px;
    border-radius: 22px;
  }

  .collectionMethodGrid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .collectionMethodGrid .benefit {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .collectionMethodGrid .benefit h3 {
    font-size: 24px;
  }

  .collectionMethodGrid .benefit p {
    font-size: 17px;
    line-height: 1.45;
  }

  .collectionsGrid {
    grid-template-columns: 1fr;
  }
}
