:root {
  --white: #ffffff;
  --red: #dd1d16;
  --red-dark: #a90f0a;
  --text: #171717;
  --muted: #5a5a5a;
  --gray-100: #f8f9fb;
  --gray-200: #e8ecf1;
  --radius-sm: 0.625rem;
  --radius-md: 1.05rem;
  --radius-lg: 1.5rem;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.07);
}

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

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(3.4rem, 8vw, 5.4rem) 0;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.77rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 4%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
}

.brand__badge {
  background: var(--red);
  color: var(--white);
  padding: 0.28rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
}

.brand__text {
  color: var(--red-dark);
  font-size: 0.85rem;
}

.main-nav {
  display: none;
  gap: 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.main-nav a:hover {
  color: var(--red);
}

.menu-toggle {
  border: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}

.mobile-menu {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 4%;
  display: none;
  gap: 0.5rem;
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 95;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - 58px);
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  padding: 0.55rem;
  border-radius: 0.5rem;
}

.mobile-menu a:hover {
  background: var(--gray-100);
  color: var(--red);
}

.hero {
  background:
    radial-gradient(circle at 8% 20%, rgba(221, 29, 22, 0.08), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(255, 202, 47, 0.15), transparent 36%),
    linear-gradient(to bottom, #fff, #fffaf8);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero__subtitle {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.status {
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
}

.seller-of-month {
  border: 1px solid #ffd9d2;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fffaf8, #fff);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 1.4rem;
}

.seller-of-month__tag {
  margin: 0 0 0.8rem;
  color: var(--red-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.74rem;
}

.seller-of-month__grid {
  display: grid;
  gap: 1rem;
}

.seller-of-month h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.seller-of-month__meta {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.seller-of-month__meta a:hover {
  color: var(--red);
}

.seller-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid var(--gray-200);
  background: #f1f1f1;
}

.seller-photo--main {
  aspect-ratio: 4 / 3;
}

.sellers-grid {
  display: grid;
  gap: 0.85rem;
}

.seller-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.8rem;
}

.seller-card__name {
  margin: 0;
  font-size: 1.05rem;
}

.seller-card__meta {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.seller-card__meta a:hover {
  color: var(--red);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red), #ff4034);
  color: #fff;
}

.footer {
  background: #121212;
  color: #ededed;
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  gap: 1.2rem;
}

.footer h3 {
  margin: 0 0 0.7rem;
}

.footer p,
.footer a {
  margin: 0 0 0.45rem;
  color: #d3d3d3;
}

@media (min-width: 680px) {
  .sellers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 920px) {
  .main-nav {
    display: flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }

  .seller-of-month__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .sellers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}
