:root {
  --bg: #f6f1e7;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --text: #111111;
  --muted: #68614f;
  --line: rgba(17, 17, 17, 0.12);
  --line-strong: rgba(17, 17, 17, 0.22);
  --accent: #eeff42;
  --accent-red: #cc1f1f;
  --accent-gold: #f4be3d;
  --accent-dark: #0e0e0e;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  --shadow-soft: 0 10px 28px rgba(17, 17, 17, 0.06);
  --radius: 22px;
  --radius-small: 14px;
  --container: 1380px;
}

@font-face {
  font-family: "FIFA Sans";
  src: url("assets/fonts/FIFASans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "FIFA Sans";
  src: url("assets/fonts/FIFASans-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "FIFA Sans";
  src: url("assets/fonts/FIFASans-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
}

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "FIFA Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(238, 255, 66, 0.24), transparent 28%),
    linear-gradient(180deg, #fbf8f1 0%, var(--bg) 100%);
}

body.is-locked {
  overflow: hidden;
}

body.homepage {
  background: #fff;
}

body.site-shell-page {
  padding-top: 0;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.utility-bar {
  background: #101010;
  color: #f5f5f5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-bar__inner {
  min-height: 2.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-announcement {
  background: #111111;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.home-announcement__inner {
  min-height: 2.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-announcement__region {
  min-height: 1px;
}

.home-announcement__menu,
.home-announcement__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.home-announcement__menu {
  margin-left: auto;
  min-width: 0;
}

.home-announcement__visa {
  width: 150px;
  height: auto;
  flex: 0 0 auto;
}

.home-announcement__links {
  overflow-x: auto;
  white-space: nowrap;
}

.home-announcement__link {
  color: #ffffff;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
}

.home-header__inner {
  min-height: 5.55rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.home-header__brand img {
  width: 90px;
  height: auto;
}

.home-header__nav {
  position: static;
  display: block;
  min-width: 0;
}

.home-header__nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
}

.home-nav-item {
  position: static;
}

.home-header__nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  color: #141414;
  font-size: 0.96rem;
  white-space: nowrap;
}

.home-header__nav-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 3rem;
  border: 0;
  background: transparent;
  color: #141414;
  padding: 0;
  font: inherit;
  font-size: 0.96rem;
  white-space: nowrap;
}

.home-header__nav-button::after,
.home-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.55rem;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.home-nav-item.is-open .home-header__nav-button::after,
.home-header__nav-link:hover::after,
.home-header__nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-header__nav-button:focus-visible,
.home-header__nav-link:focus-visible {
  outline: none;
}

.home-header__nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-header__nav-caret svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.home-nav-item.is-open .home-header__nav-caret svg {
  transform: rotate(180deg);
}

.home-mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.home-mega-menu[hidden] {
  display: none;
}

.home-mega-menu__inner {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 2.2rem;
}

.home-mega-menu__columns {
  display: grid;
  gap: 1.5rem 2rem;
}

.home-mega-menu__columns--1 {
  grid-template-columns: minmax(0, 1fr);
}

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

.home-mega-menu__columns--4 {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr) minmax(0, 1.55fr) minmax(0, 0.7fr);
}

.home-mega-menu__columns--tournament {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr) minmax(0, 1.55fr) minmax(0, 0.8fr);
}

.home-mega-menu__columns--nation {
  grid-template-columns: minmax(0, 1fr);
}

.home-mega-menu__columns--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-mega-menu__columns--spotlight {
  grid-template-columns: minmax(0, 1.45fr) minmax(19rem, 0.85fr);
  align-items: start;
}

.home-mega-menu__columns--spotlight-compact {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(18rem, 0.82fr);
  align-items: start;
}

.home-mega-menu__column {
  min-width: 0;
}

.home-mega-menu__column--wide {
  min-width: 0;
}

.home-mega-menu__column--multi {
  min-width: 0;
}

.home-mega-menu__heading {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: #141414;
  font-size: 1rem;
  font-weight: 700;
}

.home-mega-menu__heading svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-mega-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.home-mega-menu__links--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.5rem;
}

.home-mega-menu__links--multi {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem 1.5rem;
}

.home-mega-menu__columns--nation .home-mega-menu__links--multi {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-mega-menu__links a {
  color: rgba(20, 20, 20, 0.78);
  font-size: 0.95rem;
  line-height: 1.35;
}

.home-mega-menu__links a:hover,
.home-mega-menu__links a:focus-visible {
  color: #141414;
  outline: none;
}

.home-mega-menu__promo {
  min-width: 0;
}

.home-mega-menu__promo-link {
  display: grid;
  gap: 0.9rem;
  color: #141414;
}

.home-mega-menu__promo-media {
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(244, 237, 225, 0.92));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.home-mega-menu__promo-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-mega-menu__promo-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.96rem;
  font-weight: 700;
}

.home-mega-menu__promo-label svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-header__tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.6rem;
}

.home-icon-button,
.home-icon-link {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #141414;
  padding: 0;
}

.home-menu-button {
  display: none;
}

.home-menu-button__bars {
  display: grid;
  gap: 0.24rem;
}

