:root {
  --black: #07090b;
  --dark: #111318;
  --white: #ffffff;
  --paper: #f5f6f2;
  --line: #e7e9df;
  --lime: #b9f300;
  --lime-soft: #d8ff5a;
  --muted: #6b7280;
  --ink: #111418;
  --danger: #e61d2d;
  --container: min(1240px, calc(100% - 48px));
  --radius: 22px;
  --radius-sm: 16px;
  --shadow: 0 18px 45px rgba(17, 19, 24, 0.08);
  --shadow-strong: 0 28px 80px rgba(17, 19, 24, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 7%, rgba(185, 243, 0, 0.18), transparent 28rem),
    linear-gradient(180deg, #fff 0, var(--paper) 42rem, #f2f3ef 100%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

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

main {
  padding-bottom: 36px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.header-row {
  width: var(--container);
  margin: 0 auto;
}

.header-top {
  min-height: 72px;
  display: grid;
  grid-template-columns: 220px minmax(420px, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.brand span {
  font-size: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.6vw, 38px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

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

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

.main-nav a:hover {
  color: #fff;
}

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

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

.icon-button,
.menu-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.08);
}

.finder-button,
.primary-button,
.secondary-button,
.newsletter-panel button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: #111;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  padding: 15px 24px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.finder-button:hover,
.primary-button:hover,
.newsletter-panel button:hover {
  background: var(--lime-soft);
  transform: translateY(-1px);
}

.secondary-button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

.secondary-button:hover {
  border-color: #d6d9cf;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

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

.benefit-bar {
  background: #fff;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.benefit-inner {
  width: var(--container);
  min-height: 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  font-size: 11px;
  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: 15px;
  height: 15px;
  flex: 0 0 auto;
  border: 2px solid var(--lime);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 3px rgba(185, 243, 0, 0.25);
}

.showcase-hero {
  width: var(--container);
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(500px, 1fr);
  gap: 42px;
  align-items: center;
  padding: 56px 0 44px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  color: #9fd600;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 22px 0 0;
  color: #242a30;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(216, 255, 90, 0.72) 48%, rgba(255, 255, 255, 0.34)),
    linear-gradient(160deg, #fff, #eff7ca);
  overflow: hidden;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto -70px 46px 38%;
  height: 80px;
  border-radius: 50%;
  background: rgba(17, 19, 24, 0.16);
  filter: blur(20px);
  transform: rotate(-8deg);
}

.hero-visual::after {
  inset: 40px -130px auto auto;
  width: 360px;
  height: 360px;
  background: rgba(185, 243, 0, 0.25);
  filter: blur(4px);
  transform: rotate(25deg);
}

.floating-shoe {
  position: absolute;
  z-index: 1;
  object-fit: contain;
  filter: drop-shadow(0 26px 24px rgba(0, 0, 0, 0.24));
}

.shoe-one {
  left: 2%;
  top: 16%;
  width: 38%;
  transform: rotate(-16deg);
}

.shoe-two {
  left: 31%;
  top: 14%;
  width: 46%;
  transform: rotate(-8deg);
}

.shoe-three {
  right: 0;
  top: 22%;
  width: 34%;
  transform: rotate(12deg);
}

.rating-card {
  position: absolute;
  right: 20px;
  bottom: 28px;
  z-index: 2;
  width: min(310px, calc(100% - 40px));
  border: 1px solid rgba(231, 233, 223, 0.95);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  backdrop-filter: blur(14px);
}

.rating-card p {
  margin: 0 0 4px;
  color: #a6ce00;
  font-weight: 900;
}

.rating-card strong {
  color: var(--ink);
  margin-left: 10px;
}

.rating-card span {
  color: #333;
  font-size: 13px;
  font-weight: 700;
}

.known-strip,
.usp-grid,
.finder-panel,
.section-block,
.stats-strip,
.service-strip,
.newsletter-panel,
.catalog-hero,
.catalog-grid-section,
.deal-feature-strip,
.deal-section,
.drop-feature-strip,
.latest-highlight-section,
.drop-category-rail,
.drops-archive-hero,
.drops-archive,
.archive-bottom-copy,
.drop-detail,
.related-drops,
.drop-not-found {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.known-strip {
  position: relative;
  min-height: 108px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  grid-template-rows: auto 1fr;
  gap: 8px 10px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid rgba(231, 233, 223, 0.78);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: 0 18px 45px rgba(17, 19, 24, 0.06);
  padding: 18px 16px 22px;
}

.known-label {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.known-logo-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1.15fr 0.82fr 0.82fr 1.15fr 1.1fr;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
}

.known-logo {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  color: #4b4f55;
  filter: grayscale(1);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.known-logo span {
  width: 34px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #5a5f66;
  color: #fff;
  font-size: 11px;
  margin-right: 5px;
}

.logo-youtube {
  font-size: 27px;
}

.logo-tiktok {
  font-size: 27px;
}

.logo-instagram {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  font-style: italic;
  font-weight: 700;
}

.logo-kicker {
  font-size: 34px;
}

.logo-sport {
  color: #50545a;
  font-size: 30px;
  font-style: italic;
}

.logo-transfer {
  display: inline-flex;
  max-width: 132px;
  justify-self: center;
  border: 2px solid #777b82;
  color: #555b62;
  font-size: 15px;
  font-style: italic;
  line-height: 0.85;
  padding: 4px 6px;
  text-transform: lowercase;
  white-space: normal;
}

.logo-onefootball {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.known-arrow {
  width: 32px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #40454c;
  cursor: pointer;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.known-arrow:hover {
  background: rgba(185, 243, 0, 0.14);
  color: var(--black);
  transform: translateY(-1px);
}

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

.usp-grid article,
.category-card,
.showcase-product-card,
.blog-card,
.youtube-card,
.service-strip article,
.drop-detail-content,
.drop-detail-aside,
.related-card,
.archive-card,
.hot-deal-tile,
.deal-feature-strip article,
.drop-feature-strip article,
.latest-feature-card,
.drop-category-rail a {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
}

.usp-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 8px;
  row-gap: 7px;
  align-content: center;
  min-height: 118px;
  padding: 16px 10px;
  border-color: rgba(231, 233, 223, 0.86);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(17, 19, 24, 0.06);
}

.round-icon {
  grid-row: 1 / span 2;
  align-self: center;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8ffa5, #f7ffe4);
  color: #87a900;
  box-shadow:
    inset 0 0 0 1px rgba(185, 243, 0, 0.16),
    0 8px 22px rgba(135, 169, 0, 0.11);
}

.round-icon svg {
  width: 28px;
  height: 28px;
  overflow: visible;
}

.round-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.round-icon .icon-fill,
.round-icon .icon-dot {
  fill: currentColor;
  stroke-width: 0;
}

.usp-grid h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.24;
}

.service-strip strong {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 900;
}

.usp-grid p {
  grid-column: 2;
  margin: 0;
  color: #31383f;
  font-size: 13px;
  line-height: 1.46;
}

.service-strip span {
  margin: 0;
  color: #31383f;
  font-size: 13px;
}

.finder-panel {
  min-height: 270px;
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  margin-top: 2px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 42%, rgba(185, 243, 0, 0.18), transparent 25rem),
    linear-gradient(145deg, #090b0e, #171b1f);
  color: #fff;
  overflow: hidden;
  padding: 30px 42px;
  box-shadow: var(--shadow-strong);
}

.phone-mockup {
  width: 148px;
  height: 245px;
  justify-self: center;
  border: 10px solid #111;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
  padding: 12px;
}

.phone-screen {
  color: var(--ink);
}

.phone-screen h3 {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.25;
}

.phone-screen span {
  display: block;
  margin: 7px 0;
  border: 1px solid #e5e8df;
  border-radius: 8px;
  background: #fbfcf7;
  font-size: 10px;
  font-weight: 800;
  padding: 7px;
}

.finder-copy h2 {
  max-width: 530px;
  margin: 0 0 16px;
  font-size: clamp(28px, 2.6vw, 40px);
  font-weight: 900;
  line-height: 1.05;
}

.finder-copy ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.finder-copy li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
}

.finder-copy li::before {
  content: "✓";
  color: var(--lime);
  margin-right: 9px;
}

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

.finder-process span {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 255, 90, 0.25);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.finder-panel-redesign {
  position: relative;
  min-height: 270px;
  grid-template-columns: 180px minmax(280px, 0.72fr) minmax(430px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 82% 50%, rgba(185, 243, 0, 0.08), transparent 8rem),
    radial-gradient(circle at 84% 50%, transparent 0, transparent 4.3rem, rgba(255, 255, 255, 0.08) 4.4rem, transparent 4.5rem),
    radial-gradient(circle at 84% 50%, transparent 0, transparent 8.4rem, rgba(255, 255, 255, 0.06) 8.5rem, transparent 8.6rem),
    radial-gradient(circle at 84% 50%, transparent 0, transparent 12.8rem, rgba(255, 255, 255, 0.045) 12.9rem, transparent 13rem),
    linear-gradient(135deg, #050607 0%, #0b0d10 58%, #141719 100%);
  padding: 26px clamp(24px, 4vw, 54px) 28px;
}

.finder-panel-redesign::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.32;
  pointer-events: none;
}

.finder-panel-redesign > * {
  position: relative;
  z-index: 1;
}

.finder-panel-redesign .phone-mockup {
  width: 138px;
  height: 242px;
  align-self: end;
  border: 8px solid #06070a;
  border-bottom-width: 0;
  border-radius: 26px 26px 0 0;
  background: #f8fbf5;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.48);
  padding: 18px 10px 10px;
  overflow: hidden;
}

.phone-speaker {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 38px;
  height: 4px;
  border-radius: 999px;
  background: #111;
  transform: translateX(-50%);
}

.finder-panel-redesign .phone-screen {
  min-height: 100%;
  display: grid;
  align-content: start;
  border-radius: 18px 18px 0 0;
  background: #fff;
  color: var(--ink);
  padding: 14px 10px;
}

.finder-panel-redesign .phone-screen h3 {
  margin: 0 0 12px;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 900;
}

.finder-panel-redesign .phone-screen span {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 6px;
  align-items: center;
  margin: 4px 0;
  border-color: #e7eadf;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(17, 19, 24, 0.04);
  font-size: 8px;
  padding: 7px 6px;
}

.phone-screen i {
  width: 14px;
  height: 14px;
  display: inline-flex;
  border: 1px solid #dfe8c7;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--lime) 0 2px, transparent 2.5px),
    #f6ffe0;
}

.finder-panel-redesign .finder-copy h2 {
  max-width: 470px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(25px, 2.35vw, 36px);
  letter-spacing: -0.04em;
}

.finder-panel-redesign .finder-copy ul {
  gap: 7px;
  margin-bottom: 22px;
}

.finder-panel-redesign .finder-copy li {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
}

.finder-panel-redesign .finder-copy li::before {
  content: "✓";
  color: var(--lime);
  font-size: 15px;
  font-weight: 900;
}

.finder-cta {
  min-width: 188px;
  gap: 18px;
  padding-inline: 28px;
}

.finder-panel-redesign .finder-process {
  position: relative;
  min-height: 152px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  padding-top: 22px;
}

.finder-panel-redesign .finder-process::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 10%;
  right: 10%;
  height: 1px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.34) 0 8px, transparent 8px 16px);
}

.finder-panel-redesign .finder-process::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 15%;
  bottom: 12px;
  height: 72px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.34);
  border-left: 1px dashed rgba(255, 255, 255, 0.26);
  border-right: 1px dashed rgba(255, 255, 255, 0.26);
  border-radius: 0 0 48% 48%;
  opacity: 0.75;
}

.finder-panel-redesign .finder-process span {
  position: relative;
  z-index: 1;
  min-height: 0;
  display: grid;
  justify-items: center;
  gap: 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.finder-panel-redesign .finder-process span::before {
  content: "";
  width: 54px;
  height: 54px;
  display: block;
  border: 1px solid rgba(185, 243, 0, 0.44);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(185, 243, 0, 0.16), rgba(185, 243, 0, 0.02)),
    #0b0d10;
  box-shadow: 0 0 0 10px rgba(185, 243, 0, 0.035);
}

.finder-panel-redesign .finder-process span::after {
  position: absolute;
  top: 14px;
  left: 50%;
  color: var(--lime);
  font-size: 22px;
  line-height: 1;
  transform: translateX(-50%);
}

.finder-panel-redesign .finder-process span:nth-child(1)::after {
  content: "⌁";
}

.finder-panel-redesign .finder-process span:nth-child(2)::after {
  content: "✣";
}

.finder-panel-redesign .finder-process span:nth-child(3)::after {
  content: "⌂";
}

.finder-panel-redesign .finder-process span:nth-child(4)::after {
  content: "▣";
}

.section-block {
  padding: 34px 0 0;
}

.section-block.compact {
  padding-top: 30px;
}

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

.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section-heading a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.section-heading a::after {
  content: " →";
  color: #95c600;
}

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

.category-card {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 18px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover,
.showcase-product-card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 55px rgba(17, 19, 24, 0.12);
}

.category-card h3 {
  margin: 0 0 3px;
  font-size: 17px;
  font-weight: 900;
}

.category-card p {
  margin: 0;
  color: #394049;
  font-size: 12px;
}

.category-card img {
  position: absolute;
  left: 16px;
  right: 44px;
  bottom: 8px;
  width: calc(100% - 54px);
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 13px 12px rgba(17, 19, 24, 0.16));
}

.category-card a {
  position: absolute;
  right: 14px;
  bottom: 16px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 19, 24, 0.12);
  font-weight: 900;
}

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

