:root {
  --color-ink: #0b0b0c;
  --color-night: #171b25;
  --color-header: #242833;
  --color-white: #ffffff;
  --color-paper: #f5f5f5;
  --color-line: #dedede;
  --color-muted: #686868;
  --color-red: #c92026;
  --color-blue: #087ce5;
  --color-blue-dark: #0868bd;
  --font-display: "Bebas Neue", "Noto Sans SC", sans-serif;
  --font-body: "Inter", "Noto Sans SC", sans-serif;
  --container: 1380px;
  --gutter: 24px;
  --radius-sm: 5px;
  --radius-md: 10px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 28px rgb(0 0 0 / 10%);
  --transition-fast: 180ms ease;
  --transition-base: 300ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: .02em;
  line-height: .95;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: var(--color-white);
  background: var(--color-ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.rewards-pill {
  position: fixed;
  z-index: 40;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 9px;
  padding: 10px 18px;
  color: var(--color-white);
  background: var(--color-blue);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  font-size: .8125rem;
}

.customer-service-pill {
  position: fixed;
  z-index: 40;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 192px;
  min-height: 50px;
  padding: 7px 7px 7px 18px;
  border-left: 5px solid #a86af4;
  border-radius: 7px 28px 28px 7px;
  color: var(--color-ink);
  background: var(--color-white);
  box-shadow: 0 3px 20px rgb(0 0 0 / 16%);
  cursor: pointer;
  text-align: left;
}

.customer-service-pill span { display: grid; gap: 2px; }
.customer-service-pill strong { font-size: .75rem; }
.customer-service-pill small { color: var(--color-muted); font-size: .6875rem; }
.customer-service-pill b { display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; color: var(--color-white); background: #a86af4; font-size: 1.35rem; }
.customer-service-pill:focus-visible { outline: 3px solid var(--color-blue); outline-offset: 3px; }
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}


/* ============ HEADER ============ */
.announcement {
  position: relative;
  height: 30px;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 30px;
  text-align: center;
}

.announcement__message { display: block; height: 100%; }
.announcement__social { display: none; }

.site-header__bar { height: 58px; color: var(--color-ink); background: var(--color-white); }
.site-header__inner { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; height: 100%; }
.site-header__logo { justify-self: center; width: 112px; }
.site-header__logo img { height: 42px; object-fit: contain; }
.site-header__nav { display: none; }
.site-header__menu-button,
.site-header__utility,
.mobile-menu__close {
  display: inline-grid;
  place-items: center;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.site-header__menu-button { width: 32px; height: 32px; }
.site-header svg { width: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.site-header__utilities { display: flex; align-items: center; gap: 8px; }
.site-header__utility { min-width: 30px; min-height: 34px; }
.site-header__locale,
.site-header__account { display: none; }
.site-header__account,
.site-header__cart { display: none !important; }
.site-header__cart span { display: none; }

.mobile-menu { position: fixed; z-index: 100; inset: 0; visibility: hidden; pointer-events: none; }
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu__backdrop { position: absolute; inset: 0; width: 100%; background: rgb(0 0 0 / 48%); opacity: 0; transition: opacity var(--transition-base); }
.mobile-menu.is-open .mobile-menu__backdrop { opacity: 1; }
.mobile-menu__drawer { position: relative; display: flex; flex-direction: column; width: min(86vw, 390px); height: 100%; padding: 18px 22px 28px; background: var(--color-white); box-shadow: 16px 0 45px rgb(0 0 0 / 22%); transform: translateX(-105%); transition: transform var(--transition-base); }
.mobile-menu.is-open .mobile-menu__drawer { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--color-line); }
.mobile-menu__top img { width: 118px; height: 48px; object-fit: contain; }
.mobile-menu__close { width: 40px; height: 40px; }
.mobile-menu__list { margin: 16px 0 0; padding: 0; list-style: none; }
.mobile-menu__list a { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--color-line); font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .04em; text-transform: uppercase; }
.mobile-menu__list a::after { content: "›"; font-family: var(--font-body); font-size: 1.5rem; }
.mobile-menu__footer { display: grid; gap: 13px; margin-top: auto; font-size: .75rem; }
.mobile-menu__footer button { padding: 0; background: transparent; text-align: left; cursor: pointer; }
/* /HEADER */

/* ============ HERO_PRESS ============ */
.hero-carousel { position: relative; width: 100%; aspect-ratio: 9 / 16; overflow: hidden; background: var(--color-ink); }
.hero-carousel__slides,
.hero-carousel__slide,
.hero-carousel__slide a { position: absolute; inset: 0; display: block; }
.hero-carousel__slide picture { position: absolute; inset: 0; display: block; }
.hero-carousel__slide { opacity: 0; pointer-events: none; transition: opacity 450ms ease; }
.hero-carousel__slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.hero-carousel__slide img { width: 100%; max-width: none; height: 100%; object-fit: cover; object-position: center; }
.hero-carousel__slide--kabola { color: var(--color-night); background: var(--color-white); }
.kabola-hero { position: absolute; inset: 0; display: grid; grid-template-rows: auto 1fr; gap: 14px; padding: 38px 28px 30px; background: var(--color-white); }
.kabola-hero__copy { position: relative; z-index: 1; align-self: center; text-align: center; }
.kabola-hero__brand { margin: 0; color: #161616; font-family: var(--font-body); font-size: clamp(2.25rem, 10vw, 4.5rem); font-style: italic; font-weight: 800; letter-spacing: -.08em; line-height: .9; }
.kabola-hero__brand::first-letter { color: #ee6b16; }
.kabola-hero__welcome { margin: 14px 0 0; color: #ee6b16; font-size: clamp(.72rem, 2.7vw, 1rem); font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.kabola-hero__title { display: grid; gap: 2px; margin: 22px 0 0; font-family: var(--font-display); font-size: clamp(2.8rem, 12vw, 6rem); font-weight: 600; letter-spacing: .01em; line-height: .82; text-transform: uppercase; }
.kabola-hero__genuine { margin: 24px 0 0; color: #555; font-size: clamp(.68rem, 2.5vw, .95rem); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.kabola-hero__products { min-height: 0; }
.hero-carousel__slide .kabola-hero__product-image { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.hero-carousel__caption { position: absolute; bottom: 52px; left: var(--gutter); color: var(--color-white); font-family: var(--font-display); font-size: clamp(2.5rem, 9vw, 5rem); letter-spacing: .03em; text-transform: uppercase; text-shadow: 0 2px 22px rgb(0 0 0 / 45%); }
.hero-carousel__arrow { position: absolute; z-index: 3; top: 50%; display: grid; place-items: center; width: 42px; height: 52px; padding: 0; color: var(--color-white); background: rgb(0 0 0 / 18%); transform: translateY(-50%); cursor: pointer; transition: background var(--transition-fast); }
.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible { background: rgb(0 0 0 / 48%); }
.hero-carousel__arrow svg { width: 27px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.hero-carousel__arrow--previous { left: 0; }
.hero-carousel__arrow--next { right: 0; }
.hero-carousel.is-kabola-active .hero-carousel__arrow { color: var(--color-night); background: rgb(0 0 0 / 7%); }
.hero-carousel.is-kabola-active .hero-carousel__arrow:hover,
.hero-carousel.is-kabola-active .hero-carousel__arrow:focus-visible { background: rgb(0 0 0 / 15%); }
.hero-static { display: block; width: 100%; background: var(--color-ink); }
.hero-static img { display: block; width: 100%; height: auto; }

/* /HERO_PRESS */

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid rgb(0 0 0 / 20%); color: #000; background: var(--color-white); font-family: "Figtree", "Noto Sans SC", sans-serif; font-size: 1rem; line-height: 1.4; }
.site-footer__inner { width: 100%; max-width: 100%; padding-inline: 32px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer__top { padding-block: 32px; }
.site-footer__blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 20px; }
.site-footer__heading { margin: 0 0 16px; font-family: "Barlow Condensed", "Noto Sans SC", sans-serif; font-size: 1rem; font-weight: 600; line-height: 1.4; }
.site-footer__menu li:not(:last-child) { margin-bottom: 8px; }
.site-footer__menu a,
.site-footer__mail { color: inherit; text-decoration: none; }
.site-footer__menu a:hover,
.site-footer__mail:hover,
.site-footer__bottom a:hover { opacity: .72; }
.site-footer__mail { display: inline-flex; align-items: center; gap: 8px; max-width: 100%; overflow-wrap: anywhere; }
.site-footer__mail svg { flex: 0 0 16px; width: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.site-footer__social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.site-footer__social a { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid currentColor; border-radius: 3px; color: inherit; background: var(--color-white); }
.site-footer__social a:hover { color: var(--color-white); background: var(--color-ink); }
.site-footer__social svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.site-footer__social .social-icon--fill,
.announcement__social .social-icon--fill { fill: currentColor; stroke: none; }
.rewards-pill,
.customer-service-pill,
.site-footer__shop,
.site-footer__payments { display: none !important; }
.site-footer__newsletter-copy { max-width: 280px; margin: 0 0 16px; }
.site-footer__newsletter-form { display: flex; width: 100%; height: 48px; border: 1px solid var(--color-ink); }
.site-footer__newsletter-form input { min-width: 0; flex: 1 1 auto; padding-inline: 16px; border: 0; border-radius: 0; background: transparent; font: inherit; }
.site-footer__newsletter-form button { display: grid; flex: 0 0 64px; width: 64px; height: 100%; padding: 0; place-items: center; border-left: 1px solid var(--color-ink); background: transparent; cursor: pointer; }
.site-footer__newsletter-form button:hover { color: var(--color-white); background: var(--color-ink); }
.site-footer__newsletter-form svg { width: 22px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.5; }
.site-footer__visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.site-footer__middle { display: flex; min-height: 80px; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding-block: 16px; }
.site-footer__locale { display: grid; width: 48px; height: 48px; flex: 0 0 48px; padding: 0; place-items: center; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.site-footer__locale:hover { background: #f1f1f1; }
.site-footer__locale svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.site-footer__shop { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-pill); color: var(--color-white); background: #5433eb; font-weight: 700; line-height: 1.25; }
.site-footer__shop:hover { background: #4325d1; }
.site-footer__payments { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.site-footer__payments > span { display: inline-flex; width: 38px; height: 24px; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgb(0 0 0 / 12%); border-radius: 3px; background: var(--color-white); font-family: Arial, sans-serif; font-size: 7px; font-weight: 700; line-height: 1; white-space: nowrap; }
.site-footer__payments .is-amex { color: var(--color-white); background: #0877c9; font-size: 8px; }
.site-footer__payments .is-diners { color: #1475a9; font-size: 12px; }
.site-footer__payments .is-discover { text-decoration: underline 3px #f58220; text-underline-offset: 2px; font-size: 5.5px; }
.site-footer__payments .is-ideal { color: #cc0066; background: #fff48d; }
.site-footer__payments .is-mastercard { background: #1c1c1c; }
.site-footer__payments .is-mastercard i { width: 13px; height: 13px; border-radius: 50%; background: #eb001b; }
.site-footer__payments .is-mastercard i + i { margin-left: -4px; background: #f79e1b; opacity: .9; }
.site-footer__payments .is-paypal { color: #003087; font-style: italic; }
.site-footer__payments .is-shop { color: var(--color-white); background: #5a31f4; }
.site-footer__payments .is-venmo { color: var(--color-white); background: #008cff; font-size: 11px; }
.site-footer__payments .is-visa { color: var(--color-white); background: #1434cb; font-size: 9px; font-style: italic; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; padding-block: 16px; border-top: 1px solid rgb(0 0 0 / 20%); font-size: .875rem; line-height: 1.4; }
.site-footer__bottom p { margin: 0; }
.site-footer__bottom a { color: inherit; text-decoration: none; }
.site-footer__policies ul { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px 0; }
.site-footer__policies li { display: inline-flex; align-items: center; padding-inline: 8px; }
.site-footer__policies li:first-child { padding-left: 0; }
.site-footer__policies li:last-child { padding-right: 0; }
.site-footer__policies li + li { border-left: 1px solid rgb(0 0 0 / 50%); }
.site-footer--minimal .site-footer__bottom { justify-content: center; text-align: center; }
.site-footer a:focus-visible,
.site-footer button:focus-visible,
.site-footer input:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 3px; }

@media (min-width: 750px) {
  .hero-carousel { aspect-ratio: 3600 / 1607; }
  .kabola-hero { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); grid-template-rows: 1fr; gap: 30px; padding: clamp(42px, 5vw, 84px) clamp(70px, 8vw, 140px); }
  .kabola-hero__copy { max-width: 650px; justify-self: center; }
  .kabola-hero__brand { font-size: clamp(3.5rem, 6vw, 7rem); }
  .kabola-hero__welcome { font-size: clamp(.8rem, 1.2vw, 1.15rem); }
  .kabola-hero__title { margin-top: clamp(24px, 3vw, 44px); font-size: clamp(4rem, 6.8vw, 8rem); }
  .kabola-hero__genuine { margin-top: clamp(26px, 3vw, 46px); font-size: clamp(.72rem, 1vw, 1rem); }
  .kabola-hero__products { height: 100%; min-height: 0; }
}

@media (min-width: 990px) {
  .announcement { height: 38px; border-bottom: 1px solid var(--color-line); font-size: .6875rem; line-height: 38px; }
  .announcement__message { position: absolute; inset: 0; width: max-content; margin-inline: auto; }
  .announcement__social { position: relative; z-index: 1; display: flex; align-items: center; gap: 7px; width: max-content; height: 100%; margin-left: 24px; }
  .announcement__social a { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 3px; color: var(--color-ink); background: #f2f2f2; font-size: .875rem; font-weight: 700; line-height: 1; }
  .announcement__social svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
  .announcement__social a:nth-child(3) svg path { fill: currentColor; stroke: none; }
  .site-header__bar { height: 60px; color: var(--color-white); background: var(--color-header); }
  .site-header__inner { grid-template-columns: 128px auto 1fr; gap: 24px; width: calc(100% - 48px); max-width: none; }
  .site-header__logo { display: grid; justify-self: start; place-items: center; width: 128px; height: 44px; padding: 3px 8px; border: 0; border-radius: 4px; background: var(--color-white); }
  .site-header__logo img { width: 100%; height: 36px; filter: none; object-fit: contain; }
  .site-header__menu-button { display: none; }
  .site-header__nav { display: block; justify-self: start; }
  .site-header__nav-list { display: flex; align-items: center; gap: clamp(22px, 1.8vw, 34px); margin: 0; padding: 0; list-style: none; }
  .site-header__nav-link { display: inline-flex; align-items: center; gap: 7px; padding: 22px 0; font-family: var(--font-body); font-size: .8125rem; font-weight: 700; letter-spacing: .01em; line-height: 1; text-transform: uppercase; transition: opacity var(--transition-fast); }
  .site-header__nav-link--submenu::after { width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; content: ""; transform: translateY(-2px) rotate(45deg); }
  .site-header__nav-link:hover,
  .site-header__nav-link:focus-visible { color: inherit; opacity: .68; }
  .site-header__utilities { justify-self: end; gap: 13px; }
  .site-header__locale,
  .site-header__account { display: inline-flex; }
  .site-header__locale { gap: 0; }
  .site-header__locale span { display: none; }
  .site-header__cart { display: inline-flex; min-width: 55px; min-height: 26px; padding: 0 11px; border: 1px solid rgb(255 255 255 / 70%); border-radius: var(--radius-pill); }
  .site-header__cart svg { display: none; }
  .site-header__cart span { display: inline; font-size: .625rem; font-weight: 700; }
  .hero-carousel__slide img { width: 100%; object-position: center; }
  .hero-carousel__arrow--previous { left: 20px; }
  .hero-carousel__arrow--next { right: 20px; }
}

@media (max-width: 749px) {
  .site-footer__inner { padding-inline: 18px; }
  .site-footer__top { padding-block: 28px; }
  .site-footer__blocks { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__middle { justify-content: flex-start; }
  .site-footer__payments { width: 100%; justify-content: flex-start; }
  .site-footer__bottom { flex-direction: column; }
  .site-footer__policies ul { justify-content: flex-start; }
  .customer-service-pill { display: none; }
}

/* /FOOTER */


/* ---------- Spotlight ---------- */
.spotlight {
  padding: 54px 0 42px;
  background: var(--color-white);
}

.spotlight__inner {
  width: calc(100% - 48px);
  max-width: var(--container);
}

.spotlight__title {
  text-align: center;
}

.spotlight__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.spotlight__tab {
  min-width: 104px;
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: #f3f3f3;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1;
  transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
}

.spotlight__tab:hover,
.spotlight__tab:focus-visible,
.spotlight__tab.is-active {
  color: var(--color-white);
  background: var(--color-ink);
  border-color: var(--color-ink);
}

.spotlight__tab:focus-visible,
.spotlight__view-all:focus-visible,
.product-card a:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 3px;
}

.spotlight__panel {
  margin-top: 31px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.spotlight__panel.is-changing {
  opacity: 0;
  transform: translateY(6px);
}

.spotlight__panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.spotlight__panel-title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

.spotlight__view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: .75rem;
  font-weight: 400;
}

.spotlight__view-all span {
  font-size: 1.15rem;
  transition: transform var(--transition-fast);
}

.spotlight__view-all:hover span {
  transform: translateX(4px);
}

.spotlight__grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.spotlight__grid::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 min(24rem, calc(100vw - 48px));
  min-width: 0;
  scroll-snap-align: start;
  text-align: center;
}

.product-card__media {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  place-items: center;
  background: #f3f3f3;
}

.product-card__image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 250ms ease;
}

.product-card__media:hover .product-card__image,
.product-card__media:focus-visible .product-card__image {
  transform: scale(1.025);
}

.product-card__rating {
  margin-top: 8px;
  color: var(--color-ink);
  font-size: .75rem;
  line-height: 1;
}

.product-card__rating span { letter-spacing: .08em; }
.product-card__rating b { margin-left: 4px; font-weight: 600; }

.product-card__title {
  margin: 18px 0 0;
  font-size: .8125rem;
  font-weight: 400;
  line-height: 1.35;
}

.product-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.spotlight__controls {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.spotlight__arrow {
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  place-items: center;
  color: var(--color-ink);
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.spotlight__arrow:disabled {
  opacity: .35;
  cursor: default;
}

@media (min-width: 990px) {
  .product-card { flex-basis: calc((100% - 48px) / 4); }
  .spotlight__controls { display: none; }
}

/* ---------- Manifesto ---------- */
.manifesto {
  scroll-margin-top: 90px;
  padding: 72px 0;
  overflow: hidden;
  background: #f7f6f3;
}

.manifesto__container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.manifesto__wrapper {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 112px);
}

.manifesto__left {
  min-width: 0;
}

.manifesto__player {
  width: 100%;
  max-width: 560px;
}

.manifesto__frame {
  padding: 16px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgb(23 27 37 / 12%);
}

.manifesto__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  object-fit: contain;
}

.manifesto__right {
  max-width: 670px;
}

.manifesto__eyebrow {
  margin: 0 0 14px;
  color: #da352c;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.manifesto__title {
  margin: 0;
  color: var(--color-night);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  letter-spacing: .01em;
  line-height: .9;
}

.manifesto__content {
  max-width: 640px;
  margin-top: 32px;
  text-align: left;
}

.manifesto__copy {
  margin: 0;
  color: #454545;
  font-size: 17px;
  line-height: 1.75;
}

/* ---------- Warranty ---------- */
.warranty {
  scroll-margin-top: 90px;
  color: var(--color-white);
  background: var(--color-night);
}

.warranty__inner {
  display: grid;
  grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  min-height: 280px;
  padding-block: 50px;
}

.warranty__title {
  max-width: 330px;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.warranty__content {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.55;
}

.warranty__content p { margin: 0; }
.warranty__content p + p { margin-top: 8px; }
.warranty__content strong { font-weight: 700; }
.warranty__content ol { margin: 4px 0 8px; padding-left: 22px; }
.warranty__exclusions { margin-top: 22px !important; }

@media (min-width: 750px) {
  .warranty__inner {
    min-height: 180px;
    padding-block: 44px;
  }
}

@media (max-width: 749px) {
  .warranty__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 38px;
  }

  .warranty__content {
    font-size: 14px;
  }

  .spotlight {
    padding: 42px 0 60px;
  }

  .spotlight__inner {
    width: calc(100% - 32px);
  }

  .spotlight__title {
    font-size: 2rem;
  }

  .spotlight__panel {
    margin-top: 30px;
  }

  .spotlight__panel-title {
    font-size: 1.1rem;
  }

  .spotlight__view-all {
    font-size: .72rem;
  }

  .spotlight__tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .spotlight__tab {
    width: 100%;
    min-width: 0;
    padding: 11px 18px;
  }

  .spotlight__grid { gap: 12px; }
  .product-card { flex-basis: 14rem; }
  .product-card__title { margin-top: 13px; }

  .manifesto {
    padding: 48px 0;
  }

  .manifesto__wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .manifesto__left {
    margin: 0;
  }

  .manifesto__player {
    max-width: 400px;
    margin-inline: auto;
  }

  .manifesto__content {
    margin-top: 22px;
  }

  .manifesto__copy {
    font-size: 15px;
    line-height: 1.65;
  }

  .warranty__title {
    font-size: 1.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .spotlight__panel,
  .product-card__image {
    transition: none;
  }
}




/* ============ PRODUCTS PAGE ============ */
.products-page { overflow: clip; background: var(--color-white); }
body.is-products-overlay-open { overflow: hidden; }
.products-heading { padding: 38px 0 26px; text-align: center; }
.products-heading__inner { display: flex; flex-direction: column; align-items: center; }
.products-heading__breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 17px; color: var(--color-muted); font-size: .75rem; }
.products-heading__breadcrumb a:hover { color: var(--color-ink); text-decoration: underline; }
.products-heading__title { margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 8vw, 4rem); font-weight: 400; letter-spacing: .025em; line-height: .95; text-transform: uppercase; }
.products-heading__intro { max-width: 560px; margin: 12px 0 20px; color: var(--color-muted); font-size: .875rem; }
.products-heading__chips { display: flex; width: 100%; gap: 8px; overflow-x: auto; padding: 2px 1px 7px; scrollbar-width: none; }
.products-heading__chips::-webkit-scrollbar { display: none; }
.products-heading__chip { flex: 0 0 auto; padding: 9px 16px; border: 1px solid var(--color-line); border-radius: var(--radius-pill); background: var(--color-white); font-size: .75rem; font-weight: 600; cursor: pointer; transition: color var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast); }
.products-heading__chip:hover { border-color: var(--color-ink); }
.products-heading__chip.is-active { color: var(--color-white); background: var(--color-ink); border-color: var(--color-ink); }

.products-toolbar { display: flex; min-height: 56px; justify-content: space-between; align-items: center; gap: 12px; padding-block: 8px; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.products-toolbar__status,
.products-toolbar__controls { display: flex; align-items: center; gap: 10px; }
.products-toolbar__filter-button { display: inline-flex; align-items: center; gap: 7px; min-height: 38px; padding: 0 11px; border: 1px solid var(--color-line); background: var(--color-white); cursor: pointer; }
.products-toolbar__filter-button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; }
.products-toolbar__count { margin: 0; color: var(--color-muted); font-size: .75rem; white-space: nowrap; }
.products-toolbar__count strong { color: var(--color-ink); }
.products-toolbar__pricing { display: none; padding: 4px 8px; color: var(--color-muted); background: var(--color-paper); border-radius: var(--radius-pill); font-size: .625rem; white-space: nowrap; }
.products-toolbar__sort { display: flex; align-items: center; gap: 6px; color: var(--color-muted); font-size: .75rem; white-space: nowrap; }
.products-toolbar__sort > span { display: none; }
.products-toolbar__sort select { width: 112px; min-height: 38px; padding: 0 28px 0 9px; border: 1px solid var(--color-line); background: var(--color-white); font-size: .6875rem; }
.products-toolbar__density { display: none; align-items: center; }
.products-toolbar__density-button { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--color-line); background: var(--color-white); cursor: pointer; }
.products-toolbar__density-button + .products-toolbar__density-button { border-left: 0; }
.products-toolbar__density-button svg { width: 17px; fill: currentColor; }
.products-toolbar__density-button.is-active { color: var(--color-white); background: var(--color-ink); border-color: var(--color-ink); }

.products-catalog__layout { padding: 30px 0 55px; }
.products-filter-drawer { position: fixed; z-index: 120; inset: 0; visibility: hidden; pointer-events: none; }
.products-filter-drawer.is-open { visibility: visible; pointer-events: auto; }
.products-filter-drawer__backdrop { position: absolute; inset: 0; width: 100%; background: rgb(0 0 0 / 45%); opacity: 0; cursor: pointer; transition: opacity var(--transition-base); }
.products-filter-drawer.is-open .products-filter-drawer__backdrop { opacity: 1; }
.products-filter { position: relative; width: min(88vw, 360px); height: 100%; padding: 19px 20px; overflow-y: auto; background: var(--color-white); box-shadow: 14px 0 40px rgb(0 0 0 / 18%); transform: translateX(-105%); transition: transform var(--transition-base); }
.products-filter-drawer.is-open .products-filter { transform: translateX(0); }
.products-filter__header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--color-line); }
.products-filter__header h2 { margin: 0; font-family: var(--font-display); font-size: 1.65rem; font-weight: 400; letter-spacing: .03em; text-transform: uppercase; }
.products-filter__close { width: 38px; height: 38px; padding: 0; background: transparent; font-size: 1.75rem; line-height: 1; cursor: pointer; }
.products-filter__group { margin: 0; padding: 18px 0; border: 0; border-bottom: 1px solid var(--color-line); }
.products-filter__group legend { width: 100%; padding: 0 0 10px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.products-filter__group > label { display: flex; align-items: center; gap: 9px; padding: 6px 0; color: var(--color-muted); font-size: .8125rem; cursor: pointer; }
.products-filter__group input[type="checkbox"] { width: 16px; height: 16px; margin: 0; accent-color: var(--color-ink); }
.products-filter__hint { margin: -5px 0 10px; color: var(--color-muted); font-size: .6875rem; }
.products-filter__price { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: end; gap: 8px; }
.products-filter__price label { min-width: 0; color: var(--color-muted); font-size: .6875rem; }
.products-filter__input { display: flex; align-items: center; gap: 3px; margin-top: 5px; padding-inline: 9px; border: 1px solid var(--color-line); }
.products-filter__input input { width: 100%; min-width: 0; height: 37px; padding: 0; border: 0; outline: 0; background: transparent; font-size: .75rem; }
.products-filter__clear { width: 100%; margin-top: 20px; padding: 11px; border: 1px solid var(--color-ink); color: var(--color-ink); background: var(--color-white); font-size: .75rem; font-weight: 700; cursor: pointer; }
.products-filter__apply { width: 100%; margin-top: 8px; padding: 11px; color: var(--color-white); background: var(--color-ink); font-size: .75rem; font-weight: 700; cursor: pointer; }

.products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 12px; }
.products-card[hidden] { display: none; }
.products-card__media { position: relative; overflow: hidden; aspect-ratio: 1; background: var(--color-paper); }
.products-card__media > a { display: block; width: 100%; height: 100%; }
.products-card__media img { width: 100%; height: 100%; padding: 4%; object-fit: contain; transition: transform var(--transition-base); }
.products-card__badge { position: absolute; z-index: 2; top: 8px; left: 8px; padding: 5px 7px; color: var(--color-white); background: var(--color-ink); font-size: .5625rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.products-card__quick { position: absolute; z-index: 2; right: 8px; bottom: 8px; left: 8px; padding: 9px; color: var(--color-white); background: var(--color-ink); font-size: .6875rem; font-weight: 700; opacity: 1; cursor: pointer; }
.products-card__details { padding-top: 10px; }
.products-card__rating { color: var(--color-blue); font-size: .625rem; letter-spacing: .1em; }
.products-card__details h2 { margin: 5px 0 4px; font-size: .75rem; font-weight: 700; letter-spacing: .025em; line-height: 1.35; text-transform: uppercase; }
.products-card__details h2 a:hover { text-decoration: underline; }
.products-card__details p { margin: 0; font-size: .8125rem; }
.products-card__details small { color: var(--color-muted); font-size: .5625rem; text-transform: uppercase; }
.products-card__stock { display: inline-block; margin-top: 3px; color: var(--color-red); font-size: .625rem; font-weight: 700; text-transform: uppercase; }
.products-empty { padding: 75px 18px; text-align: center; }
.products-empty h2 { margin: 0; font-family: var(--font-display); font-size: 2rem; font-weight: 400; letter-spacing: .02em; text-transform: uppercase; }
.products-empty p { margin: 8px 0 18px; color: var(--color-muted); font-size: .8125rem; }
.products-empty button { padding: 11px 20px; color: var(--color-white); background: var(--color-ink); font-size: .75rem; font-weight: 700; cursor: pointer; }
.products-pagination { display: flex; justify-content: center; gap: 4px; margin-top: 42px; }
.products-pagination[hidden] { display: none; }
.products-pagination button { min-width: 38px; min-height: 38px; padding: 8px 11px; border: 1px solid var(--color-line); background: var(--color-white); font-size: .6875rem; cursor: pointer; }
.products-pagination button.is-active { color: var(--color-white); background: var(--color-ink); border-color: var(--color-ink); }
.products-pagination button:disabled { opacity: .35; cursor: default; }

.products-quick-view { position: fixed; z-index: 140; inset: 0; display: grid; visibility: hidden; place-items: center; padding: 18px; pointer-events: none; }
.products-quick-view.is-open { visibility: visible; pointer-events: auto; }
.products-quick-view__backdrop { position: absolute; inset: 0; width: 100%; background: rgb(0 0 0 / 56%); opacity: 0; transition: opacity var(--transition-base); }
.products-quick-view.is-open .products-quick-view__backdrop { opacity: 1; }
.products-quick-view__dialog { position: relative; display: grid; width: min(100%, 760px); max-height: calc(100vh - 36px); overflow-y: auto; background: var(--color-white); box-shadow: var(--shadow-card); transform: translateY(14px); opacity: 0; transition: transform var(--transition-base), opacity var(--transition-base); }
.products-quick-view.is-open .products-quick-view__dialog { transform: translateY(0); opacity: 1; }
.products-quick-view__close { position: absolute; z-index: 2; top: 8px; right: 8px; display: grid; width: 38px; height: 38px; place-items: center; padding: 0; background: var(--color-white); box-shadow: 0 2px 12px rgb(0 0 0 / 14%); font-size: 1.6rem; cursor: pointer; }
.products-quick-view__media { aspect-ratio: 1; background: var(--color-paper); }
.products-quick-view__media img { height: 100%; object-fit: contain; }
.products-quick-view__content { padding: 24px; }
.products-quick-view__eyebrow { margin: 0 0 6px; color: var(--color-muted); font-size: .625rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.products-quick-view__content h2 { margin: 0; font-family: var(--font-display); font-size: 2rem; font-weight: 400; letter-spacing: .025em; line-height: 1; text-transform: uppercase; }
.products-quick-view__rating { margin-top: 12px; color: var(--color-blue); font-size: .6875rem; letter-spacing: .12em; }
.products-quick-view__price { margin: 8px 0 0; font-size: .9375rem; }
.products-quick-view__stock { margin: 5px 0 18px; color: var(--color-muted); font-size: .6875rem; text-transform: uppercase; }
.products-quick-view__link { display: inline-block; padding: 11px 18px; color: var(--color-white); background: var(--color-ink); font-size: .75rem; font-weight: 700; }
.products-page button:focus-visible,
.products-page a:focus-visible,
.products-page input:focus-visible,
.products-page select:focus-visible { outline: 2px solid var(--color-blue); outline-offset: 2px; }

@media (min-width: 520px) {
  .products-toolbar__pricing { display: inline-block; }
  .products-toolbar__sort select { width: 145px; }
  .products-quick-view__dialog { grid-template-columns: 1fr 1fr; }
  .products-quick-view__content { align-self: center; padding: 34px; }
}

@media (min-width: 750px) {
  .products-heading { padding: 48px 0 32px; }
  .products-heading__chips { width: auto; justify-content: center; overflow: visible; }
  .products-toolbar__filter-button { padding-inline: 15px; }
  .products-toolbar__sort > span { display: inline; }
  .products-toolbar__sort select { width: 166px; }
  .products-toolbar__density { display: flex; }
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 18px; }
  .products-card__quick { transform: translateY(8px); opacity: 0; transition: transform var(--transition-fast), opacity var(--transition-fast); }
  .products-card:hover .products-card__media img,
  .products-card:focus-within .products-card__media img { transform: scale(1.025); }
  .products-card:hover .products-card__quick,
  .products-card:focus-within .products-card__quick { transform: translateY(0); opacity: 1; }
}

@media (min-width: 990px) {
  .products-heading { padding-top: 58px; }
  .products-catalog__layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 30px; padding-top: 30px; transition: grid-template-columns var(--transition-base), gap var(--transition-base); }
  .products-catalog__layout.is-filter-collapsed { grid-template-columns: 0 minmax(0, 1fr); gap: 0; }
  .products-filter-drawer { position: static; z-index: auto; min-width: 0; visibility: visible; overflow: hidden; pointer-events: auto; }
  .products-filter-drawer__backdrop { display: none; }
  .products-filter { width: 250px; height: auto; padding: 0 22px 0 0; overflow: visible; box-shadow: none; transform: none; }
  .products-filter__header { padding-top: 3px; }
  .products-filter__close { display: none; }
  .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 22px; }
  .products-grid.is-compact { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px 16px; }
}
/* /PRODUCTS PAGE */

/* ============ CURRENT COLLECTION PAGE OVERRIDES ============ */
.products-page {
  --products-ink: #000;
  --products-navy: #242833;
  font-family: "Figtree", Arial, sans-serif;
  color: var(--products-ink);
  background: #fff;
}

.products-heading {
  display: flex;
  min-height: 200px;
  padding: 32px 20px;
  color: #fff;
  background: var(--products-navy);
}

.products-heading__inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: none;
  margin: 0;
  text-align: left;
}

.products-heading__breadcrumb {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.products-heading__breadcrumb a,
.products-heading__breadcrumb span { color: inherit; text-decoration: none; }
.products-heading__title {
  margin: 12px 0 0;
  color: #fff;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
}

.products-catalog { padding: 24px 20px 56px; background: #fff; }
.products-catalog > .container { display: contents; }
.products-toolbar {
  display: flex;
  min-height: 44px;
  margin-bottom: 20px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
}
.products-toolbar p { margin: 0; font-size: 13px; }
.products-toolbar label { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.products-toolbar label > span { display: none; }
.products-toolbar select { height: 40px; padding: 0 30px 0 12px; border: 1px solid #888; background: #fff; }
.products-toolbar__filter-button { display: inline-flex; min-height: 40px; padding: 0 16px; border: 1px solid #111; background: #fff; align-items: center; font: inherit; }
.products-catalog__layout { display: block; padding: 0; }
.products-catalog__results { min-width: 0; }
.products-filter-drawer { visibility: hidden; }
.products-filter-drawer.is-open { visibility: visible; pointer-events: auto; }
.products-filter-drawer__backdrop { background: rgba(0,0,0,.35); }
.products-filter { width: min(340px, 88vw); padding: 24px; background: #fff; }
.products-filter__header { padding: 0 0 10px; border: 0; }
.products-filter__header h2 { margin: 0; font-size: 20px; }
.products-filter__close { color: #000; }
.products-filter__form { padding: 0; }
.products-filter__group { margin: 0; padding: 0 0 12px; border: 0; }
.products-filter__group legend {
  display: flex;
  width: 100%;
  padding: 16px 0;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}
.products-filter__panel { padding: 12px 16px; border-radius: 3px; background: rgba(0,0,0,.025); }
.products-filter__panel > label { display: flex; min-height: 31px; gap: 8px; align-items: center; font-size: 13px; }
.products-filter__panel input[type="checkbox"] { width: 17px; height: 17px; margin: 0; accent-color: #000; }
.products-filter__group--price .products-filter__panel > p { margin: 0 0 16px; color: #555; font-size: 13px; }
.products-filter__range { position: relative; height: 18px; margin: 0 0 10px; }
.products-filter__range::before { content: ""; position: absolute; top: 8px; right: 2px; left: 2px; height: 2px; background: #000; }
.products-filter__range::after,
.products-filter__range i { content: ""; position: absolute; top: 3px; width: 12px; height: 12px; border-radius: 3px; background: #000; }
.products-filter__range::after { right: 0; }
.products-filter__range i { left: 0; }
.products-filter__price { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: end; }
.products-filter__price > span { padding-bottom: 12px; font-size: 13px; }
.products-filter__input { display: grid; height: 45px; padding: 0 10px; grid-template-columns: 14px 1fr; align-items: center; border: 1px solid #777; background: #fff; }
.products-filter__input b { font-size: 12px; font-weight: 400; }
.products-filter__input input { width: 100%; min-width: 0; padding: 0; border: 0; outline: 0; font: inherit; }
.products-filter__sort { display: grid; gap: 12px; margin-top: 0; font-size: 14px; }
.products-filter__sort select { width: 100%; height: 46px; padding: 0 14px; border: 1px solid #777; background: #fff; font: inherit; }
.products-filter__clear { margin-top: 18px; background: transparent; color: #111; text-decoration: underline; }
.products-filter__actions { display: flex; gap: 12px; align-items: center; }
.products-filter__apply { min-height: 40px; margin-top: 18px; padding: 0 18px; border: 1px solid #111; background: #111; color: #fff; }

.products-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 12px; }
.products-card { min-width: 0; border-radius: 0; }
.products-card__media { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 0; background: #f1f1f1; }
.products-card__media a { display: block; width: 100%; height: 100%; }
.products-card__media img { width: 100%; height: 100%; padding: 4%; object-fit: contain; transition: opacity .2s ease; }
.products-card:hover .products-card__media img { transform: none; opacity: .92; }
.products-card__badge { position: absolute; z-index: 1; top: 8px; right: 8px; left: auto; padding: 5px 11px; border-radius: 99px; color: #fff; background: #ad6cec; font-size: 12px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.products-card__details { padding: 14px 0 0; }
.products-card__details h2 { overflow: hidden; margin: 0 0 7px; font-size: 14px; font-weight: 400; line-height: 1.35; text-overflow: ellipsis; text-transform: none; white-space: nowrap; }
.products-card__details h2 a { color: #111; text-decoration: none; }
.products-card__rating { margin: 0 0 8px; color: #151515; font-size: 12px; font-weight: 600; line-height: 1; }
.products-card__rating span { margin-right: 5px; font-size: 14px; letter-spacing: 0; }
.products-card__details p { margin: 0; color: #111; font-size: 12px; font-weight: 700; line-height: 1.4; }
.products-card__details s { margin-left: 5px; color: #777; font-weight: 400; }
.products-empty { padding: 60px 20px; text-align: center; }

@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 34px 16px; }
}

@media (min-width: 990px) {
  .products-heading { min-height: 320px; padding: 48px 32px; }
  .products-heading__breadcrumb { font-size: 16px; }
  .products-heading__title { margin-top: 16px; font-size: 64px; }
  .products-catalog { padding: 48px 32px 72px; }
  .products-toolbar { display: flex; }
  .products-catalog__layout { display: block; }
  .products-filter-drawer { position: static; z-index: auto; width: 368px; min-width: 0; visibility: visible; overflow: visible; pointer-events: auto; }
  .products-filter-drawer__backdrop { display: none; }
  .products-filter { position: sticky; top: 112px; width: 368px; height: auto; padding: 0 48px 0 0; overflow: visible; box-shadow: none; transform: none; }
  .products-filter__header { padding: 0; }
  .products-filter__header h2 { font-size: 20px; }
  .products-filter__close { display: none; }
  .products-filter__panel { padding: 16px; }
  .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 16px; }
}

@media (min-width: 1500px) {
  .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 20px; }
}

@media (min-width: 1900px) {
  .products-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 20px; }
}
/* /CURRENT COLLECTION PAGE OVERRIDES */

/* ============ CANNON PRODUCT DETAIL PAGE ============ */
.product-detail-page {
  --product-magenta: #c300b9;
  --product-surface: #f1f1f1;
  --product-line: #dedede;
  font-family: "Figtree", "Noto Sans SC", sans-serif;
  background: #fff;
}
.product-detail-page .rewards-pill,
.product-detail-page .customer-service-pill { display: none; }
.cannon-product { background: #fff; }
.cannon-product__layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 28px; padding: 27px 21px 36px; }

@media (min-width: 990px) {
  .product-detail-page { height: auto; overflow: visible; }
  .product-detail-page main { height: auto; overflow: visible; }
  .cannon-product,
  .cannon-product__layout { height: auto; }
  .cannon-product__layout { grid-template-columns: minmax(0, 1.35fr) minmax(420px, 1fr); gap: clamp(32px, 3.35vw, 64px); padding: 36px 32px 24px; }
  .cannon-product-info { max-width: none; }
}
/* /CANNON PRODUCT DETAIL PAGE */

/* ============ NEWS PAGE SHELL ============ */
.news-page { font-family: "Figtree", "Noto Sans SC", sans-serif; background: #fff; }
.site-header__sale { display: none; align-items: center; gap: 9px; }
.site-header__sale span { padding: 4px 12px; border-radius: 999px; color: #fff; background: #ed2727; font-size: 10px; font-weight: 700; line-height: 1; }
.site-header__sale a { color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; text-transform: uppercase; }

@media (max-width: 989px) {
  .news-page .announcement { min-height: 34px; }
  .news-page .site-header__bar,
  .news-page .site-header__inner { min-height: 64px; background: #242833; }
  .news-page .site-header__menu-button { color: #fff; }
  .news-page .site-header__logo { width: 96px; }
  .news-page .site-header__logo img { filter: grayscale(1) brightness(0) invert(1); }
  .news-page .site-header__utilities .site-header__utility { display: none; }
  .news-page .site-header__utilities .site-header__cart { display: inline-flex; min-width: 58px; height: 28px; justify-content: center; border: 1px solid #fff; border-radius: 999px; color: #fff; }
  .news-page .site-header__cart span { display: inline; color: #fff; }
  .news-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__menu { display: none; }
  .news-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { display: flex; min-height: 38px; margin: 0; align-items: center; justify-content: space-between; }
  .news-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading::after { content: "⌄"; font-family: "Figtree", sans-serif; font-size: 16px; font-weight: 400; }
}

@media (min-width: 990px) {
  .news-page .announcement { min-height: 44px; }
  .news-page .site-header__bar,
  .news-page .site-header__inner { min-height: 72px; }
  .news-page .site-header__sale { display: flex; }
}
/* /NEWS PAGE SHELL */


/* ---------- Cannon Product Gallery ---------- */
.product-gallery {
  --gallery-stage: #f1f1f1;
  --gallery-control-size: 38px;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.product-gallery__stage {
  position: relative;
  width: calc(100% - 8px);
  margin-inline: 4px;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gallery-stage);
}

.product-gallery__main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 160ms ease;
}

.product-gallery__main-image.is-changing { opacity: 0; }

.product-gallery__arrow,
.product-gallery__fullscreen-trigger,
.product-gallery__lightbox-close {
  display: grid;
  width: var(--gallery-control-size);
  height: var(--gallery-control-size);
  padding: 0;
  place-items: center;
  border: 1px solid rgb(0 0 0 / 12%);
  border-radius: 50%;
  color: var(--color-ink);
  background: rgb(255 255 255 / 90%);
  box-shadow: 0 2px 10px rgb(0 0 0 / 8%);
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.product-gallery__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.product-gallery__arrow--previous { left: 12px; }
.product-gallery__arrow--next { right: 12px; }

.product-gallery__arrow svg,
.product-gallery__fullscreen-trigger svg,
.product-gallery__lightbox-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.product-gallery__fullscreen-trigger {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
}

.product-gallery__counter {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  min-width: 54px;
  padding: 5px 9px;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: rgb(11 11 12 / 72%);
  font-size: .6875rem;
  line-height: 1.2;
  text-align: center;
}

.product-gallery__rail {
  display: flex;
  width: 100%;
  gap: 7px;
  padding: 8px 4px 7px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.product-gallery__thumbnail {
  flex: 0 0 69px;
  width: 69px;
  height: 69px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--gallery-stage);
  cursor: pointer;
  scroll-snap-align: start;
}

.product-gallery__thumbnail.is-active { border-color: var(--color-ink); }

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

.product-gallery__arrow:hover,
.product-gallery__fullscreen-trigger:hover,
.product-gallery__lightbox-close:hover { background: var(--color-white); }

.product-gallery__arrow:hover { transform: translateY(-50%) scale(1.05); }
.product-gallery__fullscreen-trigger:hover,
.product-gallery__lightbox-close:hover { transform: scale(1.05); }

.product-gallery button:focus-visible {
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}

.product-gallery__lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 56px 20px 20px;
  place-items: center;
  visibility: hidden;
  background: rgb(0 0 0 / 88%);
  opacity: 0;
  transition: opacity 160ms ease, visibility 160ms ease;
}

.product-gallery__lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.product-gallery__lightbox-image {
  width: auto;
  max-width: min(90vw, 1100px);
  height: auto;
  max-height: calc(100vh - 76px);
  object-fit: contain;
}

.product-gallery__lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

body.is-gallery-open { overflow: hidden; }

@media (min-width: 990px) {
  .product-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 80px;
    gap: 8px;
  }

  .product-gallery__stage {
    width: 100%;
    margin-inline: 0;
  }

  .product-gallery__rail {
    flex-direction: column;
    width: 80px;
    max-height: 100%;
    gap: 8px;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scroll-snap-type: y proximity;
  }

  .product-gallery__thumbnail {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
  }

  .product-gallery__counter { display: none; }
}


/* ============ CANNON PRODUCT INFO ============ */
.cannon-product-info {
  width: 100%;
  color: var(--color-ink, #0b0b0c);
  background: var(--color-white, #fff);
}

.cannon-product-info__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 24px;
  color: #646464;
  font-size: .75rem;
  line-height: 1.4;
}

.cannon-product-info__breadcrumb a:hover,
.cannon-product-info__breadcrumb a:focus-visible,
.cannon-product-info__installment a:hover,
.cannon-product-info__installment a:focus-visible,
.cannon-trust a:hover,
.cannon-trust a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cannon-product-info__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-inline: 7px;
}
.cannon-product-info__breadcrumb { order: 2; margin: 26px 7px 0; padding-top: 22px; border-top: 1px solid #dedede; }
.cannon-product-info__inner { order: 1; }
.cannon-product-info__form { display: contents; }
.cannon-product-info__badge { order: 1; }
.cannon-product-info__title { order: 2; }
.cannon-product-info__rating { order: 3; }
.cannon-variants { order: 4; margin-top: 22px; }
.cannon-product-info__price { order: 5; }
.cannon-product-info__shipping { order: 6; }
.cannon-product-info__installment { order: 7; }
.cannon-features { order: 8; }
.cannon-trust { order: 9; }
.cannon-product-info__purchase { order: 10; }
.cannon-description { order: 11; }

.cannon-product-info__badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin: 0 0 11px;
  padding: 5px 11px;
  color: #fff;
  background: #c300b9;
  border-radius: 4px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .035em;
  line-height: 1.25;
  align-self: flex-start;
}

.cannon-product-info__title {
  margin: 0;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: 2.1875rem;
  font-weight: 600;
  letter-spacing: .005em;
  line-height: 1;
}

.cannon-product-info__rating {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: .8125rem;
  line-height: 1.3;
}

.cannon-product-info__rating strong { font-size: .75rem; }
.cannon-product-info__stars { letter-spacing: 1px; }

.cannon-product-info__form { margin-top: 0; }
.cannon-variants { margin: 0; padding: 0; border: 0; }
.cannon-variants legend {
  margin-bottom: 10px;
  font-size: .8125rem;
  font-weight: 700;
}

.cannon-variants__options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cannon-variants__option { position: relative; cursor: pointer; }
.cannon-variants__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.cannon-variants__option span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 7px 13px;
  background: #f3f3f3;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.cannon-variants__option input:checked + span { color: #fff; background: #0b0b0c; }
.cannon-variants__option input:focus-visible + span { outline: 3px solid #087ce5; outline-offset: 2px; }

.cannon-product-info__price {
  margin: 21px 0 2px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.cannon-product-info__shipping {
  margin: 0;
  color: #686868;
  font-size: .75rem;
}

.cannon-product-info__installment {
  margin: 13px 0 0;
  color: #3f3f3f;
  font-size: .75rem;
  line-height: 1.55;
}

.cannon-product-info__shop-pay {
  display: inline-flex;
  align-items: center;
  margin-inline: 2px;
  font-weight: 700;
}
.cannon-product-info__shop-pay span { margin-left: 1px; padding: 0 3px; color: #fff; background: #5a31f4; border-radius: 2px; }
.cannon-product-info__installment a { margin-left: 3px; text-decoration: underline; }

.cannon-features {
  margin: 23px 0 0;
  padding: 0;
  border-top: 1px solid #dedede;
  list-style: none;
}

.cannon-features li {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 12px;
  border-bottom: 1px solid #dedede;
  font-family: "Barlow Condensed", "Noto Sans SC", sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .015em;
}
.cannon-features li::after {
  width: 7px;
  height: 7px;
  margin: 0 3px 4px auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.cannon-features__icon {
  display: none;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid #0b0b0c;
  border-radius: 50%;
  font-family: var(--font-body, "Inter", sans-serif);
  font-size: .625rem;
  font-weight: 700;
}

.cannon-product-info__purchase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
}

.cannon-quantity {
  display: grid;
  grid-template-columns: 49px 1fr 49px;
  width: 171px;
  height: 49px;
  border: 1px solid #0b0b0c;
}

.cannon-quantity button,
.cannon-quantity input {
  width: 100%;
  height: 47px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
}

.cannon-quantity button { cursor: pointer; font-size: 1.2rem; }
.cannon-quantity button:hover { background: #f3f3f3; }
.cannon-quantity input { appearance: textfield; font-size: .875rem; font-weight: 600; }
.cannon-quantity input::-webkit-inner-spin-button,
.cannon-quantity input::-webkit-outer-spin-button { appearance: none; margin: 0; }

.cannon-product-info__add {
  width: 100%;
  min-height: 49px;
  padding: 11px 20px;
  color: #0b0b0c;
  background: #fff;
  border: 1px solid #0b0b0c;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  transition: color 180ms ease, background 180ms ease;
}

.cannon-product-info__add:hover,
.cannon-product-info__add:focus-visible { color: #fff; background: #0b0b0c; }
.cannon-product-info__feedback { min-height: 18px; margin: -2px 0 0; color: #17733b; font-size: .75rem; font-weight: 700; }

.cannon-trust { display: grid; gap: 9px; margin-top: 25px; }
.cannon-trust__official,
.cannon-trust__detail {
  background: #fff;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.cannon-trust__official {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 17px 16px 14px;
  border-left: 5px solid #c300b9;
}

.cannon-trust__mark {
  display: grid;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #fff;
  background: #c300b9;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
}

.cannon-trust h2 { margin: 0; font-size: .8125rem; line-height: 1.35; }
.cannon-trust p { margin: 4px 0 0; font-size: .75rem; line-height: 1.5; }
.cannon-trust__detail { overflow: hidden; }
.cannon-trust__detail summary,
.cannon-description summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 12px 15px;
  cursor: pointer;
  font-size: .8125rem;
  font-weight: 700;
  list-style: none;
}
.cannon-trust__detail summary::-webkit-details-marker,
.cannon-description summary::-webkit-details-marker { display: none; }
.cannon-trust__detail summary span,
.cannon-description summary span { font-size: 1.15rem; font-weight: 400; transition: transform 180ms ease; }
.cannon-trust__detail[open] summary span,
.cannon-description[open] summary span { transform: rotate(45deg); }
.cannon-trust__content { padding: 0 15px 15px; }
.cannon-trust__content a { font-weight: 700; text-decoration: underline; }

.cannon-description { margin-top: 18px; padding-top: 28px; border-top: 1px solid #dedede; border-bottom: 0; }
.cannon-description summary { padding-inline: 0; font-family: "Barlow Condensed", "Noto Sans SC", sans-serif; font-size: 1rem; }
.cannon-description summary { display: none; }
.cannon-description__content { padding-bottom: 15px; }
.cannon-description__content p { margin: 0; color: #3f3f3f; font-size: .8125rem; line-height: 1.65; }

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 750px) {
  .cannon-product-info {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 8px;
    align-self: start;
    max-width: 548.45px;
    overflow: visible;
  }

  .cannon-product-info__title { font-size: 2.5rem; }
  .cannon-product-info__purchase { grid-template-columns: 171px minmax(0, 1fr); }
  .cannon-product-info__feedback { grid-column: 1 / -1; }
}

@media (max-width: 749px) {
  .cannon-product-info { display: flex; max-width: 390px; padding-inline: 0; flex-direction: column; }
  .cannon-product-info__breadcrumb { margin-bottom: 20px; }
  .cannon-product-info__inner { width: 334px; max-width: 100%; margin-inline: auto; padding-inline: 0; }
}

@media (max-width: 989px) {
  .product-detail-page .announcement { min-height: 34px; }
  .product-detail-page .site-header__bar { min-height: 64px; background: #242833; }
  .product-detail-page .site-header__inner { min-height: 64px; }
  .product-detail-page .site-header__menu-button { color: #fff; }
  .product-detail-page .site-header__logo img { filter: grayscale(1) brightness(0) invert(1); }
  .product-detail-page .site-header__logo { width: 96px; }
  .product-detail-page .site-header__utilities .site-header__utility { display: none; }
  .product-detail-page .site-header__utilities .site-header__cart { display: inline-flex; min-width: 58px; height: 28px; justify-content: center; border: 1px solid #fff; border-radius: 999px; color: #fff; }
  .product-detail-page .site-header__cart span { display: inline; color: #fff; }
  .product-gallery__stage { width: 340px; max-width: 100%; margin-inline: 0; }
  .product-gallery__stage { overflow: visible; }
  .product-gallery__fullscreen-trigger { right: auto; left: 12px; }
  .product-gallery__arrow { top: calc(100% + 13px); transform: none; }
  .product-gallery__arrow:hover { transform: scale(1.05); }
  .product-gallery__arrow--previous { right: 48px; left: auto; }
  .product-gallery__arrow--next { right: 4px; }
  .product-gallery__rail { width: 270px; padding-right: 0; overflow: hidden; scrollbar-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cannon-variants__option span,
  .cannon-product-info__add,
  .cannon-trust__detail summary span,
  .cannon-description summary span { transition: none; }
}
/* /CANNON PRODUCT INFO */

/* Cannon detail source-page desktop viewport sizing */
@media (min-width: 990px) {
  .product-detail-page .announcement { min-height: 44px; }
  .product-detail-page .site-header__bar,
  .product-detail-page .site-header__inner { min-height: 72px; }
  .product-detail-page main { height: auto; max-height: none; }
  .product-gallery { height: 652px; max-height: none; align-self: start; }
  .product-gallery__stage { height: 652px; aspect-ratio: auto; }
  .product-gallery__main-image { object-fit: contain; object-position: center; }
  .product-gallery__rail { height: 652px; max-height: 652px; }
  .product-gallery__rail,
  .cannon-product-info { scrollbar-width: none; }
  .product-gallery__rail::-webkit-scrollbar,
  .cannon-product-info::-webkit-scrollbar { display: none; }
  .product-gallery__fullscreen-trigger { display: none; }
  .product-gallery__stage { overflow: visible; }
  .product-gallery__arrow { top: auto; bottom: 4px; left: auto; transform: none; }
  .product-gallery__arrow--previous { right: -40px; }
  .product-gallery__arrow--next { right: -84px; }
  .product-gallery__arrow:hover { transform: scale(1.05); }
  .cannon-product-info { top: 0; width: 100%; max-width: none; height: auto; max-height: none; overflow: visible; }
}


/* NEWS_HERO: scoped fragment for news.html */
.news-hero {
  min-height: 267px;
  color: var(--color-white, #fff);
  background: var(--color-header, #242833);
}

.news-hero__inner {
  display: flex;
  width: min(100% - 36px, 1180px);
  min-height: 267px;
  margin-inline: auto;
  padding-block: 34px 32px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.news-hero__breadcrumb {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 9px;
  color: #f2f3f5;
  font-size: 1rem;
  line-height: 1.4;
}

.news-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.news-hero__breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-hero__title {
  margin: 14px 0 16px;
  color: inherit;
  font-family: "Barlow Condensed", var(--font-display, "Bebas Neue", sans-serif);
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.news-hero__filters {
  display: flex;
  width: min(100%, 324px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.news-hero__filter {
  display: inline-flex;
  min-height: 36px;
  padding: 7px 14px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #303541;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: color var(--transition-fast, 180ms ease), background-color var(--transition-fast, 180ms ease);
}

.news-hero__filter:hover {
  background: #3a404e;
}

.news-hero__filter.is-active,
.news-hero__filter[aria-pressed="true"] {
  color: #0b0b0c;
  background: #fff;
}

.news-hero__filter:focus-visible,
.news-hero__breadcrumb a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (min-width: 750px) {
  .news-hero,
  .news-hero__inner {
    min-height: 400px;
  }

  .news-hero__inner {
    width: min(100% - 48px, 1180px);
    padding-block: 80px;
  }

  .news-hero__title {
    margin-block: 16px;
    font-size: 3rem;
  }

  .news-hero__filters {
    width: auto;
    max-width: 100%;
    gap: 16px;
  }

  .news-hero__filter {
    padding-inline: 17px;
    font-size: .8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-hero__filter {
    transition: none;
  }
}


/* ============ NEWS GRID ============ */
.news-listing {
  --news-grid-gap: 14px;
  --news-listing-inline: 17px;
  --news-card-text: var(--color-text, #17191f);
  --news-card-muted: var(--color-text-muted, #62636a);
  --news-pagination-bg: var(--color-navy, #242833);
  min-height: 1124px;
  padding: 46px var(--news-listing-inline) 64px;
  color: var(--news-card-text);
  background: var(--color-white, #fff);
  box-sizing: border-box;
}

.news-listing__inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.news-listing__count {
  margin: 0 0 18px;
  color: var(--news-card-muted);
  font-family: var(--font-body, "Figtree", "Noto Sans SC", sans-serif);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  text-align: right;
}

.news-listing__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px var(--news-grid-gap);
}

.news-card {
  min-width: 0;
}

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

.news-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
  border-radius: 3px;
  background: #f3f3f3;
}

.news-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0, 0, 0.3, 1);
}

.news-card__tags {
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  max-width: calc(100% - 16px);
  pointer-events: none;
}

.news-card__tags span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 4px 13px;
  border-radius: 999px;
  color: var(--news-card-text);
  background: var(--color-white, #fff);
  font-family: var(--font-body, "Figtree", "Noto Sans SC", sans-serif);
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.news-card__content {
  padding-top: 14px;
}

.news-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--news-card-muted);
  font-family: var(--font-body, "Figtree", "Noto Sans SC", sans-serif);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-card__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card__title {
  margin: 0;
  font-family: var(--font-body, "Figtree", "Noto Sans SC", sans-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 3px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 50px;
}

.news-pagination[hidden] {
  display: none;
}

.news-pagination__button {
  display: inline-grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 3px;
  color: var(--news-card-text);
  background: transparent;
  font: 500 13px/1 var(--font-body, "Figtree", "Noto Sans SC", sans-serif);
  cursor: pointer;
}

.news-pagination__button.is-active {
  color: var(--color-white, #fff);
  background: var(--news-pagination-bg);
}

.news-pagination__button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.news-pagination__button:focus-visible,
.news-card__media:focus-visible,
.news-card__title a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (hover: hover) {
  .news-card:hover .news-card__media img {
    transform: scale(1.03);
  }

  .news-card:hover .news-card__title a {
    text-decoration: underline;
  }

  .news-pagination__button:not(.is-active):hover {
    background: #f1f1f3;
  }
}

@media (min-width: 750px) {
  .news-listing {
    --news-grid-gap: 20px;
    --news-listing-inline: 32px;
    padding-top: 49px;
    padding-bottom: 80px;
  }

  .news-listing__count {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .news-listing__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 36px;
  }

  .news-card__tags {
    top: 8px;
    left: 8px;
    gap: 6px;
  }

  .news-card__tags span {
    min-height: 29px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .news-card__meta {
    font-size: 11px;
  }

  .news-card__title {
    font-size: 15px;
  }
}

@media (min-width: 1100px) {
  .news-listing__grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    row-gap: 36px;
  }

  .news-card__meta {
    font-size: 12px;
  }

  .news-card__title {
    font-size: 16px;
  }

  .news-pagination {
    margin-top: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-card__media img {
    transition: none;
  }
}
/* /NEWS GRID */

/* ============ KUNG FU PANDA ARTICLE ============ */
.article-page {
  color: #17191f;
  background: #fff;
  font-family: "Figtree", "Noto Sans SC", sans-serif;
}

.article-page .announcement { min-height: 34px; }
.article-page .site-header__bar,
.article-page .site-header__inner { min-height: 64px; background: #242833; }
.article-page .site-header__menu-button { color: #fff; }
.article-page .site-header__logo { width: 96px; }
.article-page .site-header__logo img { filter: grayscale(1) brightness(0) invert(1); }
.article-page .site-header__utilities .site-header__utility { display: none; }
.article-page .site-header__utilities .site-header__cart {
  display: inline-flex;
  min-width: 58px;
  height: 28px;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
}
.article-page .site-header__cart span { display: inline; color: #fff; }

.article-hero {
  min-height: 438px;
  padding: 48px 14px 28px;
  color: #fff;
  background: #242833;
}

.article-hero__inner {
  display: flex;
  min-height: 362px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.article-hero__breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  color: #f1f1f3;
  font-size: 14px;
}

.article-hero__breadcrumb a:last-child { color: #cfd1d6; }
.article-hero h1 {
  max-width: 960px;
  margin: 25px auto 19px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 35px;
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
}

.article-hero__tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.article-hero__tags a {
  display: inline-flex;
  min-height: 36px;
  padding: 8px 18px;
  align-items: center;
  border-radius: 999px;
  color: #fff;
  background: #303541;
  font-size: 12px;
}

.article-hero__details {
  display: flex;
  width: 100%;
  gap: 18px;
  margin-top: auto;
  flex-direction: column;
  align-items: center;
}
.article-hero__details > p {
  display: flex;
  gap: 18px;
  margin: 0;
  align-items: center;
  color: #d8dae0;
  font-size: 11px;
  text-transform: uppercase;
}

.article-share { display: flex; gap: 9px; align-items: center; }
.article-share button,
.article-share a {
  display: inline-grid;
  min-width: 30px;
  height: 30px;
  padding: 0 9px;
  place-items: center;
  border: 1px solid #5e636d;
  border-radius: 3px;
  color: #fff;
  background: transparent;
  font-size: 12px;
  line-height: 1;
  cursor: pointer;
}
.article-share button { min-width: 72px; }

.article-layout {
  display: block;
  width: calc(100% - 28px);
  max-width: 1361px;
  margin: 0 auto;
  padding: 32px 0 94px;
}

.article-content { min-width: 0; }
.article-content__lead {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-content__body {
  color: #242424;
  font-size: 15px;
  line-height: 1.6;
}
.article-content__sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.article-content__published {
  display: flex;
  gap: 12px;
  margin: 25px 0 22px;
  color: #666a70;
  font-size: 12px;
}
.article-content__body p { margin: 0 0 24px; }
.article-content__body h3 {
  margin: 11px 0 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.article-content__body a { text-decoration: underline; text-underline-offset: 3px; }
.article-content__square {
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  object-fit: cover;
}
.article-pagination {
  display: flex;
  margin-top: 46px;
  padding-top: 24px;
  justify-content: space-between;
  border-top: 1px solid #dedede;
  font-size: 14px;
}
.article-pagination span { color: #9b9b9b; }
.article-sidebar { display: none; }

.article-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__menu { display: none; }
.article-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { display: flex; min-height: 38px; margin: 0; align-items: center; justify-content: space-between; }
.article-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading::after { content: "⌄"; font-family: "Figtree", sans-serif; font-size: 16px; font-weight: 400; }

@media (min-width: 750px) {
  .article-layout { width: calc(100% - 64px); }
  .article-content__body { font-size: 16px; line-height: 1.6; }
}

@media (min-width: 990px) {
  .article-page .announcement { min-height: 44px; }
  .article-page .site-header__bar,
  .article-page .site-header__inner { min-height: 72px; }
  .article-page .site-header__sale { display: flex; }
  .article-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__menu { display: grid; }
  .article-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { display: block; min-height: 0; }
  .article-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading::after { display: none; }

  .article-hero {
    min-height: 416px;
    padding: 46px 32px 25px;
  }
  .article-hero__inner { min-height: 345px; }
  .article-hero__breadcrumb { font-size: 16px; }
  .article-hero h1 {
    margin: 24px auto 17px;
    font-size: 48px;
    line-height: 1.27;
  }
  .article-hero__tags a { min-height: 36px; padding-inline: 18px; font-size: 13px; }
  .article-hero__details {
    max-width: 1361px;
    flex-direction: row;
    justify-content: space-between;
  }
  .article-hero__details > p { font-size: 12px; }

  .article-layout {
    display: grid;
    grid-template-columns: minmax(0, 960px) minmax(280px, 353px);
    gap: 48px;
  }
  .article-content__body { font-size: 16px; line-height: 1.6; }
  .article-content__published { margin-top: 26px; }
  .article-sidebar { display: block; }
  .article-sidebar section + section { margin-top: 64px; }
  .article-sidebar h2 {
    margin: 0 0 24px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }
  .article-sidebar__list,
  .article-sidebar__products { display: grid; gap: 16px; }
  .article-sidebar__list span {
    display: block;
    height: 110px;
    border-radius: 3px;
    background: linear-gradient(100deg, #f4f4f4 25%, #ededed 40%, #f4f4f4 55%);
  }
  .article-sidebar__products { grid-template-columns: 1fr 1fr; }
  .article-sidebar__products span {
    display: block;
    aspect-ratio: 1;
    border-radius: 3px;
    background: #f1f1f1;
  }
}

@media (hover: hover) {
  .article-hero__breadcrumb a:hover,
  .article-pagination a:hover,
  .article-content__body a:hover { text-decoration: underline; }
  .article-share button:hover,
  .article-share a:hover { background: #343945; }
}
/* /KUNG FU PANDA ARTICLE */

/* ============ TEAM KABOLA PAGE ============ */
.team-page {
  --team-paper: #f7f5f0;
  --team-black: #111111;
  --team-purple: #a86af4;
  color: var(--team-black);
  background: #fff;
  font-family: "Figtree", "Noto Sans SC", sans-serif;
}

.team-page .announcement { min-height: 34px; }
.team-page .site-header__bar,
.team-page .site-header__inner { min-height: 64px; background: #242833; }
.team-page .site-header__menu-button { color: #fff; }
.team-page .site-header__logo { width: 96px; }
.team-page .site-header__logo img { filter: grayscale(1) brightness(0) invert(1); }
.team-page .site-header__utilities .site-header__utility { display: none; }
.team-page .site-header__utilities .site-header__cart {
  display: inline-flex;
  min-width: 58px;
  height: 28px;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
}
.team-page .site-header__cart span { display: inline; color: #fff; }

.team-breadcrumb {
  height: 31.6px;
  padding: 0 20px;
  border-bottom: 1px solid #e6e6e6;
  background: #fff;
  font-size: 10px;
}
.team-breadcrumb ol {
  display: flex;
  height: 100%;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;
}
.team-breadcrumb li + li::before { margin-right: 8px; color: #999; content: "/"; }

.team-roster { padding: 52px 20px 104px; background: var(--team-paper); }
.team-roster__inner { width: 100%; margin: 0 auto; }
.team-roster__eyebrow,
.team-sponsorship__eyebrow {
  margin: 0 0 19px;
  color: #56545a;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.2;
  text-transform: uppercase;
}
.team-roster__eyebrow::before,
.team-sponsorship__eyebrow::before {
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 12px;
  background: var(--team-purple);
  content: "";
  vertical-align: middle;
}
.team-roster__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: .9;
  text-transform: uppercase;
}
.team-roster__summary {
  display: block;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #d8d6d1;
}
.team-roster__intro {
  max-width: 510px;
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}
.team-roster__count {
  display: flex;
  width: max-content;
  margin: 27px 0 0;
  flex-direction: column;
  align-items: center;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.team-roster__count strong { font-size: 48px; font-weight: 600; line-height: .8; }
.team-roster__count span { margin-top: 8px; color: #65635f; font-size: 9px; font-weight: 600; letter-spacing: 2px; }
.team-roster__grid {
  display: grid;
  margin: 50px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 14px;
  list-style: none;
}
.team-player,
.team-player figure { min-width: 0; margin: 0; }
.team-player__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 5px;
  background: #e8e5de;
}
.team-player__media > span {
  position: absolute;
  z-index: 0;
  inset: 50% auto auto 50%;
  color: #cfccc5;
  font-size: 42px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}
.team-player__media > b {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  font-size: 9px;
  font-weight: 700;
}
.team-player__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.team-player h3 {
  margin: 8px 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.team-sponsorship {
  min-height: 417px;
  padding: 54px 20px;
  color: var(--team-paper);
  background: var(--team-black);
}
.team-sponsorship__inner { display: flex; min-height: 309px; flex-direction: column; justify-content: space-between; }
.team-sponsorship__eyebrow { margin-bottom: 20px; color: var(--team-purple); }
.team-sponsorship__eyebrow::before { display: none; }
.team-sponsorship h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: .92;
  text-transform: uppercase;
}
.team-sponsorship__content { max-width: 360px; margin-top: 42px; }
.team-sponsorship__content p { margin: 0 0 27px; color: #c5c3c0; font-size: 12px; line-height: 1.45; }
.team-sponsorship__content a {
  display: inline-flex;
  min-width: 158px;
  min-height: 47px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  color: #111;
  background: var(--team-purple);
  font-size: 12px;
  font-weight: 700;
}

.team-footer { background: #fff; }
.team-footer .site-footer__inner { max-width: none; padding-inline: 20px; }
.team-footer__spacer { height: 430px; }
.team-footer .site-footer__middle { padding-block: 16px; }
.team-footer .site-footer__bottom { font-size: 10px; }
.team-footer .site-footer__policies li { padding-inline: 5px; }

@media (hover: hover) {
  .team-player:hover img { transform: scale(1.025); }
  .team-sponsorship__content a:hover { background: #9256df; }
}

@media (min-width: 750px) {
  .team-page .announcement { min-height: 40px; }
  .team-page .site-header__bar,
  .team-page .site-header__inner { min-height: 72px; }
  .team-breadcrumb { height: 38.4px; padding-inline: 38.4px; font-size: 12px; }
  .team-roster { padding: 102px 5vw 104px; }
  .team-roster__title { font-size: 13vw; }
  .team-roster__grid { gap: 20px 2.2vw; }
  .team-player h3 { font-size: 17px; }
  .team-sponsorship { min-height: 351px; padding: 48px 5vw; }
  .team-sponsorship__inner { min-height: 255px; flex-direction: row; align-items: center; }
  .team-sponsorship h2 { font-size: 53.76px; }
  .team-sponsorship__content { margin-top: 0; }
  .team-footer .site-footer__inner { padding-inline: 24px; }
}

@media (min-width: 990px) {
  .team-page .announcement { min-height: 44px; }
  .team-page .site-header__bar,
  .team-page .site-header__inner { min-height: 72px; }
  .team-page .site-header__sale { display: flex; }
  .team-breadcrumb { padding-inline: 32px; font-size: 13px; }
  .team-roster { padding: 112px 64px 104px; }
  .team-roster__inner { max-width: 1297px; }
  .team-roster__title { font-size: 168px; line-height: .9; }
  .team-roster__summary {
    display: flex;
    margin-top: 42px;
    padding-top: 38px;
    align-items: flex-start;
    justify-content: space-between;
  }
  .team-roster__intro { font-size: 16px; line-height: 1.45; }
  .team-roster__count { margin: 0 0 0 auto; }
  .team-roster__count strong { font-size: 72px; }
  .team-roster__count span { font-size: 10px; }
  .team-roster__grid {
    margin-top: 72px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 32px 31.67px;
  }
  .team-player h3 { margin-top: 12px; font-size: 20px; line-height: 23px; }
  .team-sponsorship { min-height: 462px; padding: 0 64px; }
  .team-sponsorship__inner { min-height: 462px; flex-direction: row; align-items: center; }
  .team-sponsorship__inner > div:first-child { width: 50%; }
  .team-sponsorship h2 { font-size: 100px; line-height: .92; }
  .team-sponsorship__content { width: 353px; max-width: 353px; margin-right: 178px; }
  .team-sponsorship__content p { font-size: 14px; }
  .team-footer__spacer { height: 450px; }
  .team-footer .site-footer__inner { padding-inline: 32px; }
}
/* /TEAM KABOLA PAGE */

/* ============ CONTACT US PAGE ============ */
.contact-us-page { font-family: "Figtree", "Noto Sans SC", sans-serif; background: #fff; }
.contact-us-page .announcement { min-height: 34px; }
.contact-us-page .site-header__bar,
.contact-us-page .site-header__inner { min-height: 64px; background: #242833; }
.contact-us-page .site-header__menu-button { color: #fff; }
.contact-us-page .site-header__logo { width: 96px; }
.contact-us-page .site-header__logo img { filter: grayscale(1) brightness(0) invert(1); }
.contact-us-page .site-header__utilities .site-header__utility { display: none; }
.contact-us-page .site-header__utilities .site-header__cart { display: inline-flex; min-width: 58px; height: 28px; justify-content: center; border: 1px solid #fff; border-radius: 999px; color: #fff; }
.contact-us-page .site-header__cart span { display: inline; color: #fff; }
.contact-page__breadcrumb { height: 51.6px; padding: 0 21px; }
.contact-page__breadcrumb ol { display: flex; height: 100%; gap: 8px; margin: 0; padding: 0; align-items: center; list-style: none; font-size: 14px; }
.contact-page__breadcrumb li + li::before { margin-right: 8px; content: "/"; }
.contact-page__main { display: grid; gap: 28px; margin: 28px 21px 76px; }
.contact-page__form-column header { margin-bottom: 28px; }
.contact-page__form-column h1 { margin: 0; font-family: "Barlow Condensed", sans-serif; font-size: 28px; font-weight: 600; line-height: 34px; }
.contact-page__form-column header p { margin: 12px 0 0; font-size: 14px; line-height: 19.6px; }
.contact-page__form { display: grid; gap: 14px; }
.contact-page__field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; }
.contact-page__form label { display: block; }
.contact-page__form input,
.contact-page__form textarea { width: 100%; border: 1px solid #111; border-radius: 3.5px; background: #fff; font-size: 14px; outline: 0; }
.contact-page__form input { height: 42px; padding: 0 14px; }
.contact-page__form textarea { height: 140px; padding: 14px; resize: vertical; }
.contact-page__form input:focus,
.contact-page__form textarea:focus { box-shadow: 0 0 0 2px rgb(36 40 51 / 18%); }
.contact-page__form button { display: inline-flex; width: max-content; min-width: 136px; height: 42px; gap: 7px; padding: 0 24px; align-items: center; justify-content: center; border-radius: 3.5px; color: #fff; background: #242833; font-size: 12px; font-weight: 700; cursor: pointer; }
.contact-page__form button svg { width: 21px; height: 21px; }
.contact-page__status { min-height: 0; margin: 0; color: #287a37; font-size: 13px; }
.contact-page__status:empty { display: none; }
.contact-page__status:not(:empty) { min-height: 20px; }
.contact-page__details { padding: 28px; border-radius: 3.5px; color: #fff; background: #242833; }
.contact-page__detail { display: flex; gap: 10.5px; margin-bottom: 14px; align-items: flex-start; }
.contact-page__detail > span { display: grid; width: 18px; padding-top: 2px; flex: 0 0 18px; place-items: center; color: rgb(255 255 255 / 65%); }
.contact-page__detail > span svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.contact-page__detail div { display: grid; gap: 3px; }
.contact-page__detail strong { font-size: 14px; line-height: 19.6px; }
.contact-page__detail small,
.contact-page__detail a { color: #d4d5da; font-size: 14px; line-height: 19.6px; }
.contact-page__detail a { color: #fff; }
.contact-page__support { margin: 25px 0 0; font-size: 14px; line-height: 19.6px; }
.contact-page__social { display: flex; gap: 14px; margin-top: 16px; }
.contact-page__social a { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 3px; background: #303541; font-size: 15px; }
.contact-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__menu { display: none; }
.contact-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { display: flex; min-height: 38px; margin: 0; align-items: center; justify-content: space-between; }
.contact-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading::after { content: "⌄"; font-family: "Figtree", sans-serif; font-size: 16px; font-weight: 400; }

@media (max-width: 749px) {
  .contact-page__main { margin-bottom: 106px; }
  .contact-page__details { padding-bottom: 18px; }
  .contact-us-page .site-footer { padding-bottom: 11px; }
  .contact-us-page .site-footer__top { padding: 0 0 16px; }
  .contact-us-page .site-footer__blocks { gap: 0; }
  .contact-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { min-height: 34px; }
  .contact-us-page .site-footer__newsletter-copy { margin-bottom: 12px; }
  .contact-us-page .site-footer__middle { padding-block: 10px; }
  .contact-us-page .site-footer__bottom { padding-block: 12px; }
}

@media (min-width: 750px) {
  .contact-us-page .announcement { min-height: 40px; }
  .contact-us-page .site-header__bar,
  .contact-us-page .site-header__inner { min-height: 72px; }
  .contact-page__breadcrumb { width: calc(100% - 64px); max-width: 1361px; height: 58px; margin-inline: auto; padding-inline: 0; }
  .contact-page__main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); width: calc(100% - 64px); max-width: 1361px; gap: 32px; margin: 48px auto 100px; align-items: center; }
}

@media (min-width: 990px) {
  .contact-us-page .announcement { min-height: 44px; }
  .contact-us-page .site-header__bar,
  .contact-us-page .site-header__inner { min-height: 72px; }
  .contact-us-page .site-header__sale { display: flex; }
  .contact-page__breadcrumb { height: 54.4px; font-size: 16px; }
  .contact-page__main { grid-template-columns: minmax(0, 657px) minmax(0, 640px); gap: 64px; }
  .contact-page__form-column header { margin-bottom: 32px; }
  .contact-page__form-column h1 { font-size: 32px; line-height: 38px; }
  .contact-page__form-column header p { margin-top: 16px; font-size: 16px; line-height: 22.4px; }
  .contact-page__form { gap: 16px; }
  .contact-page__field-row { gap: 8px; }
  .contact-page__form input { height: 48px; padding-inline: 16px; }
  .contact-page__form textarea { height: 160px; padding: 16px; }
  .contact-page__form button { min-width: 155px; height: 48px; gap: 8px; padding-inline: 32px; font-size: 14px; }
  .contact-page__form button svg { width: 24px; height: 24px; }
  .contact-page__details { padding: 32px; }
  .contact-page__detail { gap: 12px; margin-bottom: 16px; }
  .contact-page__detail strong,
  .contact-page__detail small,
  .contact-page__detail a { font-size: 16px; line-height: 22.4px; }
  .contact-page__support { margin-top: 26px; font-size: 16px; line-height: 22.4px; }
  .contact-page__social { gap: 16px; }
  .contact-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__menu { display: grid; }
  .contact-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { display: block; min-height: 0; }
  .contact-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading::after { display: none; }
}
/* /CONTACT US PAGE */

/* ============ ABOUT US PAGE ============ */
.about-us-page { --about-blue: #0056b3; font-family: "Montserrat", "Figtree", "Noto Sans SC", sans-serif; background: #fff; }
.about-us-page .announcement { min-height: 34px; }
.about-us-page .site-header__bar,
.about-us-page .site-header__inner { min-height: 64px; background: #242833; }
.about-us-page .site-header__menu-button { color: #fff; }
.about-us-page .site-header__logo { width: 96px; }
.about-us-page .site-header__logo img { filter: grayscale(1) brightness(0) invert(1); }
.about-us-page .site-header__utilities .site-header__utility { display: none; }
.about-us-page .site-header__utilities .site-header__cart { display: inline-flex; min-width: 58px; height: 28px; justify-content: center; border: 1px solid #fff; border-radius: 999px; color: #fff; }
.about-us-page .site-header__cart span { display: inline; color: #fff; }
.about-page__breadcrumb { display: flex; height: 43.6px; gap: 8px; padding: 0 21px; align-items: center; font-size: 14px; line-height: 19.6px; }
.about-intro { width: calc(100% - 42px); max-width: 1200px; margin: 50px auto 60px; padding: 20px; background: #fff; box-shadow: 0 0 10px rgb(0 0 0 / 10%); }
.about-intro h1 { margin: 0 0 20px; color: var(--about-blue); font-family: "Barlow Condensed", sans-serif; font-size: 35px; font-weight: 600; line-height: 42px; text-align: center; }
.about-intro p { margin: 0 0 15px; font-size: 14px; line-height: 22.4px; }
.about-intro p:last-child { margin-bottom: 0; }
.about-intro__purpose { font-size: 15.4px !important; text-align: center; }
.about-stats { height: 362.34px; padding: 9px 28px 36px; color: #fff; background: #242833; overflow: hidden; }
.about-stats__inner { width: 100%; max-width: 960px; margin: 0 auto; opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.about-stats.is-visible .about-stats__inner { opacity: 1; transform: none; }
.about-stats h2 { margin: 0 0 22px; font-family: "Barlow Condensed", sans-serif; font-size: 21px; font-weight: 600; line-height: 25px; text-align: center; }
.about-stats ul { display: flex; width: 100%; min-height: 239px; margin: 0 auto; padding: 14px 0; flex-wrap: wrap; justify-content: center; border-radius: 3.5px; color: #111; background: #fff; list-style: none; }
.about-stats li { display: flex; width: 50%; padding: 14px 8px; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.about-stats strong { margin-bottom: 14px; font-size: 21px; line-height: 29.4px; }
.about-stats span { max-width: 145px; color: #555; font-size: 12.25px; line-height: 17.15px; }
.about-map { width: calc(100% - 42px); max-width: 1200px; margin: 3px auto 6px; overflow: hidden; }
.about-map img { width: 100%; aspect-ratio: 3600 / 1607; object-fit: cover; }
.about-capabilities { display: grid; width: calc(100% - 42px); max-width: 1200px; gap: 20px; margin: 0 auto 60px; padding: 20px; }
.about-capabilities article { padding: 30px; background: #fff; box-shadow: 0 4px 8px rgb(0 0 0 / 10%); text-align: center; transition: all .3s ease; }
.about-capabilities h2 { margin: 0 0 15px; color: var(--about-blue); font-family: "Barlow Condensed", sans-serif; font-size: 21px; font-weight: 700; letter-spacing: 1px; line-height: normal; }
.about-capabilities p { margin: 0; color: #333; font-size: 14px; line-height: 22.4px; }
.about-capabilities strong { color: var(--about-blue); }
.about-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__menu { display: none; }
.about-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { display: flex; min-height: 38px; margin: 0; align-items: center; justify-content: space-between; }
.about-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading::after { content: "⌄"; font-family: "Figtree", sans-serif; font-size: 16px; font-weight: 400; }

@media (hover: hover) {
  .about-capabilities article:hover { box-shadow: 0 6px 12px rgb(0 0 0 / 15%); transform: translateY(-5px); }
}

@media (min-width: 750px) {
  .about-us-page .announcement { min-height: 40px; }
  .about-us-page .site-header__bar,
  .about-us-page .site-header__inner { min-height: 72px; }
  .about-page__breadcrumb { height: 54.4px; padding-inline: 32px; font-size: 16px; line-height: 22.4px; }
  .about-intro { width: calc(100% - 64px); margin-bottom: 80px; }
  .about-intro h1 { font-size: 40px; line-height: 48px; }
  .about-intro p { font-size: 16px; line-height: 25.6px; }
  .about-intro__purpose { font-size: 17.6px !important; }
  .about-stats { height: 273.78px; padding: 12px 32px 48px; }
  .about-stats h2 { margin-bottom: 32px; font-size: 24px; line-height: 29px; }
  .about-stats ul { width: 576px; min-height: 152.78px; padding: 16px 0; flex-wrap: nowrap; border-radius: 4px; }
  .about-stats li { width: 192px; padding: 16px 8px; }
  .about-stats strong { margin-bottom: 16px; font-size: 24px; line-height: 33.6px; }
  .about-stats span { font-size: 14px; line-height: 19.6px; }
  .about-map { width: calc(100% - 64px); margin: 4px auto 8px; }
  .about-capabilities { width: calc(100% - 64px); margin-bottom: 80px; }
  .about-capabilities h2 { font-size: 24px; }
  .about-capabilities p { font-size: 16px; line-height: 25.6px; }
}

@media (min-width: 990px) {
  .about-us-page .announcement { min-height: 44px; }
  .about-us-page .site-header__bar,
  .about-us-page .site-header__inner { min-height: 72px; }
  .about-us-page .site-header__sale { display: flex; }
  .about-capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__menu { display: grid; }
  .about-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading { display: block; min-height: 0; }
  .about-us-page .site-footer__block:not(.site-footer__block--brand):not(.site-footer__block--newsletter) .site-footer__heading::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .about-stats__inner { opacity: 1; transform: none; transition: none; }
  .about-capabilities article { transition: none; }
}
/* /ABOUT US PAGE */

/* ============ UNIFIED SITE HEADER ============ */
body[class] .announcement { min-height: 0; }
body[class] .site-header__bar { min-height: 0; }
body[class] .site-header__inner { min-height: 0; background: transparent; }
body[class] .site-header__menu-button { color: inherit; }
body[class] .site-header__logo { width: 112px; }
body[class] .site-header__logo img { filter: none; }
body[class] .site-header__utilities .site-header__utility:first-child { display: inline-grid; }

@media (min-width: 990px) {
  body[class] .site-header__logo { width: 82px; }
  body[class] .site-header__logo img { filter: grayscale(1) brightness(0) invert(1); }
  body[class] .site-header__locale { display: inline-flex; }
}
/* /UNIFIED SITE HEADER */