.home-menu-button__bar {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.home-menu-button[aria-expanded="true"] .home-menu-button__bar:nth-child(1) {
  transform: translateY(0.39rem) rotate(45deg);
}

.home-menu-button[aria-expanded="true"] .home-menu-button__bar:nth-child(2) {
  opacity: 0;
}

.home-menu-button[aria-expanded="true"] .home-menu-button__bar:nth-child(3) {
  transform: translateY(-0.39rem) rotate(-45deg);
}

.home-icon-button svg,
.home-icon-link svg,
.home-localization__chevron svg,
.home-search-panel__icon svg,
.home-search-panel__button svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-header__icons {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.home-icon-link__count {
  position: absolute;
  top: 0.3rem;
  right: 0.15rem;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: #141414;
  color: #ffffff;
  font-size: 0.62rem;
  line-height: 1rem;
  text-align: center;
}

.home-localization {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0 0.2rem 0 0.75rem;
  color: #141414;
  white-space: nowrap;
}

.home-localization__summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.home-localization select {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.home-localization__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #141414;
}

.home-localization__chevron svg {
  width: 0.95rem;
  height: 0.95rem;
  stroke-width: 1.6;
}

.home-search-panel {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
}

.home-search-panel[hidden] {
  display: none;
}

.home-search-panel__form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 0.5rem;
  min-height: 4.9rem;
}

.home-search-panel__icon {
  color: #141414;
}

.home-search-panel__form input {
  width: 100%;
  min-height: 3rem;
  border: 0;
  background: transparent;
  color: #141414;
  font-size: 1rem;
}

.home-search-panel__form input::placeholder {
  color: rgba(17, 17, 17, 0.48);
}

.home-search-panel__form input:focus {
  outline: none;
}

.home-search-panel__button {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #141414;
  padding: 0;
}

.home-mobile-nav {
  display: none;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
}

.home-mobile-nav__inner {
  display: grid;
  gap: 0.9rem;
  padding: 0.9rem 0 1rem;
}

.home-mobile-nav__list,
.home-mobile-nav__group-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-mobile-nav__list {
  display: grid;
}

.home-mobile-nav__item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.home-mobile-nav__item:last-child {
  border-bottom: 0;
}

.home-mobile-nav__top-link,
.home-mobile-nav__section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
  padding: 0.65rem 0;
  border: 0;
  background: transparent;
  color: #141414;
  text-align: left;
  font: inherit;
  font-size: 1rem;
}

.home-mobile-nav__top-link {
  justify-content: flex-start;
}

.home-mobile-nav__section-toggle:focus-visible,
.home-mobile-nav__top-link:focus-visible,
.home-mobile-nav__group-title:focus-visible,
.home-mobile-nav__group-links a:focus-visible,
.home-mobile-nav__localization select:focus-visible {
  outline: none;
}

.home-mobile-nav__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.home-mobile-nav__chevron svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.home-mobile-nav__item.is-open .home-mobile-nav__chevron svg {
  transform: rotate(180deg);
}

.home-mobile-nav__submenu {
  display: grid;
  gap: 0.7rem;
  padding: 0 0 0.95rem;
}

.home-mobile-nav__group {
  display: grid;
  gap: 0.6rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.03);
}

.home-mobile-nav__group-title {
  display: inline-flex;
  align-items: center;
  color: #141414;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
}

.home-mobile-nav__group-links {
  display: grid;
  gap: 0.55rem;
}

.home-mobile-nav__group-links a {
  color: rgba(20, 20, 20, 0.76);
  font-size: 0.94rem;
  line-height: 1.4;
}

.home-mobile-nav__group-links a:hover,
.home-mobile-nav__group-links a:focus-visible {
  color: #141414;
}

.home-mobile-nav__footer {
  padding-top: 0.1rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.home-mobile-nav__localization {
  display: grid;
  gap: 0.5rem;
}

.home-mobile-nav__localization-label {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-mobile-nav__localization select {
  width: 100%;
  min-height: 3rem;
  padding: 0 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #ffffff;
  color: #141414;
}

.hero-banner-section {
  padding: 0 0 2.4rem;
}

.hero-banner {
  position: relative;
  min-height: clamp(28rem, 56vw, 48rem);
  background: #000000;
  overflow: hidden;
}

.hero-banner__media,
.hero-banner__media img {
  width: 100%;
  height: 100%;
}

.hero-banner__media {
  position: absolute;
  inset: 0;
}

.hero-banner__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.54) 100%);
}

.hero-banner__media img {
  object-fit: cover;
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  min-height: clamp(28rem, 56vw, 48rem);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem 3rem;
}

.hero-banner__inner {
  max-width: 42rem;
  color: #ffffff;
}

.hero-banner__heading {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero-banner__text {
  margin: 0.9rem auto 0;
  max-width: 34rem;
  font-size: 1.06rem;
  line-height: 1.5;
}

.hero-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  margin-top: 1.6rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #141414;
  font-weight: 700;
}

.home-top-links {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.58);
}

.home-top-links__inner {
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow-x: auto;
  white-space: nowrap;
}

.home-top-links__inner a {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 241, 0.88);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 5rem;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: end;
}