.showcase-product-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-product-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  padding: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card-top {
  position: absolute;
  inset: 12px 12px auto 12px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.product-badge {
  border-radius: 5px;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  padding: 7px 9px;
}

.product-badge.discount {
  background: var(--danger);
}

.product-badge.new {
  background: #111;
}

.favorite-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  font-size: 18px;
  pointer-events: auto;
}

.showcase-product-image {
  height: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #fbfcf9, #eef5d9);
  margin-bottom: 14px;
}

.showcase-product-image img {
  width: 90%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 16px 16px rgba(17, 19, 24, 0.16));
}

.showcase-product-body h3 {
  min-height: 58px;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
}

.showcase-price {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: baseline;
  margin: 0 0 4px;
  color: var(--danger);
  font-size: 18px;
  font-weight: 900;
}

.showcase-price s {
  color: #9aa1a8;
  font-size: 12px;
  font-weight: 800;
}

.showcase-stock,
.showcase-sizes {
  margin: 0;
  font-size: 12px;
}

.showcase-stock {
  color: #4b9a00;
  font-weight: 900;
}

.showcase-sizes {
  color: #4b545c;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0, rgba(185, 243, 0, 0.16), transparent 24rem),
    var(--black);
  color: #fff;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.stats-strip article {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.stats-strip article:last-child {
  border-right: 0;
}

