:root {
  --ink: #101525;
  --muted: #626b7a;
  --line: #e5e8ee;
  --surface: #ffffff;
  --soft: #f6f8fb;
  --navy: #012367;
  --red: #f14242;
  --orange: #fc5732;
  --green: #147c63;
  --shadow: 0 18px 40px rgba(7, 18, 48, 0.14);
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Albert Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.announcement {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 18px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(229, 232, 238, 0.85);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: var(--header-height);
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  color: #17213b;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0;
}

.desktop-nav a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-toggle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  order: 2;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 95;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: #17213b;
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: #fff;
  background: var(--navy);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.icon-button,
.cart-button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.icon-button:hover,
.cart-button:hover,
.icon-button:focus-visible,
.cart-button:focus-visible {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
  transform: translateY(-1px);
}

.icon-button svg,
.cart-button svg {
  width: 20px;
  height: 20px;
}

.cart-button {
  position: relative;
}

.cart-button span {
  position: absolute;
  right: -5px;
  top: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  line-height: 20px;
  font-weight: 900;
}

.mobile-only {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  white-space: normal;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
}

.button.secondary {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.button.quiet {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.button.quiet:hover,
.button.quiet:focus-visible {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.button.is-disabled,
.button:disabled {
  color: #9299a7;
  border-color: var(--line);
  background: var(--soft);
  cursor: not-allowed;
  transform: none;
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.08);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  color: var(--navy);
  background: #fff;
  border-color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-slider::after {
  display: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 650ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  top: 50%;
  width: min(560px, calc(100vw - 48px));
  color: #fff;
  transform: translateY(-50%);
}

.hero-copy span,
.eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 950;
}

.hero-copy p {
  max-width: 530px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.4vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.slider-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.slider-arrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(0, 0, 0, 0.32);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 32px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.slider-dots button.is-active {
  background: var(--red);
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 24px;
}

.section.compact {
  padding-top: 64px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head h2,
.motion-copy h2,
.about-copy h2,
.newsletter h2,
.footer h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 950;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.category-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f5f7fa;
}

.category-tile img,
.sport-tile img,
.promo-strip img,
.banner-full img,
.material-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.category-tile img {
  display: block;
  object-fit: contain;
}

.category-tile::after,
.sport-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.04));
}

.category-tile span {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  color: #fff;
  font-size: clamp(20px, 2.3vw, 30px);
  line-height: 1.05;
  font-weight: 950;
  overflow-wrap: anywhere;
}

.sport-tile:hover img {
  transform: scale(1.05);
}

.promo-strip,
.banner-full,
.material-strip {
  position: relative;
  width: 100%;
  min-height: clamp(230px, 33vw, 440px);
  overflow: hidden;
  background: #0e1528;
}

.promo-strip .button {
  position: absolute;
  left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  bottom: 28px;
  z-index: 1;
}

.motion-section,
.about-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  align-items: center;
  gap: 48px;
}