.site-header__inner--home {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.site-header__center {
  min-width: 0;
}

.site-header__actions--home {
  min-width: 0;
  gap: 0.65rem;
}

.brand img {
  width: 110px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.main-nav--home {
  justify-content: start;
}

.home-header__utility {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.home-header__utility a {
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.85rem;
}

.main-nav__link,
.source-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 0;
  padding: 0.55rem 0.35rem;
  font-size: 0.95rem;
  color: var(--text);
  transition: 180ms ease;
}

.main-nav__link:hover,
.main-nav__link:focus-visible,
.source-link:hover,
.source-link:focus-visible {
  color: var(--text);
  background: transparent;
  border-color: transparent;
  outline: none;
}

.source-link {
  background: transparent;
  border-color: rgba(17, 17, 17, 0.12);
  white-space: nowrap;
  color: var(--muted);
}

.site-cart-link {
  position: relative;
  gap: 0.45rem;
}

.site-cart-link__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #141414;
  color: #ffffff;
  font-size: 0.72rem;
  line-height: 1;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0 0.5rem 0 0.95rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.language-switcher span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.language-switcher select {
  border: 0;
  background: transparent;
  color: var(--text);
  min-height: 2.4rem;
  padding-right: 0.25rem;
}

.language-switcher select:focus {
  outline: none;
}

.hero {
  padding: 2rem 0 3rem;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.1fr);
  min-height: 30rem;
  margin-bottom: 1.8rem;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(238, 255, 66, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 240, 226, 0.94));
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.page-hero__media {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.32), transparent 20%),
    linear-gradient(180deg, #f4ecdf 0%, #dfd1ba 100%);
}

.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.16));
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__media--narrow {
  min-height: 22rem;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.4rem 2.4rem 2.6rem;
}

.page-hero__title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.page-hero__body {
  max-width: 54ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.6rem;
}

.page-hero__secondary {
  margin-top: 0;
}

.page-hero--collection .page-hero__title {
  max-width: 9ch;
}

.page-hero--product .page-hero__title,
.page-hero--checkout .page-hero__title {
  max-width: 10ch;
}

.page-hero--account .page-hero__title,
.page-hero--info .page-hero__title {
  max-width: 12ch;
}

.reference-hero,
.reference-bento__card,
.home-campaign__panel,
.collection-tile,
.mascot-feature,
.top-category-card,
.host-city-card {
  background: rgba(255, 253, 249, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.reference-hero {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.reference-hero__copy {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 31rem;
  background:
    radial-gradient(circle at top right, rgba(244, 190, 61, 0.25), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(251, 248, 241, 0.9));
}

.reference-hero__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.95;
}

.reference-hero__body {
  max-width: 56ch;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.reference-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.reference-hero__media {
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(180deg, #f6f1e6 0%, #e8dfcf 100%);
}

.reference-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__link,
.collection-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-weight: 700;
}

.reference-rail,
.reference-bento,
.home-top-categories,
.home-collections,
.home-campaign,
.home-video-feature,
.home-host-cities {
  padding-bottom: 2rem;
}

.top-category-card h3,
.host-city-card h3,
.mascot-feature h2 {
  margin: 0;
  line-height: 1.05;
}

.quick-link-grid,
.host-city-grid {
  display: grid;
  gap: 1rem;
}

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

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

.quick-link-card__link,
.host-city-card__link {
  display: block;
  height: 100%;
}

.top-category-card {
  overflow: hidden;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.top-category-card .quick-link-card__link {
  color: #141414;
}

.top-category-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.top-category-card h3::after {
  content: "\2192";
  flex: none;
  font-size: 1rem;
}

.home-video-feature__layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.32fr) minmax(0, 1fr);
  gap: 0;
  margin-bottom: 1.25rem;
}

.home-video-feature__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: #f2f0eb;
}

.home-video-feature__copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.home-video-feature__copy p:last-of-type {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-video-feature__media {
  position: relative;
  min-height: 26rem;
  background: #101010;
}

.home-video-feature__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-video-feature__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  min-height: 2.9rem;
  margin-top: 1.5rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 999px;
  background: #fff;
  color: #141414;
  font-weight: 700;
}

.reference-rail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reference-rail__head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.reference-rail__head a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #141414;
  font-weight: 700;
}

.reference-rail__head a::after {
  content: "\2192";
}

.home-host-cities__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.home-collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1rem;
}

.host-city-tab {
  min-height: 2.9rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: rgba(20, 20, 20, 0.72);
  font: inherit;
}

.host-city-tab.is-active {
  border-color: #141414;
  background: #141414;
  color: #fff;
}

.home-host-cities__panels {
  margin-top: 1rem;
}

.home-collection-panels {
  margin-top: 1rem;
}

.collectibles-panel[hidden] {
  display: none;
}

.host-city-panel__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.host-city-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  background: #f8f8f8;
  color: #141414;
}

.breadcrumb {
  margin-bottom: 1.5rem;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb__list li + li::before {
  content: "/";
  margin-right: 0.7rem;
  color: rgba(17, 17, 17, 0.28);
}

.eyebrow,
.products-panel__eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: rgba(17, 17, 17, 0.7);
}

.collection-hero__title,
.products-panel__head h2,
.empty-state h3,
.product-page__title {
  margin: 0;
  line-height: 0.95;
}

.toolbar__button,
.clear-button,
.load-more,
.product-modal__cta {
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  transition: 180ms ease;
}

.toolbar__button:hover,
.toolbar__button:focus-visible,
.clear-button:hover,
.clear-button:focus-visible,
.load-more:hover,
.load-more:focus-visible,
.product-modal__cta:hover,
.product-modal__cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  outline: none;
}

.collection-hero {
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.collection-hero__inner {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  min-height: 420px;
  background: #f2ebdd;
}

.collection-hero__text-wrapper {
  background: #eeff42;
}

.collection-content-head {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 2.35rem 2rem 2.7rem;
}

.collection-content-head::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, var(--accent-dark) 0 33%, var(--accent-red) 33% 66%, var(--accent-gold) 66% 100%);
}