.stats-strip strong {
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
}

.stats-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
}

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

.blog-card {
  min-width: 0;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.blog-image {
  display: block;
  min-height: 160px;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18)),
    var(--blog-image);
  background-position: center;
  background-size: cover;
  padding: 14px;
}

.blog-image span {
  display: inline-flex;
  border-radius: 5px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  padding: 7px 9px;
}

.blog-card div {
  padding: 16px;
}

.blog-card h3 {
  margin: 0 0 9px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  color: #515a63;
  font-size: 13px;
}

.youtube-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 100% 100%, rgba(17, 19, 24, 0.12), transparent 9rem),
    #fbfcf6;
  padding: 26px;
}

.youtube-card h3 {
  max-width: 220px;
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.08;
}

.youtube-card p {
  margin: 0 0 22px;
  color: #414951;
  font-size: 14px;
}

.play-button {
  position: absolute;
  right: -16px;
  bottom: -12px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(17, 19, 24, 0.12);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 45px;
  top: 34px;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 31px solid var(--black);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  overflow: hidden;
}

.service-strip article {
  display: grid;
  gap: 2px;
  min-height: 84px;
  border-radius: 0;
  border-right: 0;
  padding: 21px 24px;
}

.service-strip article:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.service-strip article:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.newsletter-panel {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 48%, rgba(185, 243, 0, 0.18), transparent 16rem),
    var(--black);
  color: #fff;
  overflow: hidden;
  padding: 24px 42px 24px 24px;
  box-shadow: var(--shadow-strong);
}

