:root {
  --black: #08090a;
  --dark: #0b0d0f;
  --dark-2: #14171a;
  --ink: #111418;
  --muted: #666f78;
  --line: #e4e8ec;
  --paper: #f5f6f4;
  --surface: #ffffff;
  --surface-soft: #f9faf7;
  --lime: #c8f018;
  --lime-strong: #a9d912;
  --lime-soft: #edf8b9;
  --page-gutter: clamp(18px, 3.2vw, 76px);
  --wide-width: calc(100% - (var(--page-gutter) * 2));
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 48px rgba(18, 24, 32, 0.08);
  --shadow-soft: 0 8px 26px rgba(18, 24, 32, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 8%, rgba(200, 240, 24, 0.22), transparent 26rem),
    linear-gradient(180deg, #ffffff 0, var(--paper) 36rem, #f2f3f1 100%);
  font-family: "Inter", "Nunito Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

main {
  padding-bottom: 22px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: #fff;
  background: var(--dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.header-row {
  width: var(--wide-width);
  max-width: 1920px;
  margin: 0 auto;
}

.header-top {
  display: grid;
  grid-template-columns: 230px minmax(360px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3vw, 54px);
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 210px;
  height: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 46px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--lime);
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.product-search {
  position: relative;
  width: 46px;
  height: 46px;
  margin: 0;
}

.product-search svg {
  position: absolute;
  left: 13px;
  top: 13px;
  width: 20px;
  height: 20px;
  fill: #fff;
  z-index: 2;
}

.product-search input {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  outline: 0;
  padding: 0 12px 0 44px;
  transition: width 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-search input::placeholder {
  color: transparent;
}

.product-search input:focus {
  width: 190px;
  border-color: rgba(200, 240, 24, 0.7);
  background: rgba(255, 255, 255, 0.11);
}

.product-search input:focus::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.finder-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  padding: 12px 22px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.14);
  transition: transform 160ms ease, background 160ms ease;
}

.finder-button:hover {
  background: #d8ff2e;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #fff;
}

.benefit-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #fff;
  color: #1c2228;
}

.benefit-inner {
  width: var(--wide-width);
  max-width: 1920px;
  min-height: 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-inner span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.benefit-inner span::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid var(--lime-strong);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  background: var(--lime);
}

.hero-carousel {
  position: relative;
  width: var(--wide-width);
  max-width: 1920px;
  margin: 26px auto 0;
  overflow: hidden;
  border: 1px solid rgba(218, 226, 231, 0.92);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0 42%, rgba(239, 249, 191, 0.85) 42% 65%, rgba(255, 255, 255, 0.95) 65%),
    #fff;
  box-shadow: var(--shadow);
}

.hero-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.hero-tile {
  position: relative;
  min-height: clamp(430px, 39vw, 680px);
  display: grid;
  align-content: end;
  overflow: hidden;
  color: #fff;
  padding: clamp(28px, 3.8vw, 58px);
}

.hero-tile::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.34)),
    var(--desktop-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 54px rgba(16, 20, 22, 0.18);
}

.hero-tile::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 32px;
  width: 52%;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(15px);
}