.collection-hero__title {
  max-width: 8ch;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: -0.05em;
}

.ch-outer {
  max-width: 34ch;
  margin-top: 1.35rem;
}

.collection-hero__description {
  color: rgba(17, 17, 17, 0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.collection-hero__description p {
  margin: 0;
}

#toggle-description {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.collection-hero__media {
  min-height: 320px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(180deg, #f6f1e6 0%, #e8dfcf 100%);
}

.collection-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-section {
  padding-bottom: 4rem;
}

.toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.toolbar__search input,
.sort-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  min-height: 3.35rem;
  padding: 0 1.15rem;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.toolbar__search input:focus,
.sort-field select:focus {
  outline: none;
  border-color: rgba(17, 17, 17, 0.25);
  box-shadow: 0 0 0 3px rgba(238, 255, 66, 0.38);
  background: var(--surface-strong);
}

.toolbar__actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.toolbar__button,
.clear-button,
.load-more {
  min-height: 3.35rem;
  padding: 0 1.1rem;
  background: #fff;
  color: var(--text);
}

.sort-field {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--muted);
}

.sort-field select {
  width: 250px;
}

.collection-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.collection-layout.filters-hidden {
  grid-template-columns: minmax(0, 1fr);
}

.collection-layout.filters-hidden .filters-panel {
  display: none;
}

.filters-panel {
  position: sticky;
  top: 6.5rem;
}

.filters-panel__inner,
.products-panel,
.product-card,
.product-modal__dialog {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow-soft);
}

.filters-panel__inner,
.products-panel {
  border-radius: var(--radius);
}

.filters-panel__inner {
  padding: 1.25rem;
}

.filter-block + .filter-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.filter-block__header h2,
.product-modal__section h2,
.product-modal__section h3,
.site-footer h2 {
  margin: 0;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.filter-block__content {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.85rem;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.filter-option input {
  accent-color: var(--text);
}

.filter-option__count {
  margin-left: auto;
  color: rgba(17, 17, 17, 0.45);
  font-size: 0.86rem;
}

.products-panel {
  padding: 1.4rem;
}

.products-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
}

.products-panel__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  letter-spacing: -0.04em;
}

.clear-button {
  background: transparent;
  color: var(--muted);
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
  min-height: 1px;
}

.active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(17, 17, 17, 0.05);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  color: var(--muted);
}

.active-filter-pill button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card__link {
  display: grid;
  width: 100%;
  color: inherit;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(17, 17, 17, 0.14);
}

.product-card__button {
  display: grid;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top right, rgba(238, 255, 66, 0.18), transparent 35%),
    linear-gradient(180deg, #faf8f3 0%, #f0e9db 100%);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease, opacity 280ms ease;
}

.product-card__media img.secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-card__media img.secondary,
.product-card:focus-within .product-card__media img.secondary {
  opacity: 1;
}

.product-card:hover .product-card__media img.primary,
.product-card:focus-within .product-card__media img.primary {
  opacity: 0;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img {
  transform: scale(1.03);
}

.product-card__badge,
.product-card__collection-tag {
  position: absolute;
  top: 0.9rem;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
}

.product-card__badge {
  left: 0.9rem;
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
}

.product-card__badge.sale {
  background: var(--accent-red);
}

.product-card__badge.new {
  background: #206421;
}

.product-card__collection-tag {
  right: 0.9rem;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.product-card__content {
  padding: 1rem 1rem 1.1rem;
}

.product-card__vendor {
  margin: 0 0 0.55rem;
  color: rgba(17, 17, 17, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.product-card__title {
  margin: 0;
  min-height: 3.5em;
  font-size: 1rem;
  line-height: 1.28;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-top: 1rem;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: baseline;
}

.product-card__price strong {
  font-size: 1.12rem;
}

.product-card__price s {
  color: rgba(17, 17, 17, 0.45);
}

.product-card__availability {
  color: var(--muted);
  font-size: 0.84rem;
}

.collection-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.collection-footer p {
  margin: 0;
  color: var(--muted);
}

.load-more {
  min-width: 150px;
}

.load-more[hidden] {
  display: none;
}

.empty-state {
  padding: 3rem 1rem;
  text-align: center;
}

.empty-state p {
  max-width: 42ch;
  margin: 0.9rem auto 1.4rem;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  margin-top: 2rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  color: var(--text);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: rgba(17, 17, 17, 0.64);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.site-footer a {
  color: rgba(17, 17, 17, 0.94);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent-dark);
  outline: none;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 0;
  padding-top: 1.1rem;
  padding-bottom: 1.4rem;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.9rem;
}

.site-footer__bottom-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__bottom-brand img {
  width: 96px;
}

.site-footer__bottom-brand p,
.site-footer__copyright-group p {
  margin: 0;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(17, 17, 17, 0.03);
}

.site-footer__copyright-group {
  text-align: right;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
}

.mobile-backdrop {
  background: rgba(17, 17, 17, 0.48);
}

.mobile-backdrop[hidden] {
  display: none;
}

.product-modal__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
}

.product-modal__gallery,
.product-modal__content {
  min-height: 0;
}

.product-modal__gallery {
  padding: 1rem;
  background: linear-gradient(180deg, #f7f2e8 0%, #ede4d4 100%);
}

.product-modal__main-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  aspect-ratio: 1 / 1;
}

.product-modal__main-track {
  display: flex;
  height: 100%;
  transition: transform 260ms ease;
  will-change: transform;
}

.product-modal__slide {
  flex: 0 0 100%;
}

.product-modal__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-modal__carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.68);
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: background 180ms ease;
}

.product-modal__carousel-nav:hover,
.product-modal__carousel-nav:focus-visible {
  background: rgba(17, 17, 17, 0.82);
}

.product-modal__carousel-nav:focus-visible {
  outline: 2px solid rgba(238, 255, 66, 0.9);
  outline-offset: 3px;
}

.product-modal__carousel-nav[hidden] {
  display: none;
}

.product-modal__carousel-nav--prev {
  left: 1rem;
}

.product-modal__carousel-nav--next {
  right: 1rem;
}

.product-modal__carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
}