.newsletter-panel img {
  width: 220px;
  height: 118px;
  object-fit: cover;
  border-radius: 16px;
}

.newsletter-panel h2 {
  margin: 0 0 5px;
  font-size: 29px;
  font-weight: 900;
}

.newsletter-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-panel form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 12px;
}

.newsletter-panel input {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  padding: 0 18px;
}

.catalog-hero {
  padding: 58px 0 26px;
}

.catalog-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(50px, 6vw, 98px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

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

.catalog-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: #333b42;
  font-size: 18px;
}

.catalog-grid-section {
  padding-bottom: 60px;
}

.hot-deals-hero {
  padding-bottom: 20px;
}

.deal-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.deal-section-nav a,
.drop-section-nav a {
  display: inline-flex;
  min-height: 42px;
  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: 10px 16px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.deal-section-nav a:hover,
.drop-section-nav a:hover {
  border-color: var(--lime);
  background: var(--lime);
  transform: translateY(-1px);
}

.drop-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

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

.drop-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.deal-feature-strip article,
.drop-feature-strip article {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 22px;
}

.deal-feature-strip strong,
.drop-feature-strip strong {
  font-size: 20px;
  font-weight: 900;
}

.deal-feature-strip span,
.drop-feature-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.deal-section {
  scroll-margin-top: 120px;
  padding: 24px 0 58px;
}

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

.hot-deal-tile {
  min-width: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hot-deal-tile:hover {
  border-color: rgba(185, 243, 0, 0.7);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.hot-deal-tile a {
  position: relative;
  min-height: 272px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 6%, rgba(185, 243, 0, 0.34), transparent 14rem),
    linear-gradient(145deg, #fff, #f4f6ed);
  padding: 16px;
}

.hot-deal-badge,
.hot-deal-cta {
  position: relative;
  z-index: 2;
  justify-self: start;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hot-deal-badge {
  background: var(--danger);
  color: #fff;
  padding: 7px 10px;
}

.hot-deal-tile img {
  width: 100%;
  height: 142px;
  align-self: center;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(17, 19, 24, 0.18));
  transform: rotate(-5deg) scale(1.04);
  transition: transform 180ms ease;
}

.hot-deal-tile:hover img {
  transform: rotate(-2deg) scale(1.1);
}

.hot-deal-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.hot-deal-copy strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hot-deal-copy small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hot-deal-cta {
  margin-top: 16px;
  background: var(--black);
  color: #fff;
  padding: 9px 12px;
  transition: background 160ms ease, color 160ms ease;
}

.hot-deal-tile:hover .hot-deal-cta {
  background: var(--lime);
  color: var(--black);
}

.latest-drops-hero strong {
  color: var(--black);
}

.latest-highlight-section {
  padding: 14px 0 42px;
}

.latest-highlight-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 0.72fr));
  gap: 18px;
}