.motion-media,
.about-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.motion-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.motion-copy p,
.about-copy p,
.newsletter p {
  color: var(--muted);
  font-size: 17px;
  margin: 18px 0 28px;
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sport-tile {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.sport-tile.tall {
  grid-row: span 2;
}

.sport-tile strong,
.sport-tile span {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  color: #fff;
  overflow-wrap: anywhere;
}

.sport-tile strong {
  bottom: 52px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.sport-tile span {
  bottom: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.banner-full {
  min-height: clamp(220px, 30vw, 360px);
}

.product-section {
  max-width: none;
  padding-right: max(24px, calc((100vw - 1240px) / 2 + 24px));
  padding-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  color: #fff;
  background: var(--navy);
}

.product-section .eyebrow {
  color: #fff;
}

.product-toolbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 34px;
}

.filter-pill {
  min-height: 40px;
  padding: 8px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: transparent;
  font-size: 14px;
  font-weight: 900;
}

.filter-pill.is-active,
.filter-pill:hover,
.filter-pill:focus-visible {
  color: var(--navy);
  background: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.13);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  aspect-ratio: 1 / 1;
  background: #f1f4f8;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(16, 21, 37, 0.08);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wishlist svg {
  width: 19px;
  height: 19px;
}

.wishlist.is-active {
  color: #fff;
  background: var(--red);
}

.badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.badge.dark {
  background: #222838;
}

.product-info {
  padding: 18px;
  text-align: center;
}

.product-info h3 {
  min-height: 48px;
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
  overflow-wrap: anywhere;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.price {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  min-height: 28px;
  margin: 0 0 16px;
  font-size: 14px;
}

.price span {
  color: var(--red);
  font-weight: 950;
}

.price del {
  color: #8a92a3;
}

.cart-add {
  width: 100%;
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.cart-add:hover,
.cart-add:focus-visible {
  background: var(--red);
  border-color: var(--red);
}

.cart-add.disabled,
.cart-add:disabled {
  cursor: not-allowed;
  color: #7b8492;
  background: #edf0f4;
  border-color: #edf0f4;
  transform: none;
}

.material-strip {
  min-height: clamp(220px, 36vw, 480px);
}

.about-section {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.about-media {
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-media img {
  width: min(70%, 460px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 34px;
}

.feature-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 88px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 220px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background: #fff;
}

.feature-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.newsletter {
  max-width: 1240px;
  margin: 0 auto 70px;
  padding: 44px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-page {
  background: #fff;
}

.page-heading {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 24px 24px;
  text-align: center;
}

.page-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.page-breadcrumb a {
  color: var(--navy);
}

.page-heading h1,
.page-empty h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 950;
}

.page-heading p {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17px;
}

.page-category-nav {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page-category-nav a {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #17213b;
  background: #fff;
  font-weight: 900;
}

.page-category-nav a.is-active,
.page-category-nav a:hover,
.page-category-nav a:focus-visible {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

.page-hero-image {
  max-width: 1120px;
  margin: 0 auto 36px;
  padding: 0 24px;
}

.page-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--soft);
}

.page-article-list {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 84px;
  display: grid;
  gap: 42px;
}

.page-article {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.86fr);
  align-items: center;
  gap: 34px;
}

.page-article.is-reverse {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.04fr);
}

.page-article.is-reverse .page-article-media {
  order: 2;
}

.page-article-media {
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.page-article-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-article-copy h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  font-weight: 950;
}

.page-article-copy .lead {
  margin: 14px 0 0;
  color: #273047;
  font-size: 17px;
  font-weight: 800;
}

.page-richtext {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
}

.page-richtext p,
.page-richtext ul {
  margin: 0 0 12px;
}

.page-richtext ul {
  padding-left: 20px;
}

.page-richtext li {
  margin-bottom: 6px;
}

.page-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.page-empty p {
  color: var(--muted);
  font-size: 17px;
}

.newsletter-form,
.popup-content form {
  display: flex;
  gap: 10px;
}

.newsletter-form input,
.popup-content input,
.search-field input {
  min-width: 0;
  width: 100%;
  height: 48px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.newsletter-form input:focus,
.popup-content input:focus,
.search-field input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(1, 35, 103, 0.12);
}

.footer {
  color: #fff;
  background: #121826;
}

.footer-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr;
  gap: 44px;
}

.footer h2 {
  margin-bottom: 18px;
  font-size: 20px;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.76);
}

.footer a {
  color: #fff;
}

.footer ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
}

.social-link svg {
  width: 19px;
  height: 19px;
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 24px 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-drawer,
.search-modal,
.email-popup {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(10, 15, 28, 0.58);
}

.mobile-drawer.is-open,
.search-modal.is-open,
.email-popup.is-open {
  display: block;
}

.search-modal {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.search-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.drawer-panel {
  width: min(360px, 88vw);
  height: 100%;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.drawer-head img {
  width: 138px;
}

.drawer-panel nav {
  display: grid;
  gap: 2px;
}

.drawer-panel nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.drawer-section-label {
  padding: 16px 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-dialog {
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 44px);
  margin: 22px auto;
  padding: 26px;
  overflow: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(12px);
  transition: transform 260ms ease;
}

.search-modal.is-open .search-dialog {
  transform: translateY(0);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.search-head h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
}

.search-field {
  position: relative;
  margin-top: 20px;
}

.search-field svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-field input {
  padding-left: 44px;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 14px;
}

.popular-searches button {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 800;
}

.search-results-title {
  margin: 18px 0 10px;
  font-weight: 950;
}

.search-results {
  display: grid;
  gap: 10px;
}

.search-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.search-result-link {
  min-width: 0;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.search-result img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--soft);
}

.search-result strong {
  display: block;
  overflow-wrap: anywhere;
}

.search-result-link:hover strong,
.search-result-link:focus-visible strong {
  color: var(--red);
}

.search-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-top: 3px;
}

.search-price span {
  color: var(--red);
  font-weight: 900;
}

.search-price del {
  color: #8a92a3;
}

.email-popup {
  z-index: 130;
  place-items: center;
}

.email-popup.is-open {
  display: grid;
}

.popup-panel {
  position: relative;
  width: min(760px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.popup-panel > img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
}

.popup-content {
  padding: 42px 32px;
  align-self: center;
}

.popup-content h2 {
  margin: 0;
  font-size: clamp(25px, 4vw, 34px);
}

.popup-content p {
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
}

.plain-button {
  margin-top: 16px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font-weight: 900;
  text-decoration: underline;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  max-width: min(360px, calc(100vw - 44px));
  padding: 13px 16px;
  border-radius: 8px;
  color: #fff;
  background: #17213b;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 84px;
  z-index: 80;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-top svg {
  width: 22px;
  height: 22px;
}

.bottom-nav {
  display: none;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
    font-size: 13px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sport-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .announcement span:nth-child(3),
  .desktop-nav,
  .desktop-action {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .mobile-only {
    display: inline-flex;
  }

  .brand {
    justify-self: center;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .motion-section,
  .about-section,
  .newsletter,
  .page-article,
  .page-article.is-reverse,
  .footer-grid,
  .popup-panel {
    grid-template-columns: 1fr;
  }

  .page-article.is-reverse .page-article-media {
    order: 0;
  }

  .sport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-section {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .popup-panel > img {
    min-height: 250px;
    max-height: 330px;
  }
}

@media (max-width: 749px) {
  body {
    padding-bottom: 70px;
  }

  .announcement {
    gap: 14px;
    font-size: 12px;
  }

  .announcement span:nth-child(2) {
    display: none;
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    padding: 0 14px;
  }

  .header-actions {
    width: 40px;
    visibility: hidden;
    pointer-events: none;
  }

  .header-actions > * {
    display: none;
  }

  .brand img {
    width: 132px;
  }

  .icon-button,
  .cart-button {
    width: 40px;
    height: 40px;
  }

  .hero-slider {
    width: 100%;
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    background: #fff;
  }

  .hero-slider::after {
    display: none;
  }

  .hero-slide {
    inset: auto;
  }

  .hero-slide.is-active {
    position: relative;
  }

  .hero-slide img {
    display: block;
    object-fit: contain;
    object-position: center;
    height: auto;
  }

  .hero-copy {
    display: none;
  }

  .slider-controls {
    bottom: 8px;
  }

  .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(120, 110, 100, 0.38);
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 22px;
    transition: background 0.2s;
  }
  .slider-arrow:active {
    background: rgba(120, 110, 100, 0.55);
  }

  .slider-controls {
    gap: 18px;
    bottom: 18px;
  }

  .slider-dots {
    gap: 12px;
  }

  .slider-dots button {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.45);
    border: none;
    transition: background 0.2s;
  }
  .slider-dots button.is-active {
    background: var(--red);
  }

  .slider-dots button {
    width: 7px;
    height: 7px;
  }

  .section,
  .motion-section,
  .about-section {
    padding: 60px 18px;
  }

  .section.compact {
    padding-top: 46px;
  }

  .category-grid,
  .sport-grid,
  .product-grid,
  .feature-section {
    grid-template-columns: 1fr;
  }

  .category-tile,
  .sport-tile,
  .sport-tile.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 330px;
  }

  .promo-strip,
  .banner-full,
  .material-strip {
    min-height: 260px;
  }

  .promo-strip img,
  .banner-full img,
  .material-strip img {
    object-position: center;
  }

  .product-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .newsletter {
    margin-bottom: 40px;
    padding: 40px 18px;
  }

  .page-heading {
    padding: 38px 18px 18px;
  }

  .page-category-nav,
  .page-hero-image,
  .page-article-list {
    padding-right: 18px;
    padding-left: 18px;
  }

  .page-article-list {
    gap: 34px;
    padding-bottom: 60px;
  }

  .page-article {
    gap: 18px;
  }

  .page-article-media img {
    aspect-ratio: 4 / 3;
  }

  .newsletter-form,
  .popup-content form {
    flex-direction: column;
  }

  .feature-section {
    padding: 0 18px 60px;
  }

  .footer-grid {
    padding: 48px 18px;
  }

  .footer-bottom {
    flex-direction: column;
    padding: 18px;
  }

  .bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    width: auto;
    max-width: 100%;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 -12px 28px rgba(10, 16, 31, 0.12);
  }

  .bottom-nav a,
  .bottom-nav button {
    min-width: 0;
    padding: 8px 4px;
    border: 0;
    color: var(--ink);
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 900;
  }

  .bottom-nav svg {
    width: 21px;
    height: 21px;
  }

  .search-modal {
    background: rgba(10, 15, 28, 0.35);
  }

  .search-dialog {
    position: absolute;
    top: 0;
    right: 0;
    width: min(390px, calc(100vw - 24px));
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 18px 18px 90px;
    border-radius: 0;
    transform: translateX(100%);
    box-shadow: -18px 0 36px rgba(10, 16, 31, 0.18);
  }

  .search-modal.is-open .search-dialog {
    transform: translateX(0);
  }

  .search-head {
    position: absolute;
    top: 11px;
    right: 8px;
    z-index: 2;
  }

  .search-head h2 {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .search-head .icon-button {
    color: #4c5360;
    background: transparent;
    box-shadow: none;
  }

  .search-field {
    margin-top: 0;
  }

  .search-field svg {
    left: 0;
    color: #333946;
  }

  .search-field input {
    height: 42px;
    padding-right: 42px;
    padding-left: 30px;
    border: 0;
    border-bottom: 1px solid #404653;
    border-radius: 0;
  }

  .search-field input:focus {
    border-color: var(--navy);
    box-shadow: none;
  }

  .popular-searches {
    display: block;
    margin: 14px 0 18px;
    color: var(--ink);
    font-size: 13px;
  }

  .popular-searches span {
    display: block;
    margin-bottom: 9px;
    font-weight: 950;
  }

  .popular-searches button {
    min-height: auto;
    margin: 0 10px 7px 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #6e7480;
    background: transparent;
    font-weight: 500;
  }

  .search-results-title {
    margin: 12px 0 10px;
    font-size: 14px;
  }

  .search-results {
    gap: 8px;
  }

  .search-result {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .search-result-link {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 9px;
  }

  .search-result img {
    width: 56px;
    height: 56px;
    border-radius: 0;
  }

  .search-result strong {
    font-size: 12px;
    line-height: 1.22;
  }

  .search-result .button {
    display: none;
  }

  .search-price {
    gap: 7px;
    font-size: 12px;
    line-height: 1.25;
  }

  .popup-content {
    padding: 32px 20px;
  }

  .toast {
    right: 12px;
    bottom: 84px;
  }

  .back-top {
    right: 16px;
    bottom: 86px;
  }
}

@media (max-width: 430px) {
  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .category-tile,
  .sport-tile,
  .sport-tile.tall {
    min-height: 300px;
  }
}