.product-modal__carousel-dots {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-modal__carousel-dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.product-modal__carousel-dot:hover,
.product-modal__carousel-dot:focus-visible {
  background: rgba(17, 17, 17, 0.42);
}

.product-modal__carousel-dot:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.18);
  outline-offset: 3px;
}

.product-modal__carousel-dot.is-active {
  background: rgba(17, 17, 17, 0.84);
  transform: scale(1.1);
}

.product-modal__carousel-counter {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.product-modal__content {
  padding: 3rem 2rem 2rem;
}

.product-modal__vendor,
.product-modal__tag {
  margin: 0;
  color: var(--muted);
}

.product-modal__vendor {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

.product-page__title {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.product-modal__price {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 1.25rem;
  font-size: 1.1rem;
}

.product-modal__price strong {
  font-size: 1.6rem;
}

.product-modal__price s {
  color: rgba(17, 17, 17, 0.45);
}

.product-modal__tag {
  margin-top: 0.8rem;
}

.product-modal__description {
  margin: 1.3rem 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-modal__section {
  margin-top: 1.7rem;
}

.product-modal__sizes,
.product-modal__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.8rem;
}

.size-pill,
.variant-pill {
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.04);
  padding: 0.65rem 0.85rem;
}

button.size-pill {
  color: var(--text);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

button.size-pill:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.24);
}

.size-pill.is-selected {
  border-color: #141414;
  background: #141414;
  color: #fff;
}

.size-pill.is-unavailable,
.variant-pill.is-unavailable {
  opacity: 0.48;
}

button.size-pill:disabled {
  cursor: not-allowed;
}

.product-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.9rem;
  padding: 1rem 1.2rem;
  background: var(--text);
  color: #fff;
}

.product-modal__cta.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.product-page {
  padding: 2rem 0 4rem;
}

.product-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.product-page__surface {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.product-page__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.product-page__meta-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(17, 17, 17, 0.04);
  padding: 0.65rem 0.85rem;
  color: var(--muted);
}

.product-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.product-page__secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.9rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
}

.product-page__related {
  margin-top: 1.4rem;
}

.product-page__not-found {
  margin-top: 1rem;
}