.latest-feature-card {
  min-width: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.latest-feature-card:first-child {
  grid-row: span 2;
}

.latest-feature-card:hover {
  border-color: rgba(185, 243, 0, 0.72);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.latest-feature-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  color: inherit;
}

.latest-feature-image {
  display: block;
  aspect-ratio: 16 / 10;
  background-image:
    linear-gradient(180deg, transparent 30%, rgba(7, 9, 11, 0.36)),
    var(--feature-image);
  background-position: center;
  background-size: cover;
}

.latest-feature-card:first-child .latest-feature-image {
  aspect-ratio: 16 / 13;
}

.latest-feature-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.latest-feature-body small {
  color: #92bf00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.latest-feature-body strong {
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.latest-feature-card:not(:first-child) .latest-feature-body strong {
  font-size: 21px;
}

.latest-feature-body span {
  display: -webkit-box;
  overflow: hidden;
  color: #4b525b;
  font-size: 14px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.drop-category-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 34px;
}

.drop-category-rail a {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.drop-category-rail a:hover {
  border-color: var(--lime);
  box-shadow: var(--shadow-strong);
  transform: translateY(-3px);
}

.drop-category-rail strong {
  font-size: 20px;
  font-weight: 900;
}

.drop-category-rail span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.latest-shoes-archive {
  scroll-margin-top: 120px;
}

.latest-drop-card .archive-image {
  min-height: 218px;
}

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

.drops-archive-hero h1 {
  max-width: 980px;
  margin: 0 0 18px;
  font-size: clamp(50px, 6vw, 100px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.drops-archive-hero p,
.archive-bottom-copy p {
  max-width: 920px;
  margin: 0 0 24px;
  color: #333b42;
  font-size: 17px;
}

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

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

.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);
}

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

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

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

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

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

.archive-card-body {
  min-height: 204px;
  padding: 22px;
}

.archive-meta {
  margin: 0 0 10px;
  color: #92bf00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-card h2 {
  margin: 0 0 11px;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

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

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

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

.archive-bottom-copy {
  padding-bottom: 62px;
}

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

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

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

.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: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(185, 243, 0, 0.3), transparent 24rem),
    #fff;
  padding: clamp(26px, 4vw, 58px);
  box-shadow: var(--shadow);
}

.detail-kicker {
  margin: 0 0 14px;
  color: #92bf00;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-detail h1,
.drop-not-found h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 5.2vw, 88px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

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

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

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

.drop-detail-content,
.drop-detail-aside {
  padding: clamp(24px, 3vw, 46px);
}

.drop-detail-content h2,
.drop-detail-aside h2 {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 900;
}

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

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

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

.drop-detail-aside li {
  position: relative;
  padding-left: 22px;
  font-weight: 800;
}

.drop-detail-aside li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
}

.related-drops {
  padding-bottom: 70px;
}

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

.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: #92bf00;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 0;
  padding: 0 18px 22px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
}

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

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

.site-footer {
  margin-top: 40px;
  background:
    radial-gradient(circle at 18% 0, rgba(185, 243, 0, 0.12), transparent 24rem),
    var(--black);
  color: #fff;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) repeat(4, minmax(130px, 0.7fr));
  gap: 34px;
  padding: 54px 0 38px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 340px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 900;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

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

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 28px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.payment-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

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

  .main-nav {
    gap: 15px;
    font-size: 12px;
  }

  .finder-button {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hero-visual {
    min-height: 390px;
  }

  .known-strip {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
  }

  .known-logo-row {
    gap: clamp(10px, 2vw, 26px);
  }

  .logo-transfer {
    max-width: 110px;
  }

  .logo-youtube,
  .logo-tiktok,
  .logo-instagram {
    font-size: 22px;
  }

  .logo-kicker {
    font-size: 29px;
  }

  .logo-sport {
    font-size: 25px;
  }

  .logo-transfer,
  .logo-onefootball {
    font-size: 13px;
  }

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

  .finder-panel {
    grid-template-columns: 180px 1fr;
  }

  .finder-process {
    grid-column: 1 / -1;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
  }

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

  .newsletter-panel {
    grid-template-columns: 180px 1fr;
  }

  .newsletter-panel form {
    grid-column: 1 / -1;
  }

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

  .drop-feature-strip,
  .drop-category-rail,
  .latest-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .latest-feature-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 1240px);
  }

  .header-top {
    grid-template-columns: 1fr auto;
  }

  .brand span {
    font-size: 18px;
  }

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

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

  .menu-button {
    display: inline-flex;
  }

  .icon-button {
    display: none;
  }

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

  .showcase-hero {
    min-height: 0;
    padding: 38px 0 30px;
  }

  .hero-copy h1 {
    font-size: 50px;
  }

  .usp-grid,
  .category-grid,
  .showcase-product-grid,
  .showcase-product-grid.four,
  .stats-strip,
  .service-strip,
  .archive-grid,
  .related-grid,
  .hot-deal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-feature-strip {
    grid-template-columns: 1fr;
  }

  .drop-feature-strip,
  .drop-category-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .known-strip {
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    padding-inline: 12px;
  }

  .known-logo-row {
    grid-auto-columns: minmax(120px, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding: 4px 4px 10px;
    scrollbar-width: none;
  }

  .known-logo-row::-webkit-scrollbar {
    display: none;
  }

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

  .phone-mockup {
    justify-self: start;
  }

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

  .stats-strip article:nth-child(2n),
  .service-strip article:nth-child(2n) {
    border-right: 0;
  }

  .newsletter-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .newsletter-panel img {
    width: 100%;
    height: 180px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: relative;
  }

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

  .finder-button {
    display: none;
  }

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

  .main-nav a {
    padding: 13px 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: 10px;
  }

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

  .showcase-hero {
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 330px;
    border-radius: 20px;
  }

  .shoe-one {
    width: 45%;
  }

  .shoe-two {
    width: 55%;
    left: 26%;
  }

  .shoe-three {
    width: 38%;
  }

  .rating-card {
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
  }

  .usp-grid,
  .category-grid,
  .showcase-product-grid,
  .showcase-product-grid.four,
  .drop-feature-strip,
  .drop-category-rail,
  .latest-highlight-grid,
  .stats-strip,
  .service-strip,
  .archive-grid,
  .related-grid,
  .blog-grid,
  .hot-deal-grid {
    grid-template-columns: 1fr;
  }

  .known-strip {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    min-height: 100px;
    gap: 6px;
    padding: 16px 8px 18px;
  }

  .known-arrow {
    width: 24px;
    font-size: 28px;
  }

  .known-logo-row {
    grid-auto-columns: minmax(112px, 1fr);
    gap: 16px;
  }

  .logo-youtube,
  .logo-tiktok,
  .logo-instagram {
    font-size: 18px;
  }

  .logo-kicker {
    font-size: 24px;
  }

  .logo-sport {
    font-size: 21px;
  }

  .logo-transfer,
  .logo-onefootball {
    font-size: 12px;
  }

  .usp-grid article {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .round-icon {
    width: 48px;
    height: 48px;
  }

  .round-icon svg {
    width: 28px;
    height: 28px;
  }

  .finder-panel {
    padding: 24px;
  }

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

  .finder-process span {
    min-height: 76px;
  }

  .section-heading {
    align-items: start;
    display: grid;
  }

  .showcase-product-image {
    height: 180px;
  }

  .stats-strip article,
  .service-strip article {
    min-height: 86px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-strip article {
    border-bottom-color: var(--line);
  }

  .newsletter-panel form {
    grid-template-columns: 1fr;
  }

  .catalog-hero h1,
  .drops-archive-hero h1 {
    font-size: 48px;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .finder-panel-redesign {
    grid-template-columns: 150px minmax(260px, 0.76fr) minmax(390px, 1fr);
    gap: 26px;
    padding-inline: 28px;
  }

  .finder-panel-redesign .phone-mockup {
    width: 126px;
    height: 224px;
  }

  .finder-panel-redesign .finder-process {
    grid-column: auto;
    gap: 10px;
  }

  .finder-panel-redesign .finder-process span::before {
    width: 48px;
    height: 48px;
  }

  .finder-panel-redesign .finder-process span::after {
    top: 12px;
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .finder-panel-redesign {
    grid-template-columns: 160px 1fr;
  }

  .finder-panel-redesign .finder-process {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .finder-panel-redesign {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .finder-panel-redesign .phone-mockup {
    justify-self: center;
  }

  .finder-panel-redesign .finder-copy h2 {
    font-size: 30px;
  }

  .finder-panel-redesign .finder-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    gap: 22px 12px;
    padding-top: 4px;
  }

  .finder-panel-redesign .finder-process::before,
  .finder-panel-redesign .finder-process::after {
    display: none;
  }
}
