.homepage {
  --hp-bg: #f6f7fb;
  --hp-surface: #ffffff;
  --hp-surface-strong: #0f172a;
  --hp-border: #e2e8f0;
  --hp-text: #111827;
  --hp-muted: #64748b;
  --hp-accent: #fb8602;
  --hp-accent-soft: #fff4e8;
  --hp-pill: #f1f5f9;
  --hp-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  color: var(--hp-text);
  background: linear-gradient(180deg, #f8fafc 0%, #f6f7fb 18%, #f8fafc 100%);
}

.homepage__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 72px;
}

.homepage__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}

.homepage__hero-copy,
.homepage__hero-grid {
  padding: 28px;
  border: 1px solid var(--hp-border);
  border-radius: 28px;
  background: var(--hp-surface);
  box-shadow: var(--hp-shadow);
}

.homepage__hero-copy {
  background: radial-gradient(circle at top right, rgba(251, 134, 2, 0.16), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.homepage__eyebrow,
.homepage__section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--hp-accent-soft);
  color: #a14d00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.homepage__hero-title {
  margin: 18px 0 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.homepage__hero-intro {
  margin: 18px 0 0;
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--hp-muted);
}

.homepage__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.homepage__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.homepage__button:hover {
  transform: translateY(-1px);
}

.homepage__button--primary {
  background: var(--hp-surface-strong);
  color: #fff;
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.16);
}

.homepage__button--secondary {
  border: 1px solid var(--hp-border);
  background: #fff;
  color: var(--hp-text);
}

.homepage__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.homepage__quick-link,
.homepage__chip,
.homepage__letter,
.homepage__section-link {
  text-decoration: none;
}

.homepage__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--hp-pill);
  color: var(--hp-text);
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.homepage__quick-link.is-active,
.homepage__quick-link:hover {
  background: var(--hp-surface-strong);
  color: #fff;
}

.homepage__hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02) 0%, rgba(15, 23, 42, 0) 100%), var(--hp-surface);
}

.homepage__promo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.homepage__promo-grid--compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage__promo-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  border-radius: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.homepage__promo-card--hero {
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
}

.homepage__promo-card-top,
.homepage__promo-actions,
.homepage__promo-meta,
.homepage__promo-badges,
.homepage__stats,
.homepage__section-head,
.homepage__letters,
.homepage__chips {
  display: flex;
}

.homepage__promo-card-top {
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.homepage__promo-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 108px;
  padding: 10px 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hp-border);
}

.homepage__promo-logo--fallback,
.homepage__shop-fallback {
  font-weight: 700;
  text-align: center;
}

.homepage__promo-logo-img,
.homepage__shop-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
}

.homepage__promo-badges,
.homepage__promo-meta,
.homepage__promo-actions {
  flex-wrap: wrap;
  gap: 8px;
}

.homepage__promo-badge,
.homepage__promo-code,
.homepage__category-count,
.homepage__shop-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.homepage__promo-badge {
  padding: 6px 10px;
  background: var(--hp-pill);
  color: var(--hp-text);
}

.homepage__promo-badge--accent {
  background: var(--hp-accent-soft);
  color: #a14d00;
}

.homepage__promo-discount {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.homepage__promo-title {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
}

.homepage__promo-title a,
.homepage__promo-meta a,
.homepage__section-link {
  color: inherit;
}

.homepage__promo-description,
.homepage__category-description,
.homepage__stat-label,
.homepage__seo-content,
.homepage__promo-meta {
  color: var(--hp-muted);
}

.homepage__promo-description,
.homepage__category-description {
  margin: 0;
  line-height: 1.65;
  font-size: 0.95rem;
}

.homepage__promo-meta {
  font-size: 13px;
}

.homepage__promo-code {
  padding: 8px 12px;
  border: 1px dashed #f59e0b;
  background: #fff7ed;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.homepage__promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--hp-surface-strong);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.homepage__section {
  margin-top: 30px;
}

.homepage__section-head {
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.homepage__section-head--compact {
  margin-bottom: 14px;
}

.homepage__section-title {
  margin: 12px 0 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.homepage__section-link {
  font-weight: 700;
  color: var(--hp-text);
}

.homepage__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.homepage__stat,
.homepage__seo-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.homepage__stat-value {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.homepage__shop-grid,
.homepage__category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.homepage__shop-card,
.homepage__category-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
  color: inherit;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.homepage__shop-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 12px;
  border-radius: 18px;
  background: #fbfcfe;
  border: 1px solid var(--hp-border);
}

.homepage__shop-name,
.homepage__category-title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.homepage__shop-count,
.homepage__category-count {
  padding: 6px 10px;
  background: var(--hp-pill);
  width: fit-content;
  color: var(--hp-muted);
}

.homepage__chips-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: 24px;
  background: var(--hp-surface);
  border: 1px solid var(--hp-border);
}

.homepage__chips-title {
  font-weight: 800;
  margin-bottom: 12px;
}

.homepage__chips,
.homepage__letters,
.homepage__category-links {
  flex-wrap: wrap;
  gap: 10px;
}

.homepage__chip,
.homepage__letter,
.homepage__category-links span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--hp-pill);
  color: var(--hp-text);
  font-size: 14px;
  font-weight: 700;
}

.homepage__chip span {
  color: var(--hp-muted);
  font-size: 12px;
}

.homepage__category-card {
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.homepage__category-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef2f7;
}

.homepage__category-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.homepage__category-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.homepage__seo-content p:first-child {
  margin-top: 10px;
}

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

@media (max-width: 1199px) {
  .homepage__hero,
  .homepage__promo-grid,
  .homepage__promo-grid--compact,
  .homepage__shop-grid,
  .homepage__category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .homepage__hero {
    grid-template-columns: 1fr;
  }
  .homepage__hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .homepage__shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .homepage__stats,
  .homepage__promo-grid,
  .homepage__promo-grid--compact,
  .homepage__category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .homepage__shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .homepage__section-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .homepage__container {
    padding: 18px 14px 56px;
  }
  .homepage__hero-copy,
  .homepage__hero-grid,
  .homepage__stat,
  .homepage__seo-card,
  .homepage__chips-box {
    padding: 20px;
    border-radius: 22px;
  }
  .homepage__hero-title {
    max-width: none;
  }
  .homepage__hero-grid,
  .homepage__stats,
  .homepage__promo-grid,
  .homepage__promo-grid--compact,
  .homepage__shop-grid,
  .homepage__category-grid {
    grid-template-columns: 1fr;
  }
  .homepage__hero-grid {
    gap: 14px;
  }
  .homepage__promo-card,
  .homepage__shop-card {
    padding: 16px;
  }
}

/*# sourceMappingURL=page-front-page.css.map */