.account-page {
  background:
    radial-gradient(circle at top left, rgba(244, 190, 61, 0.22), transparent 28%),
    radial-gradient(circle at right center, rgba(238, 255, 66, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf8f1 0%, #f1eadf 100%);
}

.account-main {
  padding: 2.2rem 0 4rem;
}

.account-shell,
.checkout-shell {
  display: grid;
  gap: 1.4rem;
}

.account-surface {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.9fr);
  gap: 1.2rem;
}

.account-intro,
.account-auth {
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.account-intro {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(244, 190, 61, 0.18), transparent 28%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(248, 242, 230, 0.94));
}

.account-intro__title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.account-intro__body {
  max-width: 48ch;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.account-benefits {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin: 1.8rem 0 0;
  padding: 0;
}

.account-benefits li {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.account-auth {
  padding: 1.25rem;
}

.account-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.account-tab {
  min-height: 3rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: rgba(20, 20, 20, 0.72);
  font: inherit;
}

.account-tab.is-active {
  border-color: #141414;
  background: #141414;
  color: #fff;
}

.account-auth__panel,
.account-dashboard {
  padding: 1.25rem;
}

.account-auth__panel h2,
.account-dashboard h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.account-auth__lead {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.account-auth__message {
  margin: 0 1.25rem 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.04);
}

.account-auth__message.is-success {
  border-color: rgba(22, 123, 74, 0.18);
  background: rgba(22, 123, 74, 0.08);
  color: #0f6f41;
}

.account-auth__message.is-error {
  border-color: rgba(204, 31, 31, 0.18);
  background: rgba(204, 31, 31, 0.08);
  color: #9b1f1f;
}

.account-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.4rem;
}

.checkout-payment-selector {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.03);
}

.checkout-payment-selector legend {
  padding: 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.checkout-payment-option {
  display: flex;
  align-items: start;
  gap: 0.8rem;
  padding: 0.2rem 0;
}

.checkout-payment-option input {
  margin-top: 0.25rem;
  accent-color: var(--text);
}

.checkout-payment-option span {
  display: grid;
  gap: 0.2rem;
}

.checkout-payment-option strong {
  font-size: 0.98rem;
}

.checkout-payment-option small {
  color: var(--muted);
  line-height: 1.5;
}

.account-field {
  display: grid;
  gap: 0.45rem;
}

.account-field span {
  font-size: 0.92rem;
  font-weight: 500;
}

.account-field__hint {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.account-field input {
  width: 100%;
  min-height: 3.3rem;
  padding: 0 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
}

.account-field select {
  width: 100%;
  min-height: 3.3rem;
  padding: 0 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
}

.account-field input:focus,
.account-field select:focus {
  outline: 1px solid rgba(17, 17, 17, 0.28);
  outline-offset: 0;
}

.account-submit,
.account-dashboard__actions .product-modal__cta,
.account-dashboard__actions .product-page__secondary-cta,
.account-signout {
  margin-top: 0.2rem;
}

.account-note {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.55;
}

.account-note--muted,
.account-switcher {
  color: var(--muted);
}

.account-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 1rem 0 0;
}

.account-inline-button {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
  font: inherit;
  font-weight: 700;
}

.account-dashboard__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.account-dashboard__card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.account-dashboard__card span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-dashboard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.5rem;
}

.info-surface {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.info-intro {
  min-height: 100%;
}

.info-title {
  max-width: 12ch;
}

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

.info-card {
  align-content: start;
}

.info-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.activity-dashboard {
  display: grid;
  gap: 1.2rem;
  padding: 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(circle at top right, rgba(238, 255, 66, 0.12), transparent 26%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 229, 0.94));
  box-shadow: var(--shadow);
}

.analytics-shell {
  display: grid;
  gap: 1.2rem;
}

.analytics-shell__title {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.analytics-access__form {
  max-width: 34rem;
}

.activity-dashboard__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}

.activity-dashboard__header h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3.1vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.activity-dashboard__intro {
  max-width: 66ch;
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.analytics-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.analytics-tab {
  min-height: 3rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: rgba(20, 20, 20, 0.72);
  font: inherit;
  font-weight: 600;
}

.analytics-tab.is-active {
  border-color: #141414;
  background: #141414;
  color: #fff;
}

.analytics-panel {
  display: grid;
  gap: 1.2rem;
}

.analytics-toolbar {
  grid-template-columns: repeat(3, minmax(0, auto));
}

.activity-dashboard__controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  gap: 0.8rem;
  align-items: end;
}

.activity-dashboard__control {
  min-width: 10rem;
}

.activity-dashboard__control span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.activity-dashboard__refresh {
  min-height: 3.3rem;
  margin-top: 0;
}

.analytics-access__hint {
  margin-bottom: 0;
}

.analytics-access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.analytics-access__lock {
  margin-top: 0;
  min-height: 3.3rem;
}

.activity-dashboard__status {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
}

.activity-dashboard__status.is-error {
  border-color: rgba(204, 31, 31, 0.18);
  background: rgba(204, 31, 31, 0.08);
  color: #9b1f1f;
}

.activity-dashboard__status.is-success {
  border-color: rgba(22, 123, 74, 0.18);
  background: rgba(22, 123, 74, 0.08);
  color: #0f6f41;
}

.activity-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.activity-summary--actions {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.activity-summary--orders {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.activity-metric {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.activity-metric span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.activity-metric strong {
  font-size: clamp(1.5rem, 2.7vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.activity-metric p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.activity-table-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
}

.activity-table-wrap {
  overflow: auto;
}

.activity-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
}

.activity-table thead {
  background: rgba(17, 17, 17, 0.04);
}

.activity-table th,
.activity-table td {
  padding: 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.activity-table th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.activity-table tbody tr:last-child td {
  border-bottom: 0;
}

.activity-table__empty {
  color: var(--muted);
  text-align: center;
}

.activity-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.95rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.activity-badge.is-success {
  background: rgba(22, 123, 74, 0.12);
  color: #0f6f41;
}

.activity-badge.is-failed {
  background: rgba(204, 31, 31, 0.1);
  color: #9b1f1f;
}

.activity-badge.is-pending {
  background: rgba(244, 190, 61, 0.18);
  color: #855f00;
}

.activity-badge.is-neutral {
  background: rgba(17, 17, 17, 0.08);
  color: rgba(20, 20, 20, 0.74);
}

.activity-detail {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.activity-detail strong {
  line-height: 1.35;
}

.activity-detail code {
  width: max-content;
  max-width: 100%;
  overflow: hidden;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  font-size: 0.78rem;
  text-overflow: ellipsis;
}

.activity-detail a {
  color: var(--text);
  word-break: break-word;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.activity-payload {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.03);
}

.activity-payload summary {
  cursor: pointer;
  font-weight: 700;
}

.activity-payload pre {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.checkout-page {
  background:
    radial-gradient(circle at top left, rgba(238, 255, 66, 0.2), transparent 24%),
    radial-gradient(circle at right center, rgba(244, 190, 61, 0.2), transparent 26%),
    linear-gradient(180deg, #fbf8f1 0%, #efe7d8 100%);
}

.checkout-main {
  padding: 2.2rem 0 4rem;
}

.site-shell-header {
  position: sticky;
  top: 0;
  z-index: 30;
}

body:not(.homepage) .page-hero {
  display: none;
}

body:not(.homepage) .hero {
  padding: 1.25rem 0 0.75rem;
}

.checkout-surface {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.9fr);
  gap: 1.2rem;
}

.checkout-summary,
.checkout-form-panel {
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.checkout-summary {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top right, rgba(238, 255, 66, 0.12), transparent 28%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(247, 241, 229, 0.96));
}

.checkout-summary__title {
  margin: 0;
  max-width: 10ch;
  font-size: clamp(2.5rem, 4.8vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.checkout-summary__body {
  max-width: 46ch;
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-cart-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.checkout-cart-meta__pill {
  display: inline-grid;
  gap: 0.3rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.04);
}

.checkout-cart-meta__pill span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-cart-meta__pill--shipping strong {
  color: #0f6f41;
}

.checkout-form-panel {
  padding: 1.25rem;
}

.checkout-card {
  display: grid;
  grid-template-columns: minmax(12rem, 14rem) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.03);
}

.checkout-card.is-multi,
.checkout-card.is-empty {
  grid-template-columns: minmax(0, 1fr);
}

.checkout-card.is-multi .checkout-cart-list,
.checkout-card.is-empty .checkout-empty-state {
  width: 100%;
}

.checkout-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  border-radius: 18px;
  background: #fff;
}

.checkout-card__content {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.checkout-card__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.checkout-card__tag {
  margin: 0;
  color: var(--muted);
}

.checkout-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.checkout-cart-list {
  display: grid;
  gap: 0.9rem;
  width: 100%;
}

.checkout-line-item {
  display: grid;
  grid-template-columns: minmax(6rem, 7.5rem) minmax(0, 1fr);
  gap: 0.9rem;
  padding: 0.9rem;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(17, 17, 17, 0.03);
}

.checkout-line-item__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
}

.checkout-line-item__content {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.checkout-line-item__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.9rem;
}

.checkout-line-item__title {
  margin: 0.2rem 0 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.checkout-line-item__tag {
  margin: 0;
  color: var(--muted);
}

.checkout-line-item__price {
  white-space: nowrap;
}

.checkout-line-item__meta,
.checkout-line-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.checkout-item-button {
  margin-top: 0;
  min-height: 2.6rem;
  padding: 0.7rem 1rem;
}

.checkout-success-items {
  margin-top: 1.4rem;
}

.checkout-success-items h3 {
  margin: 0 0 0.8rem;
}

.checkout-empty-state {
  margin-top: 1.6rem;
}

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

.checkout-address-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(17, 17, 17, 0.04);
}

.checkout-address-card span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-address-card p {
  margin: 0;
  color: var(--muted);
}

.checkout-payment-card {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 236, 0.92));
}

#checkoutSuccessPanel .checkout-payment-card:first-child {
  margin-top: 0;
}

.checkout-payment-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-payment-card__eyebrow {
  display: inline-block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-payment-card h3 {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
}

.checkout-payment-card__body,
.checkout-payment-error {
  margin: 0;
  line-height: 1.6;
}

.checkout-payment-error {
  color: #9b1f1f;
}

.checkout-payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.checkout-payment-badge.is-success {
  background: rgba(22, 123, 74, 0.12);
  color: #0f6f41;
}

.checkout-payment-badge.is-error {
  background: rgba(204, 31, 31, 0.1);
  color: #9b1f1f;
}

.checkout-payment-badge.is-pending {
  background: rgba(244, 190, 61, 0.18);
  color: #855f00;
}

.checkout-pix-grid {
  display: grid;
  grid-template-columns: minmax(12rem, 14rem) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.checkout-pix-grid__qr {
  padding: 0.8rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.checkout-pix-grid__qr img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.checkout-pix-grid__content {
  display: grid;
  gap: 0.65rem;
}

.checkout-pix-grid__content span {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.checkout-pix-code {
  width: 100%;
  min-height: 9rem;
  resize: vertical;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: #fff;
  color: var(--text);
  line-height: 1.5;
}

.checkout-copy-button {
  margin-top: 0;
  justify-self: start;
}

.checkout-payment-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

@media (max-width: 1180px) {
  .home-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

  .home-header__nav {
    gap: 1.5rem;
  }

  .home-mega-menu__columns--tournament,
  .home-mega-menu__columns--five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-mega-menu__columns--spotlight,
  .home-mega-menu__columns--spotlight-compact {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-mega-menu__links--multi,
  .home-mega-menu__columns--nation .home-mega-menu__links--multi {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reference-hero,
  .reference-bento__card,
  .reference-bento--dual,
  .collection-tiles,
  .home-campaign__panel,
  .quick-link-grid,
  .host-city-grid,
  .home-video-feature__layout,
  .page-hero {
    grid-template-columns: 1fr;
  }

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

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

  .product-modal__layout {
    grid-template-columns: 1fr;
  }

  .account-surface,
  .checkout-surface,
  .account-dashboard__meta {
    grid-template-columns: 1fr;
  }

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

  .activity-summary--actions,
  .activity-summary--orders {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .activity-dashboard__controls {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .checkout-success__meta {
    grid-template-columns: 1fr;
  }

  .checkout-pix-grid,
  .checkout-payment-meta {
    grid-template-columns: 1fr;
  }

  .checkout-line-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .main-nav,
  .home-header__nav {
    display: none;
  }

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

  .home-mobile-nav {
    display: block;
  }

  .reference-hero__copy {
    min-height: auto;
    padding: 2rem;
  }

  .home-announcement__inner {
    justify-content: center;
  }

  .home-announcement__region,
  .home-announcement__visa {
    display: none;
  }

  .home-announcement__menu {
    margin-left: 0;
  }

  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .site-header__actions {
    width: 100%;
    justify-content: end;
    flex-wrap: wrap;
  }

  .product-detail-page .site-header__inner {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .product-detail-page .site-header__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 0.55rem;
  }

  .product-detail-page .language-switcher {
    grid-column: 1 / -1;
  }

  .product-detail-page .source-link {
    width: auto;
  }

  .home-header__inner {
    grid-template-columns: auto 1fr;
    min-height: 4.7rem;
  }

  .home-header__tools {
    gap: 0.25rem;
  }

  .home-localization {
    display: none;
  }

  .home-icon-button,
  .home-icon-link {
    width: 2.5rem;
    height: 2.5rem;
  }

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

  .page-hero {
    min-height: 0;
  }

  .page-hero__media,
  .page-hero__media--narrow {
    min-height: 16rem;
  }

  .home-video-feature__media {
    min-height: 20rem;
  }

  .collection-hero__inner,
  .collection-layout {
    grid-template-columns: 1fr;
  }

  .collection-hero__inner {
    min-height: 0;
  }

  .toolbar {
    grid-template-columns: 1fr;
  }

  .toolbar__actions {
    flex-wrap: wrap;
  }

  .sort-field {
    width: 100%;
    justify-content: space-between;
  }

  .sort-field select {
    width: min(100%, 260px);
  }

  .filters-panel {
    position: fixed;
    top: auto;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: none;
  }

  .filters-panel.is-mobile-open {
    display: block;
  }

  .filters-panel__inner {
    max-height: calc(100vh - 2rem);
    overflow: auto;
  }

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

  .account-intro {
    padding: 1.8rem;
  }

  .site-footer__grid,
  .site-footer__bottom,
  .collection-footer,
  .products-panel__head {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .home-announcement__inner {
    min-height: 2.4rem;
  }

  .home-announcement__links {
    gap: 0.9rem;
  }

  .home-announcement__link {
    font-size: 0.72rem;
  }

  .utility-bar__inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.35rem 0;
  }

  .reference-hero__title {
    max-width: none;
  }

  .page-hero {
    margin-bottom: 1.2rem;
    border-radius: 26px;
  }

  .page-hero__content {
    padding: 1.4rem;
  }

  .page-hero__title {
    max-width: none;
    font-size: 2.5rem;
  }

  .page-hero__body {
    font-size: 0.95rem;
  }

  .hero-banner {
    min-height: 26rem;
  }

  .hero-banner__content {
    min-height: 26rem;
    padding-bottom: 2rem;
  }

  .hero-banner__heading {
    font-size: 2.3rem;
  }

  .hero-banner__text {
    font-size: 0.95rem;
  }

  .product-modal__carousel-nav {
    width: 2.4rem;
    height: 2.4rem;
  }

  .product-modal__carousel-nav--prev {
    left: 0.75rem;
  }

  .product-modal__carousel-nav--next {
    right: 0.75rem;
  }

  .product-modal__carousel-controls {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-header__inner {
    min-height: 4.35rem;
    gap: 0.5rem;
  }

  .home-header__brand img {
    width: 74px;
  }

  .site-header__inner {
    gap: 1rem;
  }

  .site-header__actions {
    gap: 0.6rem;
  }

  .product-detail-page .site-header__inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .product-detail-page .brand {
    justify-self: start;
  }

  .product-detail-page .site-header__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    justify-self: stretch;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .source-link {
    width: 100%;
    justify-content: center;
  }

  .product-detail-page .site-cart-link,
  .product-detail-page #productSourceLink {
    width: 100%;
    min-height: 2.9rem;
  }

  .home-icon-button,
  .home-icon-link {
    width: 2.35rem;
    height: 2.35rem;
  }

  .home-mobile-nav__top-link,
  .home-mobile-nav__section-toggle {
    min-height: 3rem;
    font-size: 0.96rem;
  }

  .home-mobile-nav__group {
    padding: 0.85rem 0.9rem;
  }

  .site-footer__bottom-brand {
    flex-direction: column;
    align-items: start;
  }

  .site-footer__copyright-group {
    text-align: left;
  }

  .collection-content-head {
    padding: 1.4rem 1.2rem 2rem;
  }

  .reference-hero__copy,
  .reference-bento__copy,
  .collection-tile__content,
  .home-campaign__panel,
  .quick-link-card__link,
  .host-city-card__link,
  .mascot-feature,
  .home-video-feature__copy {
    padding: 1.4rem;
  }

  .collection-hero__title {
    max-width: none;
    font-size: 2.7rem;
  }

  .ch-outer {
    max-width: none;
  }

  .products-panel,
  .filters-panel__inner {
    padding: 1rem;
  }

  .products-grid {
    gap: 0.8rem;
  }

  .account-main {
    padding: 1.2rem 0 3rem;
  }

  .account-auth,
  .account-intro,
  .checkout-summary,
  .checkout-form-panel,
  .account-auth__panel,
  .account-dashboard {
    padding: 1rem;
  }

  .account-tabs {
    grid-template-columns: 1fr;
  }

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

  .home-video-feature__media {
    min-height: 16rem;
  }

  .host-city-panel__list {
    gap: 0.65rem;
  }

  .product-card__content {
    padding: 0.85rem;
  }

  .product-card__title {
    font-size: 0.95rem;
  }

  .activity-dashboard {
    padding: 1rem;
  }

  .activity-summary,
  .activity-summary--actions,
  .activity-summary--orders,
  .activity-dashboard__controls {
    grid-template-columns: 1fr;
  }

  .activity-dashboard__control {
    min-width: 0;
  }

  .activity-dashboard__refresh {
    width: 100%;
  }

  .activity-table {
    min-width: 780px;
  }

  .checkout-card {
    grid-template-columns: 1fr;
  }

  .checkout-line-item__head {
    flex-direction: column;
  }

  .product-modal__content {
    padding: 2.6rem 1rem 1rem;
  }
}