.hero-tile h1,
.hero-tile h2 {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin: 0 0 28px;
  font-size: clamp(44px, 4.4vw, 82px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -1px;
  text-transform: none;
}

.hero-tile h1::first-line,
.hero-tile h2::first-line {
  color: #fff;
}

.hero-tile a,
.drop-tile a,
.section-heading a,
.product-card a,
.deal-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 156px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: #111;
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
  padding: 13px 22px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.hero-tile a::after,
.section-heading a::after,
.drop-tile a::after {
  content: "→";
  margin-left: 10px;
  font-weight: 900;
}

.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: none;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(8, 9, 10, 0.82);
  color: #fff;
  font-size: 42px;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-arrow-left {
  left: 16px;
}

.hero-arrow-right {
  right: 16px;
}

.product-strip,
.deals-section,
.drops-archive-hero,
.drops-archive,
.archive-bottom-copy,
.drop-detail,
.related-drops,
.drop-not-found {
  width: var(--wide-width);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 26px 0 10px;
}

.product-card,
.deal-card,
.archive-card,
.related-card,
.drop-detail-aside {
  border: 1px solid rgba(221, 226, 230, 0.9);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 16px;
}

.product-image {
  height: clamp(140px, 13vw, 230px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 12px;
  background: linear-gradient(160deg, #f8faf5, #eef5d8);
}

.product-image img {
  max-height: min(210px, 86%);
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 16px 16px rgba(17, 20, 24, 0.16));
}

.product-card h3,
.deal-card h3 {
  min-height: 64px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.product-card p,
.deal-card p {
  min-height: 24px;
  margin: 0 0 14px;
  color: #e2212b;
  font-size: 17px;
  font-weight: 900;
}

.product-card a,
.deal-card a {
  min-width: 0;
  min-height: 36px;
  justify-self: start;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  padding: 9px 12px;
  box-shadow: none;
}

.deals-section {
  padding: 34px 0 54px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 2vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}

.section-heading a {
  min-width: 0;
  min-height: 34px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  padding: 8px 0;
}

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

.deal-card {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 16px;
}

.deal-card span {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  min-width: 46px;
  border-radius: 6px;
  background: #ed1f2b;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 9px;
}

.deal-card img {
  height: clamp(130px, 11vw, 220px);
  width: 100%;
  margin: 8px auto 14px;
  object-fit: contain;
  border-radius: 12px;
  background: linear-gradient(160deg, #f9faf8, #eef5d9);
  filter: drop-shadow(0 14px 14px rgba(17, 20, 24, 0.12));
}

.deal-card s {
  color: #8b9298;
  font-weight: 700;
}

.drops-section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 44px var(--page-gutter) 64px;
  background:
    linear-gradient(180deg, #ffffff, #f4f5f2),
    var(--paper);
}

.drops-section .section-heading,
.drops-grid {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

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

.drop-tile {
  min-height: clamp(330px, 28vw, 480px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: var(--radius);
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62)),
    var(--drop-image);
  background-position: center;
  background-size: cover;
  color: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}

.drop-tile h3 {
  width: min(100%, 440px);
  margin: 0;
  font-size: clamp(30px, 2.7vw, 52px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.8px;
  text-transform: none;
}

.drops-archive-hero {
  padding: 54px 0 28px;
}

.drops-archive-hero h1 {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 110px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -2px;
  text-transform: none;
}

.drops-archive-hero h1::after {
  content: ".";
  color: var(--lime-strong);
}

.drops-archive-hero p {
  width: min(940px, 100%);
  margin: 0 0 26px;
  color: #333b42;
  font-size: 18px;
  line-height: 1.58;
}

.archive-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-filter-tabs button,
.archive-pagination button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
  padding: 11px 18px;
  box-shadow: var(--shadow-soft);
}

.archive-filter-tabs button.active,
.archive-pagination button.active,
.archive-filter-tabs button:hover,
.archive-pagination button:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: #111;
}

.drops-archive {
  padding: 8px 0 62px;
}

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

.archive-card {
  min-width: 0;
  overflow: hidden;
}

.archive-card[hidden] {
  display: none;
}

.archive-image {
  display: block;
  aspect-ratio: 1 / 0.82;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
}

.archive-card-body {
  position: relative;
  min-height: 204px;
  background: #fff;
  padding: 20px;
}

.archive-meta {
  margin: 0 0 10px;
  color: var(--lime-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-card h2 {
  margin: 0 0 11px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.4px;
}

.archive-card-body > p:last-child {
  display: -webkit-box;
  min-height: 62px;
  margin: 0;
  overflow: hidden;
  color: #555f67;
  font-size: 15px;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.archive-empty {
  margin: 34px 0 0;
  font-weight: 800;
}

.archive-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 44px;
}

.archive-bottom-copy {
  padding: 0 0 70px;
}

.archive-bottom-copy p {
  width: min(1180px, 100%);
  margin: 0;
  color: #333b42;
  font-size: 18px;
  line-height: 1.58;
}

.drop-detail {
  padding: 34px 0 64px;
}

.detail-back,
.drop-not-found a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  padding: 11px 16px;
  box-shadow: var(--shadow-soft);
}

.detail-back:hover,
.drop-not-found a:hover {
  border-color: var(--lime);
  background: var(--lime);
  color: #111;
}

.drop-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(460px, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  margin-top: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(200, 240, 24, 0.34), transparent 24rem),
    #fff;
  padding: clamp(26px, 4vw, 58px);
  box-shadow: var(--shadow);
}

.drop-detail-copy {
  min-width: 0;
}

.detail-kicker {
  margin: 0 0 14px;
  color: var(--lime-strong);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-detail h1,
.drop-not-found h1 {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.2vw, 94px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -1.6px;
  text-transform: none;
}

.detail-lead {
  margin: 24px 0 0;
  color: #333b42;
  font-size: clamp(18px, 1.45vw, 25px);
  line-height: 1.42;
}

.drop-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 22px 50px rgba(17, 20, 24, 0.16);
}

.drop-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
  margin-top: 48px;
}

.drop-detail-content {
  max-width: 930px;
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(28px, 3.4vw, 52px);
  box-shadow: var(--shadow-soft);
}

.drop-detail-content h2,
.drop-detail-aside h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.drop-detail-content h2:not(:first-child) {
  margin-top: 38px;
}

.drop-detail-content p {
  margin: 0;
  color: #333b42;
  font-size: 18px;
  line-height: 1.68;
}

.drop-detail-aside {
  padding: 26px;
}

.drop-detail-aside ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.drop-detail-aside li {
  position: relative;
  padding-left: 24px;
  color: #333b42;
  font-weight: 800;
}

.drop-detail-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(200, 240, 24, 0.2);
}

.related-drops {
  padding: 0 0 72px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.related-card {
  min-width: 0;
  overflow: hidden;
}

.related-image {
  display: block;
  aspect-ratio: 16 / 10;
  background-image: var(--card-image);
  background-position: center;
  background-size: cover;
}

.related-card p {
  margin: 18px 18px 8px;
  color: var(--lime-strong);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 0;
  padding: 0 18px 22px;
  color: var(--ink);
  font-size: 27px;
  font-weight: 900;
  line-height: 1.04;
}

.drop-not-found {
  padding: 76px 0 120px;
}

.drop-not-found p:not(.detail-kicker) {
  max-width: 650px;
  margin: 24px 0;
  color: #333b42;
  font-size: 19px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  padding: 56px var(--page-gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 0, rgba(200, 240, 24, 0.12), transparent 26rem),
    var(--dark);
  color: #fff;
}

.footer-brand img {
  width: 210px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  gap: 30px;
  align-items: start;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--lime);
}

@media (max-width: 1180px) {
  .header-top {
    grid-template-columns: 210px 1fr auto;
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

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

@media (max-width: 1024px) {
  .header-top {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    justify-content: start;
    padding: 0 0 18px;
  }

  .main-nav.is-open {
    display: flex;
    flex-wrap: wrap;
  }

  .menu-button {
    display: block;
  }

  .benefit-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 0;
  }

  .hero-track {
    grid-template-columns: 1fr;
  }

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

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

  .drop-detail-hero,
  .drop-detail-layout {
    grid-template-columns: 1fr;
  }

  .drop-detail-layout {
    gap: 32px;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 18px;
  }

  .site-header {
    position: relative;
  }

  .header-top {
    min-height: 68px;
  }

  .brand img {
    width: 178px;
  }

  .product-search {
    display: none;
  }

  .finder-button {
    display: none;
  }

  .main-nav.is-open {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .benefit-inner {
    grid-template-columns: 1fr;
    gap: 6px;
    font-size: 11px;
    padding: 10px 0;
  }

  .benefit-inner span {
    justify-content: start;
  }

  .hero-carousel {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .hero-track {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-track::-webkit-scrollbar {
    display: none;
  }

  .hero-tile {
    min-width: 100%;
    min-height: 540px;
    scroll-snap-align: start;
    padding: 28px;
  }

  .hero-tile::before {
    inset: 18px;
  }

  .hero-tile h1,
  .hero-tile h2 {
    font-size: 42px;
    line-height: 0.95;
  }

  .hero-arrow {
    display: block;
  }

  .product-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 22px 0 8px;
  }

  .product-card,
  .deal-card {
    padding: 12px;
  }

  .product-image {
    height: 125px;
  }

  .product-card h3,
  .deal-card h3 {
    min-height: 74px;
    font-size: 13px;
  }

  .product-card p,
  .deal-card p {
    font-size: 14px;
  }

  .product-card a,
  .deal-card a {
    width: 100%;
    font-size: 11px;
  }

  .deals-section,
  .drops-section {
    padding-top: 28px;
    padding-bottom: 42px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .deal-card img {
    height: 130px;
  }

  .drops-grid,
  .archive-grid,
  .related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .drop-tile {
    min-height: 360px;
    padding: 24px;
  }

  .drop-tile h3 {
    font-size: 34px;
  }

  .drops-archive-hero {
    padding: 34px 0 22px;
  }

  .drops-archive-hero h1 {
    font-size: 52px;
  }

  .drops-archive-hero p,
  .archive-bottom-copy p {
    font-size: 16px;
  }

  .archive-filter-tabs {
    gap: 8px;
  }

  .archive-filter-tabs button,
  .archive-pagination button {
    padding: 10px 14px;
  }

  .archive-card h2 {
    font-size: 23px;
  }

  .drop-detail {
    padding: 24px 0 48px;
  }

  .drop-detail-hero {
    gap: 24px;
    margin-top: 24px;
    padding: 22px;
  }

  .drop-detail h1,
  .drop-not-found h1 {
    font-size: 42px;
  }

  .detail-lead {
    margin-top: 18px;
    font-size: 18px;
  }

  .drop-detail-hero img {
    aspect-ratio: 1 / 1;
  }

  .drop-detail-layout {
    margin-top: 28px;
  }

  .drop-detail-content {
    padding: 24px;
  }

  .drop-detail-content h2,
  .drop-detail-aside h2 {
    font-size: 26px;
  }

  .drop-detail-content p {
    font-size: 16px;
    line-height: 1.58;
  }

  .drop-detail-aside {
    padding: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 24px;
  }

  .site-footer nav {
    display: grid;
    gap: 12px;
  }
}
