/** Shopify CDN: Minification failed

Line 7239:0 Unexpected "}"

**/
:root {
  --kore-lime: #B6FF00;
  --lime-glow: #D3FF4D;
  --deep-lime: #7FAF00;
  --jet: #050505;
  --ink: #0B0B0B;
  --charcoal: #151515;
  --panel: #1D1D1D;
  --line: rgba(245, 245, 245, 0.12);
  --accent-line: rgba(182, 255, 0, 0.28);
  --accent-soft: rgba(182, 255, 0, 0.07);
  --neutral-surface: #F3F4F1;
  --neutral-surface-strong: #FFFFFF;
  --neutral-text: #171717;
  --silver: #8C8C8C;
  --white: #F5F5F5;
  --max: 1200px;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  background: var(--jet);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 6%, rgba(182, 255, 0, 0.035), transparent 24rem),
    linear-gradient(180deg, var(--jet) 0%, var(--ink) 58%, var(--jet) 100%);
  color: var(--white);
  padding-top: 126px;
}

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

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

button, input, select {
  font: inherit;
}

.skip-link {
  background: var(--kore-lime);
  color: #050505;
  left: 1rem;
  padding: .75rem 1rem;
  position: fixed;
  top: -4rem;
  z-index: 100;
}

.skip-link:focus { top: 1rem; }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid var(--kore-lime);
  outline-offset: 3px;
}

.site-header {
  background: rgba(13, 10, 10, .96);
  border-bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-compact,
.footer-bottom,
.section-wrap,
.poster-carousel,
.round-categories,
.launch,
.story-panels,
.faq-showcase,
.collection-shell,
.product-shell,
.page-shell,
.rich-page,
.hero,
.trust-bar,
.auth-panel,
.finder {
  margin: 0 auto;
  max-width: var(--max);
  width: min(calc(100% - 3rem), var(--max));
}

.header-inner {
  align-items: center;
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 260px minmax(320px, 1fr) 180px;
  min-height: 78px;
}

.brand-logo { width: 220px; }
.brand-logo--mobile { display: none; }

.brand-link {
  align-items: center;
  display: inline-flex;
}

.brand-logo,
.footer-logo {
  height: auto;
  object-fit: contain;
}

.brand-logo--desktop {
  height: 78px;
  object-fit: contain;
  transform: scale(1.34);
  transform-origin: left center;
  width: 280px;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 2.7rem;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.5rem;
}

.desktop-nav a,
.mobile-panel a {
  color: var(--white);
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.mobile-panel a:hover { color: var(--kore-lime); }

.header-menu-row {
  border-top: 0;
}

.category-nav-link,
.nav-with-chevron {
  align-items: center;
  display: inline-flex;
  gap: .55rem;
}

.nav-menu-item {
  align-items: center;
  display: inline-flex;
  min-height: 48px;
  position: relative;
}

.nav-flyout {
  background: rgba(10, 10, 10, .98);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
  display: grid;
  gap: .78rem;
  left: 50%;
  opacity: 0;
  padding: 1rem;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 1px);
  transform: translate(-50%, 10px);
  transition: opacity .18s ease, transform .22s ease, visibility .18s ease;
  visibility: hidden;
  z-index: 120;
}

.nav-menu-item:hover .nav-flyout,
.nav-menu-item:focus-within .nav-flyout {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-flyout--categories {
  gap: .35rem;
  grid-template-columns: 1fr;
  left: 0;
  min-width: 360px;
  padding: .55rem;
  transform: translateY(10px);
  width: 390px;
}

.nav-flyout--brands {
  grid-template-columns: repeat(8, minmax(84px, 1fr));
  width: min(980px, calc(100vw - 2rem));
}

.nav-category-link,
.nav-brand-icon {
  align-items: center;
  display: grid;
  gap: .55rem;
  justify-items: center;
  min-width: 0;
  opacity: 0;
  text-align: center;
  transform: translateY(8px);
  transition: color .2s ease, opacity .2s ease, transform .22s ease;
}

.nav-menu-item:hover .nav-category-link,
.nav-menu-item:focus-within .nav-category-link,
.nav-menu-item:hover .nav-brand-icon,
.nav-menu-item:focus-within .nav-brand-icon {
  opacity: 1;
  transform: translateY(0);
}

.nav-category-link:nth-child(1),
.nav-brand-icon:nth-child(1) { transition-delay: .02s; }
.nav-category-link:nth-child(2),
.nav-brand-icon:nth-child(2) { transition-delay: .05s; }
.nav-category-link:nth-child(3),
.nav-brand-icon:nth-child(3) { transition-delay: .08s; }
.nav-category-link:nth-child(4),
.nav-brand-icon:nth-child(4) { transition-delay: .11s; }
.nav-category-link:nth-child(5),
.nav-brand-icon:nth-child(5) { transition-delay: .14s; }
.nav-category-link:nth-child(6),
.nav-brand-icon:nth-child(6) { transition-delay: .17s; }
.nav-category-link:nth-child(7),
.nav-brand-icon:nth-child(7) { transition-delay: .2s; }
.nav-category-link:nth-child(8),
.nav-brand-icon:nth-child(8) { transition-delay: .23s; }

.nav-menu-item:hover .nav-flyout--categories,
.nav-menu-item:focus-within .nav-flyout--categories {
  transform: translateY(0);
}

.nav-category-link {
  border: 1px solid transparent;
  gap: .8rem;
  grid-template-columns: minmax(0, 1fr) 64px;
  justify-items: stretch;
  min-height: 64px;
  padding: .55rem .78rem .55rem .82rem;
  position: relative;
  text-align: left;
}

.nav-category-link--plain {
  grid-template-columns: 1fr;
}

.nav-category-link::after {
  color: var(--kore-lime);
  content: ">";
  font-size: .9rem;
  font-weight: 950;
  opacity: 0;
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translate(-4px, -50%);
  transition: opacity .18s ease, transform .2s ease;
}

.nav-category-link:hover,
.nav-category-link:focus-visible {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(182, 255, 0, .28);
}

.nav-category-link:hover::after,
.nav-category-link:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.nav-category-link__text {
  align-content: center;
  display: grid;
  min-width: 0;
}

.nav-category-link__thumb {
  align-items: center;
  background: transparent;
  border: 0;
  display: grid;
  height: 52px;
  justify-items: center;
  overflow: visible;
  width: 64px;
}

.nav-category-link__thumb img {
  height: auto;
  max-height: 52px;
  max-width: 60px;
  object-fit: contain;
  padding: 0;
  width: auto;
}

.nav-category-link__thumb > span {
  color: var(--kore-lime);
  font-size: .68rem;
  font-weight: 950;
}

.nav-brand-icon img {
  aspect-ratio: 1;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, .12);
  display: block;
  object-fit: cover;
  transition: border-color .2s ease, transform .22s ease;
  width: 78px;
}

.nav-category-link strong,
.nav-brand-icon strong {
  color: var(--white);
  font-size: .68rem;
  font-weight: 950;
  line-height: 1.12;
  min-height: 2.25em;
  text-transform: uppercase;
}

.nav-category-link strong {
  font-size: .82rem;
  line-height: 1.15;
  min-height: 0;
}

.nav-category-link__text > span {
  color: var(--silver);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.25;
  padding-right: 1.2rem;
  text-transform: none;
}

.nav-brand-icon:hover img,
.nav-brand-icon:focus-visible img {
  border-color: rgba(182, 255, 0, .75);
  transform: translateY(-3px) scale(1.02);
}

.category-nav-link .icon {
  height: 20px;
  width: 20px;
}

.nav-with-chevron .icon {
  height: 15px;
  width: 15px;
  stroke-width: 2.8;
}

.nav-divider {
  background: rgba(245, 245, 245, .78);
  height: 24px;
  width: 1px;
}

.header-search,
.mobile-search,
.mobile-inline-search,
.search-page-form {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  overflow: visible;
  position: relative;
  background: #0d0d0d;
}

.header-search {
  background: #f7f7f7;
  border-color: rgba(255,255,255,.7);
  width: 100%;
}

.mobile-inline-search {
  display: none;
  margin: 0 auto .7rem;
  width: min(calc(100% - 1rem), var(--max));
}

.header-search input,
.mobile-search input,
.mobile-inline-search input,
.search-page-form input {
  background: transparent;
  border: 0;
  color: var(--white);
  min-width: 0;
  outline: 0;
  padding: .85rem 1rem;
  width: 100%;
}

.header-search input {
  color: #1b1b1b;
}

.header-search button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #050505;
  display: grid;
  height: 42px;
  justify-items: center;
  width: 42px;
}

.mobile-inline-search button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--kore-lime);
  display: grid;
  height: 42px;
  justify-items: center;
  width: 42px;
}

.mobile-inline-search button .icon {
  height: 22px;
  width: 22px;
}

.predictive-search {
  background: #fff;
  border: 1px solid rgba(5, 5, 5, .12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .22);
  color: #050505;
  left: 0;
  max-height: 420px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 80;
}

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

.predictive-search__item,
.predictive-search__view-all,
.predictive-search__empty {
  color: #050505;
  display: grid;
  gap: .75rem;
  padding: .72rem;
}

.predictive-search__item {
  align-items: center;
  grid-template-columns: 54px 1fr;
}

.predictive-search__item + .predictive-search__item,
.predictive-search__view-all {
  border-top: 1px solid #ececec;
}

.predictive-search__image {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  height: 54px;
  justify-items: center;
  overflow: hidden;
  width: 54px;
}

.predictive-search__image img {
  height: 100%;
  object-fit: contain;
  padding: .25rem;
  width: 100%;
}

.predictive-search__item strong {
  color: #050505;
  display: -webkit-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .86rem;
  font-weight: 900;
  line-height: 1.2;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.predictive-search__item small {
  color: #666;
  display: block;
  font-size: .68rem;
  font-weight: 900;
  margin-top: .24rem;
  text-transform: uppercase;
}

.predictive-search__view-all {
  background: #f7f7f7;
  color: #050505;
  font-size: .78rem;
  font-weight: 950;
  justify-content: center;
  text-transform: uppercase;
}

.predictive-search__empty {
  color: #666;
  font-size: .84rem;
  font-weight: 800;
}

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

.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--white);
  display: inline-grid;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
}

.icon { height: 27px; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.35; fill: none; width: 27px; }
.icon-fill { fill: currentColor; stroke: none; }

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

.cart-count {
  align-items: center;
  background: var(--kore-lime);
  color: #050505;
  display: grid;
  font-size: .7rem;
  font-weight: 900;
  height: 18px;
  justify-content: center;
  min-width: 18px;
  position: absolute;
  right: -5px;
  top: -5px;
}

.mobile-menu-trigger { display: none; }

.mobile-panel {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.mobile-drawer-shell {
  height: 100dvh;
  inset: 0;
  position: fixed;
  width: 100vw;
  z-index: 100;
}

.mobile-drawer-overlay {
  background: rgba(0, 0, 0, .72);
  border: 0;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .28s ease;
}

.mobile-drawer {
  background: #fff;
  color: #151515;
  height: 100dvh;
  max-width: none;
  overflow-y: auto;
  padding: 0;
  position: relative;
  transform: translateX(-104%);
  transition: transform .28s ease;
  width: 75vw;
  z-index: 1;
}

.mobile-drawer-brand {
  background:
    radial-gradient(circle at 85% 15%, rgba(182,255,0,.1), transparent 12rem),
    linear-gradient(145deg, #050505, #111);
  border-bottom: 2px solid var(--accent-line);
  padding: 1rem 1rem 1.15rem;
  position: relative;
}

.mobile-drawer-shell.is-open .mobile-drawer-overlay {
  opacity: 1;
}

.mobile-drawer-shell.is-open .mobile-drawer {
  transform: translateX(0);
}

.drawer-open {
  overflow: hidden;
}

.mobile-drawer-close {
  align-items: center;
  background: rgba(245, 245, 245, .1);
  border: 1px solid rgba(245, 245, 245, .18);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  right: .5rem;
  top: .5rem;
  width: 44px;
}

.mobile-drawer-close .icon {
  height: 19px;
  width: 19px;
}

.mobile-drawer-logo {
  display: flex;
  justify-content: center;
  margin: 1.25rem 0 .7rem;
}

.mobile-drawer-logo img {
  max-width: 215px;
  padding: 0;
}

.mobile-drawer-brand p {
  color: var(--kore-lime);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .1em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.mobile-drawer-account {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  color: #151515;
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  margin: 0 1rem;
  padding: .85rem 0;
}

.mobile-drawer-nav {
  display: grid;
  padding: 0 1rem;
}

.mobile-drawer-nav a,
.mobile-drawer-nav summary {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  color: #151515;
  cursor: pointer;
  display: flex;
  font-size: 1rem;
  font-weight: 900;
  justify-content: space-between;
  list-style: none;
  padding: .9rem 0;
}

.mobile-drawer-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-drawer-nav details a {
  color: #555;
  font-size: .88rem;
  padding: .6rem 0 .6rem 1rem;
}

.mobile-drawer-nav details a.mobile-drawer-category,
.mobile-drawer-nav details a.mobile-drawer-brand-link {
  align-items: center;
  color: #555;
  display: grid;
  font-size: .86rem;
  font-weight: 900;
  gap: .7rem;
  min-height: 54px;
  padding: .42rem 0 .42rem 1rem;
}

.mobile-drawer-nav details a.mobile-drawer-category {
  grid-template-columns: minmax(0, 1fr) 46px;
}

.mobile-drawer-nav details a.mobile-drawer-brand-link {
  grid-template-columns: 44px minmax(0, 1fr);
  justify-content: start;
}

.mobile-drawer-category img {
  height: auto;
  justify-self: center;
  max-height: 42px;
  max-width: 42px;
  object-fit: contain;
  width: auto;
}

.mobile-drawer-brand-link img {
  aspect-ratio: 1;
  background: #050505;
  height: 38px;
  object-fit: cover;
  width: 38px;
}

.mobile-drawer-nav .icon {
  color: #8a8a8a;
  height: 18px;
  width: 18px;
}

.new-badge {
  background: rgba(182, 255, 0, .14);
  border: 1px solid var(--accent-line);
  color: #050505;
  font-size: .78rem;
  margin-left: .5rem;
  padding: .25rem .45rem;
}

.cart-drawer-shell {
  height: 100dvh;
  inset: 0;
  position: fixed;
  width: 100vw;
  z-index: 110;
}

.cart-drawer-overlay {
  background: rgba(0, 0, 0, .72);
  border: 0;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .3s ease;
}

.cart-drawer {
  background: #f3f5f7;
  color: var(--neutral-text);
  display: flex;
  flex-direction: column;
  height: 100dvh;
  margin-left: auto;
  overflow: hidden;
  position: relative;
  transform: translateX(104%);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1);
  width: min(100vw, 392px);
  z-index: 1;
}

.cart-drawer-shell.is-open .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-shell.is-open .cart-drawer {
  transform: translateX(0);
}

.cart-drawer__header {
  align-items: center;
  background: #f5f6f8;
  display: flex;
  justify-content: space-between;
  min-height: 58px;
  padding: .85rem 1rem;
}

.cart-drawer__header h2 {
  color: #050505;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  text-transform: none;
}

.cart-drawer__close {
  align-items: center;
  background: transparent;
  border: 0;
  color: #050505;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.cart-drawer__close .icon {
  height: 24px;
  stroke-width: 3;
  width: 24px;
}

.cart-drawer__saving {
  background: var(--jet);
  border-radius: 0 0 1rem 1rem;
  color: #fff;
  font-size: .92rem;
  font-weight: 950;
  line-height: 1.2;
  padding: .72rem 1rem .82rem;
  text-align: center;
}

.cart-drawer__body {
  display: flex;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.cart-drawer__empty {
  align-content: center;
  display: grid;
  flex: 1;
  justify-items: center;
  padding: 2rem 1.5rem 7rem;
  text-align: center;
}

.cart-drawer__empty p {
  color: #6c7886;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 1.2rem;
}

.cart-drawer__explore {
  align-items: center;
  background: var(--kore-lime);
  border: 0;
  color: #050505;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 950;
  justify-content: center;
  min-height: 58px;
  padding: 1rem 2.5rem;
  width: min(100%, 280px);
}

.cart-drawer__form {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

.cart-drawer__items {
  display: grid;
  gap: .65rem;
  overflow-y: auto;
  padding: .55rem .6rem 0;
}

.cart-drawer__item {
  align-items: start;
  background: #fff;
  border: 1px solid rgba(255, 72, 54, .82);
  border-radius: 8px;
  display: grid;
  gap: .65rem;
  grid-template-columns: 84px minmax(0, 1fr);
  padding: .55rem;
  position: relative;
}

.cart-drawer__image {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 6px;
  display: grid;
  height: auto;
  justify-items: center;
  overflow: hidden;
  width: 84px;
}

.cart-drawer__image img {
  height: 100%;
  object-fit: contain;
  padding: .18rem;
  width: 100%;
}

.cart-drawer__image span {
  background: var(--kore-lime);
  height: 30px;
  width: 30px;
}

.cart-drawer__details {
  display: grid;
  gap: .3rem;
  min-width: 0;
  padding-right: 4.6rem;
}

.cart-drawer__details a {
  color: #050505;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.22;
}

.cart-drawer__details span {
  color: #747474;
  font-size: .78rem;
  font-weight: 800;
}

.cart-drawer__prices {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .15rem;
}

.cart-drawer__prices s {
  color: #b7b7b7;
  font-size: .82rem;
  font-weight: 800;
}

.cart-drawer__prices strong {
  color: #050505;
  font-size: .94rem;
  font-weight: 950;
  white-space: nowrap;
}

.cart-drawer__prices em {
  background: #ff3d2e;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-size: .72rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  padding: .36rem .5rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.cart-drawer__controls {
  align-items: center;
  bottom: .55rem;
  display: flex;
  gap: .45rem;
  position: absolute;
  right: .5rem;
}

.cart-drawer__qty {
  align-items: center;
  background: #f0f2f5;
  border: 1px solid #dde1e7;
  border-radius: 9px;
  display: grid;
  grid-template-columns: 28px 30px 28px;
  height: 28px;
  overflow: hidden;
}

.cart-drawer__qty button {
  background: transparent;
  border: 0;
  color: #374151;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 950;
  height: 100%;
  padding: 0;
}

.cart-drawer__qty span {
  color: #050505;
  font-size: .86rem;
  font-weight: 950;
  text-align: center;
}

.cart-drawer__remove {
  align-items: center;
  background: transparent;
  border: 0;
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  height: 28px;
  justify-content: center;
  padding: 0;
  width: 22px;
}

.cart-drawer__remove .icon {
  height: 18px;
  stroke-width: 2.8;
  width: 18px;
}

.cart-drawer__coupon {
  background: #fff;
  border: 1px solid #dce1e7;
  border-radius: 10px;
  display: grid;
  gap: .65rem;
  margin: .55rem .6rem;
  padding: .8rem .7rem .9rem;
}

.cart-drawer__coupon label {
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.cart-drawer__coupon div {
  align-items: center;
  border: 1px solid #b9c2ce;
  border-radius: 8px;
  display: grid;
  gap: .45rem;
  grid-template-columns: auto 1fr;
  min-height: 35px;
  padding: 0 .75rem;
}

.cart-drawer__coupon span {
  align-items: center;
  background: #22c7b8;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: .76rem;
  font-weight: 950;
  height: 18px;
  justify-content: center;
  width: 18px;
}

.cart-drawer__coupon input {
  background: transparent;
  border: 0;
  color: #223044;
  font-size: .86rem;
  font-weight: 800;
  min-height: 33px;
  outline: 0;
  width: 100%;
}

.cart-drawer__offers-toggle {
  background: transparent;
  border: 0;
  color: #004884;
  cursor: pointer;
  font-size: .86rem;
  font-weight: 950;
  justify-self: center;
  padding: 0;
}

.cart-drawer__offers {
  border-top: 1px solid #e5e9ee;
  display: grid;
  gap: .45rem;
  padding-top: .55rem;
}

.cart-drawer__offers[hidden] {
  display: none;
}

.cart-drawer__offers-head {
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  gap: .1rem;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 0;
}

.cart-drawer__offers-head strong {
  color: #111;
  font-size: .85rem;
  font-weight: 950;
}

.cart-drawer__offers-head small,
.cart-drawer__offer small,
.cart-drawer__offers-empty {
  color: #6d7480;
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.25;
}

.cart-drawer__offer {
  align-items: center;
  background: #f7fafc;
  border: 1px solid #dce3eb;
  border-radius: 8px;
  color: #101010;
  cursor: pointer;
  display: flex;
  gap: .6rem;
  justify-content: space-between;
  padding: .55rem .6rem;
  text-align: left;
}

.cart-drawer__offer span {
  align-items: start;
  background: transparent;
  border-radius: 0;
  color: inherit;
  display: grid;
  font-size: inherit;
  font-weight: inherit;
  height: auto;
  justify-content: start;
  min-width: 0;
  width: auto;
}

.cart-drawer__offer strong {
  font-size: .82rem;
  font-weight: 950;
}

.cart-drawer__offer em {
  background: #ccff00;
  border: 1px dashed rgba(0,0,0,.34);
  border-radius: 6px;
  color: #101010;
  flex: 0 0 auto;
  font-size: .74rem;
  font-style: normal;
  font-weight: 950;
  padding: .28rem .38rem;
}

.cart-drawer__offer.is-selected {
  background: #f4ffd6;
  border-color: #9ad900;
  box-shadow: 0 0 0 1px rgba(154,217,0,.2);
}

.cart-drawer__offers-empty {
  margin: 0;
}

.cart-drawer__footer {
  background: #fff;
  border-top: 1px solid #e2e5ea;
  display: grid;
  gap: .55rem;
  margin-top: auto;
  padding: .8rem .8rem .7rem;
}

.cart-drawer__subtotal {
  align-items: center;
  color: #050505;
  display: flex;
  font-weight: 950;
  justify-content: space-between;
}

.cart-drawer__subtotal span {
  color: #424242;
  font-size: .98rem;
}

.cart-drawer__subtotal div {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  justify-content: flex-end;
}

.cart-drawer__subtotal s {
  color: #c5c5c5;
  font-size: .88rem;
}

.cart-drawer__subtotal strong {
  color: #484848;
  font-size: 1.18rem;
}

.cart-drawer__saved {
  background: #22c7b8;
  border-radius: 999px;
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
  justify-self: center;
  line-height: 1;
  padding: .28rem 1.4rem;
  text-align: center;
  width: min(82%, 292px);
}

.cart-drawer__footer p {
  color: #6d6d6d;
  font-size: .72rem;
  line-height: 1.35;
  margin: 0;
  text-align: center;
}

.cart-drawer__footer .button {
  background: #28d766;
  border-radius: 8px;
  color: #050505;
  min-height: 54px;
  width: 100%;
}

.kore-marquee {
  background: var(--ink);
  border-bottom: 1px solid var(--accent-line);
  border-top: 1px solid rgba(245, 245, 245, .08);
  color: var(--kore-lime);
  min-height: 42px;
  overflow: hidden;
}

.kore-marquee__track {
  display: flex;
  width: max-content;
  animation: kore-marquee 24s linear infinite;
}

.kore-marquee__group {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.kore-marquee__item {
  align-items: center;
  display: inline-flex;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1;
  min-height: 42px;
  padding: 0 2rem;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
}

.kore-marquee__item::after {
  content: "";
  background: var(--kore-lime);
  height: 5px;
  position: absolute;
  right: -2px;
  width: 5px;
}

.poster-carousel {
  padding: 1rem 0 0;
  position: relative;
}

.poster-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.poster-carousel__track::-webkit-scrollbar {
  display: none;
}

.poster-slide {
  background:
    radial-gradient(circle at 84% 42%, rgba(182,255,0,.08), transparent 34%),
    linear-gradient(110deg, rgba(245,245,245,.055), transparent 58%),
    var(--ink);
  border: 1px solid var(--line);
  display: grid;
  flex: 0 0 100%;
  min-height: 330px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
}

.poster-slide--image-only {
  border: 0;
  height: 330px;
}

@media (min-width: 901px) {
  .kore-marquee {
    display: none;
  }

  .poster-carousel {
    padding-top: 0;
  }

  .poster-slide {
    min-height: clamp(446px, 36.7vw, 640px);
  }

  .poster-slide--image-only {
    height: clamp(446px, 36.7vw, 640px);
  }
}

.poster-slide__link {
  display: block;
  inset: 0;
  position: absolute;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  z-index: 2;
}

.poster-slide__picture {
  display: block;
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.poster-slide__image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: .92;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.poster-slide--image-only .poster-slide__image {
  object-position: center 65%;
}

.poster-slide__content.visually-hidden {
  display: none;
}

.poster-slide__mark {
  bottom: -3rem;
  filter: drop-shadow(0 0 22px rgba(182,255,0,.13));
  max-width: 52%;
  opacity: .34;
  position: absolute;
  right: -2.25rem;
}

.poster-slide__content {
  align-self: center;
  max-width: 620px;
  padding: clamp(1.5rem, 4vw, 3rem);
  pointer-events: none;
  position: relative;
  z-index: 3;
}

.poster-slide__content h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

@media (min-width: 901px) {
  .poster-carousel {
    max-width: none;
    width: 100%;
  }
}

.poster-dots {
  align-items: center;
  background: transparent;
  border: 0;
  bottom: 1.05rem;
  box-shadow: none;
  display: flex;
  font-size: 0;
  gap: .42rem;
  left: 50%;
  line-height: 0;
  outline: 0;
  padding: 0;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}

.poster-dots::before,
.poster-dots::after {
  content: none;
  display: none;
}

.poster-dots span {
  background: rgba(245,245,245,.82);
  border-radius: 999px;
  box-shadow: none;
  display: block;
  flex: 0 0 auto;
  height: 6px;
  line-height: 0;
  width: 6px;
}

.poster-dots .is-active {
  background: var(--kore-lime);
  box-shadow: none;
}

.round-categories {
  padding: .9rem 0 1.5rem;
}

.mobile-trust-strip {
  display: none;
}

.round-categories__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: .65rem;
}

.round-categories__header span {
  color: var(--kore-lime);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.round-categories__header small {
  color: var(--silver);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.round-categories__scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: .4rem .15rem .6rem;
  scroll-padding-left: .15rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.round-categories__scroller::-webkit-scrollbar {
  display: none;
}

.round-category {
  align-items: center;
  color: var(--white);
  display: grid;
  flex: 0 0 104px;
  gap: .45rem;
  justify-items: center;
  scroll-snap-align: start;
  text-align: center;
  transform: translateY(0);
  transition: color .2s ease, transform .24s ease;
}

.round-category__icon {
  align-items: center;
  background: #fff;
  border: 2px solid rgba(182, 255, 0, .68);
  border-radius: 999px;
  display: grid;
  height: 88px;
  justify-items: center;
  overflow: hidden;
  padding: 4px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .24s ease;
  width: 88px;
}

.round-category__icon img {
  height: 100%;
  object-fit: contain;
  transition: transform .24s ease;
  width: 100%;
}

.round-category__icon span {
  align-items: center;
  background: #111;
  border-radius: 999px;
  color: var(--kore-lime);
  display: grid;
  font-size: .75rem;
  font-weight: 950;
  height: 100%;
  width: 100%;
}

.round-category strong {
  font-size: .74rem;
  line-height: 1.15;
  min-height: 2.3em;
}

@media (min-width: 901px) {
  .round-categories {
    padding: .4rem 0 .7rem;
  }

  .round-categories__header {
    display: none;
  }

  .round-categories__scroller {
    align-items: start;
    gap: clamp(1.35rem, 2.1vw, 1.85rem);
    justify-content: center;
    overflow: visible;
    padding: .3rem .55rem .5rem;
    scroll-snap-type: none;
  }

  .round-category {
    flex: 0 0 124px;
    gap: .58rem;
  }

  .round-category__icon {
    border-width: 3px;
    height: 112px;
    padding: 5px;
    width: 112px;
  }

  .round-category__icon span {
    font-size: .86rem;
  }

  .round-category strong {
    font-size: .8rem;
    line-height: 1.08;
    max-width: 114px;
    min-height: 2.16em;
  }
}

.bestsellers {
  margin: 0 auto;
  max-width: var(--max);
  padding: .4rem 0 2.75rem;
  width: min(calc(100% - 3rem), var(--max));
}

.home-row-heading,
.bestsellers__header {
  margin-bottom: 1rem;
}

.home-row-heading p {
  display: none;
}

.home-row-heading h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3.1vw, 2.6rem);
  font-weight: 950;
  line-height: .98;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}

.home-row-heading__more {
  color: var(--kore-lime);
  display: none;
  font-size: .7rem;
  font-weight: 950;
  letter-spacing: .04em;
  margin-top: .45rem;
  text-align: right;
  text-transform: uppercase;
}

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

.bestseller-card {
  background: var(--neutral-surface);
  color: var(--neutral-text);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  transition: box-shadow .2s ease, transform .24s ease;
}

.bestseller-card::after {
  background: var(--kore-lime);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .2s ease;
}

.bestseller-card__media {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.bestseller-card__media img {
  height: 100%;
  object-fit: contain;
  padding: .85rem;
  transition: transform .24s ease;
  width: 100%;
}

.bestseller-card__media--mock {
  background:
    radial-gradient(circle at 52% 62%, rgba(182,255,0,.08), transparent 11rem),
    linear-gradient(145deg, #ffffff, #eeeeea);
}

.bestseller-card__media--mock img {
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .24));
  opacity: .9;
  padding: 1.15rem;
}

.bestseller-card__media--mock b {
  background: rgba(5, 5, 5, .86);
  bottom: 0;
  color: var(--kore-lime);
  display: block;
  font-size: .72rem;
  font-weight: 950;
  left: 0;
  padding: .45rem .5rem;
  position: absolute;
  right: 0;
  text-align: center;
  text-transform: uppercase;
}

.bestseller-card__rating {
  background: #fff;
  border-radius: 999px;
  color: #157d20;
  font-size: .72rem;
  font-weight: 950;
  left: .55rem;
  padding: .28rem .46rem;
  position: absolute;
  top: .55rem;
  z-index: 1;
}

.bestseller-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: .85rem;
}

.bestseller-card__body small {
  color: #555;
  display: block;
  font-size: .68rem;
  font-weight: 950;
  margin-bottom: .35rem;
  min-height: .82rem;
  text-transform: uppercase;
}

.bestseller-card h3 {
  color: #050505;
  display: -webkit-box;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.25;
  margin: 0;
  min-height: 3.75em;
  overflow: hidden;
  text-transform: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.bestseller-card__price {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .32rem;
  margin: .65rem 0 .85rem;
  min-height: 1.75rem;
}

.bestseller-card__price strong {
  color: #050505;
  font-size: 1.05rem;
  font-weight: 950;
}

.bestseller-card__price s {
  color: #9b9b9b;
  font-size: .9rem;
  font-weight: 800;
}

.bestseller-card__price em {
  background: #ff3d2e;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-size: .72rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  padding: .36rem .5rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.bestseller-card button {
  background: var(--kore-lime);
  border: 0;
  color: #050505;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 950;
  margin-top: auto;
  min-height: 48px;
  text-transform: uppercase;
  width: 100%;
}

.bestseller-card button:disabled {
  cursor: not-allowed;
  opacity: 1;
}

.brand-categories {
  margin: 0 auto;
  max-width: var(--max);
  padding: .35rem 0 2.85rem;
  width: min(calc(100% - 3rem), var(--max));
}

.brand-categories__header {
  margin-bottom: 1rem;
}

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

.brand-category-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .025)),
    var(--graphite);
  border: 1px solid rgba(255, 255, 255, .11);
  color: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 286px;
  overflow: hidden;
  padding: 0;
  position: relative;
  transform: translateY(0);
  transition: box-shadow .2s ease, transform .24s ease;
}

.brand-category-card::after {
  background: var(--kore-lime);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .2s ease;
}

.brand-category-card:hover::after {
  transform: scaleX(1);
}

.brand-category-card__media {
  align-items: center;
  aspect-ratio: 1;
  background: #050505;
  display: flex;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-category-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform .24s ease;
  width: 100%;
}

.brand-category-card:hover .brand-category-card__media img {
  transform: scale(1.035);
}

.brand-category-card__mark {
  align-items: center;
  background: #fff;
  color: #050505;
  display: inline-flex;
  font-size: 1.02rem;
  font-weight: 950;
  height: 54px;
  justify-content: center;
  line-height: 1;
  width: 54px;
}

.brand-category-card__content {
  display: grid;
  gap: .35rem;
  padding: .8rem .85rem .95rem;
}

.brand-category-card__meta {
  color: var(--kore-lime);
  font-size: .68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.brand-category-card strong {
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.15;
}

.brand-category-card small {
  color: var(--silver);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.35;
}

.goal-categories {
  margin: 0 auto;
  max-width: var(--max);
  padding: .55rem 0 2.5rem;
  width: min(calc(100% - 3rem), var(--max));
}

.goal-categories__header {
  margin-bottom: 1rem;
}

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

.goal-category-card {
  background:
    linear-gradient(135deg, rgba(182, 255, 0, .12), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, .085), rgba(255, 255, 255, .025)),
    var(--graphite);
  border: 1px solid rgba(255, 255, 255, .11);
  color: var(--white);
  display: grid;
  gap: .85rem;
  min-height: 220px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  transform: translateY(0);
  transition: border-color .2s ease, box-shadow .2s ease, transform .24s ease;
}

.goal-category-card__media {
  aspect-ratio: 1 / .72;
  background: rgba(255, 255, 255, .045);
  display: block;
  margin: -1.25rem -1.25rem .2rem;
  overflow: hidden;
  position: relative;
}

.goal-category-card__media::after {
  background: linear-gradient(180deg, transparent 52%, rgba(14, 14, 14, .82));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.goal-category-card__media img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease;
  width: 100%;
}

.goal-category-card:hover .goal-category-card__media img,
.goal-category-card:focus-visible .goal-category-card__media img {
  transform: scale(1.045);
}

.goal-category-card__content {
  display: grid;
  gap: .65rem;
}

.goal-category-card::after {
  background: var(--kore-lime);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .2s ease;
}

.goal-category-card:hover,
.goal-category-card:focus-visible {
  border-color: rgba(182, 255, 0, .55);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  transform: translateY(-4px);
}

.goal-category-card:hover::after,
.goal-category-card:focus-visible::after {
  transform: scaleX(1);
}

.goal-category-card__kicker {
  color: var(--kore-lime);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.goal-category-card strong {
  color: var(--white);
  font-size: 1.42rem;
  font-weight: 950;
  line-height: 1.08;
  text-transform: uppercase;
}

.goal-category-card small {
  color: var(--silver);
  font-size: .94rem;
  font-weight: 700;
  line-height: 1.35;
}

.country-categories {
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 50% 76%, rgba(182, 255, 0, .13), transparent 24rem),
    #050505;
  background-size: 46px 46px, 46px 46px, auto, auto;
  border: 1px solid rgba(255, 255, 255, .08);
  isolation: isolate;
  margin: 0 auto;
  max-width: var(--max);
  overflow: hidden;
  padding: 2.25rem 1rem 0;
  position: relative;
  width: min(calc(100% - 3rem), var(--max));
}

.country-categories__header {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr);
  margin-bottom: 1.55rem;
}

.country-categories__subtitle {
  border-left: 3px solid var(--kore-lime);
  color: #d8d8d8;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0;
  padding-left: 1rem;
}

.country-categories__grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
  z-index: 2;
}

.country-card {
  background:
    radial-gradient(circle at 78% 44%, rgba(255, 255, 255, .09), transparent 6rem),
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .025)),
    rgba(7, 10, 10, .92);
  border: 1px solid rgba(182, 255, 0, .55);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .12);
  color: var(--white);
  display: grid;
  gap: .8rem;
  min-height: 210px;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  transform: translateY(0);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s cubic-bezier(.2, .8, .2, 1);
}

.country-card::before {
  background:
    linear-gradient(rgba(182, 255, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 0, .045) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  inset: 0;
  opacity: .8;
  position: absolute;
}

.country-card::after {
  background: linear-gradient(90deg, var(--kore-lime), transparent);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .2s ease;
}

.country-card:hover {
  border-color: var(--kore-lime);
  box-shadow: 0 20px 42px rgba(182, 255, 0, .13), 0 18px 42px rgba(0, 0, 0, .46);
  transform: translateY(-7px) scale(1.015);
}

.country-card:hover::after {
  transform: scaleX(1);
}

.country-card__top {
  align-items: center;
  display: flex;
  gap: .72rem;
  position: relative;
  z-index: 2;
}

.country-card__flag-icon {
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 999px;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, .45);
  flex: 0 0 42px;
  height: 42px;
  overflow: hidden;
  width: 42px;
}

.country-card__top strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.08;
}

.country-card small {
  color: #dedede;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.38;
  max-width: 11rem;
  position: relative;
  z-index: 2;
}

.country-card__brands {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.country-card__brands span {
  border: 1px solid rgba(182, 255, 0, .72);
  color: var(--white);
  font-size: .64rem;
  font-weight: 900;
  line-height: 1;
  min-height: 30px;
  padding: .52rem .6rem;
}

.country-card--usa .country-card__flag-icon {
  background:
    linear-gradient(90deg, #23447c 0 40%, transparent 40%),
    repeating-linear-gradient(180deg, #b31942 0 5px, #fff 5px 10px);
}

.country-card--uk .country-card__flag-icon {
  background:
    linear-gradient(35deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(145deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(90deg, transparent 0 42%, #fff 42% 47%, #c8102e 47% 53%, #fff 53% 58%, transparent 58%),
    linear-gradient(180deg, transparent 0 39%, #fff 39% 45%, #c8102e 45% 55%, #fff 55% 61%, transparent 61%),
    #012169;
}

.country-card--europe .country-card__flag-icon {
  background:
    radial-gradient(circle at 50% 24%, #ffcc00 0 2px, transparent 3px),
    radial-gradient(circle at 72% 32%, #ffcc00 0 2px, transparent 3px),
    radial-gradient(circle at 76% 55%, #ffcc00 0 2px, transparent 3px),
    radial-gradient(circle at 61% 74%, #ffcc00 0 2px, transparent 3px),
    radial-gradient(circle at 38% 74%, #ffcc00 0 2px, transparent 3px),
    radial-gradient(circle at 24% 55%, #ffcc00 0 2px, transparent 3px),
    radial-gradient(circle at 28% 32%, #ffcc00 0 2px, transparent 3px),
    #003399;
}

.country-card--germany .country-card__flag-icon {
  background: linear-gradient(180deg, #000 0 33%, #dd0000 33% 66%, #ffce00 66%);
}

.country-card--canada .country-card__flag-icon {
  background:
    linear-gradient(90deg, #d80621 0 25%, transparent 25% 75%, #d80621 75%),
    radial-gradient(circle at 50% 50%, #d80621 0 9px, transparent 10px),
    #fff;
}

.country-map-stage {
  height: clamp(220px, 28vw, 360px);
  margin: -1.7rem -1rem 0;
  overflow: hidden;
  position: relative;
}

.country-map-stage::before {
  background:
    linear-gradient(rgba(182, 255, 0, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 255, 0, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  inset: 0;
  position: absolute;
}

.country-map-stage::after {
  background: linear-gradient(180deg, rgba(5, 5, 5, .12), #050505 86%);
  content: "";
  inset: 0;
  position: absolute;
}

.country-map-art {
  inset: 14% 2% 0;
  opacity: .84;
  position: absolute;
  z-index: 1;
}

.country-map-land {
  background: rgba(182, 255, 0, .18);
  border: 1px solid rgba(182, 255, 0, .42);
  box-shadow: 0 0 18px rgba(182, 255, 0, .18);
  position: absolute;
}

.country-map-land--north-america {
  clip-path: polygon(6% 42%, 20% 22%, 38% 18%, 52% 36%, 45% 58%, 59% 76%, 45% 88%, 28% 72%, 16% 78%, 7% 62%);
  height: 54%;
  left: 2%;
  top: 22%;
  width: 26%;
}

.country-map-land--south-america {
  clip-path: polygon(38% 0, 60% 16%, 70% 40%, 56% 72%, 44% 100%, 24% 82%, 30% 48%, 18% 24%);
  height: 42%;
  left: 24%;
  top: 58%;
  width: 12%;
}

.country-map-land--europe {
  clip-path: polygon(18% 44%, 30% 18%, 55% 14%, 76% 32%, 69% 57%, 48% 66%, 26% 62%);
  height: 30%;
  left: 40%;
  top: 30%;
  width: 16%;
}

.country-map-land--africa {
  clip-path: polygon(40% 0, 70% 20%, 78% 54%, 60% 100%, 30% 86%, 18% 48%);
  height: 46%;
  left: 45%;
  top: 48%;
  width: 15%;
}

.country-map-land--asia {
  clip-path: polygon(4% 34%, 22% 12%, 46% 8%, 70% 20%, 98% 34%, 84% 58%, 92% 78%, 62% 90%, 38% 70%, 10% 74%);
  height: 58%;
  left: 54%;
  top: 28%;
  width: 38%;
}

.country-map-land--australia {
  clip-path: polygon(14% 38%, 38% 20%, 70% 28%, 88% 52%, 66% 76%, 28% 70%);
  height: 24%;
  left: 78%;
  top: 72%;
  width: 14%;
}

.country-map-pin {
  display: block;
  height: 74px;
  position: absolute;
  transform: translate(-50%, -100%);
  width: 42px;
  z-index: 3;
}

.country-map-pin::before {
  background: rgba(182, 255, 0, .25);
  border: 1px solid rgba(182, 255, 0, .72);
  border-radius: 50%;
  bottom: -4px;
  box-shadow: 0 0 18px rgba(182, 255, 0, .65);
  content: "";
  height: 32px;
  left: 5px;
  position: absolute;
  width: 32px;
}

.country-map-pin::after {
  background: var(--kore-lime);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 24px rgba(182, 255, 0, .9);
  content: "";
  height: 36px;
  left: 3px;
  position: absolute;
  top: 2px;
  transform: rotate(-45deg);
  width: 36px;
}

.country-map-pin span {
  background: #050505;
  border-radius: 50%;
  height: 12px;
  left: 15px;
  position: absolute;
  top: 13px;
  width: 12px;
  z-index: 1;
}

.country-map-pin--usa { left: 12%; top: 70%; }
.country-map-pin--canada { left: 16%; top: 47%; }
.country-map-pin--uk { left: 43%; top: 53%; }
.country-map-pin--europe { left: 51%; top: 56%; }
.country-map-pin--germany { left: 53%; top: 52%; }

@media (min-width: 901px) {
  .country-categories__header {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

@keyframes kore-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .kore-marquee__track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .kore-contact-page .kore-info-grid--four {
    grid-template-columns: 1fr;
  }
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .8fr);
  min-height: 620px;
  padding: 3.25rem 0 3.75rem;
}

.eyebrow {
  color: var(--kore-lime);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .14em;
  margin: 0 0 .75rem;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Arial Black", Impact, Inter, sans-serif;
  letter-spacing: 0;
  line-height: .98;
  margin: 0;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 5.8vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.25vw, 3.2rem); }
h3 { font-size: 1rem; line-height: 1.15; }

p { color: #cfcfcf; line-height: 1.65; }

.hero__content > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.page-hero > p:not(.eyebrow) {
  font-size: 1.08rem;
  max-width: 640px;
}

.hero__content h1 {
  max-width: 760px;
}

.hero__actions,
.hero__proof,
.price-row,
.sort-row,
.quantity-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero__actions { margin-top: 1.5rem; }

.button {
  align-items: center;
  background: var(--kore-lime);
  border: 1px solid var(--kore-lime);
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.2rem;
  text-transform: uppercase;
}

.button:hover { background: var(--lime-glow); border-color: var(--lime-glow); }
.button:disabled { cursor: not-allowed; opacity: .45; }

.button--ghost {
  background: transparent;
  color: var(--white);
}

.button--small {
  font-size: .78rem;
  min-height: 40px;
  padding: .65rem .9rem;
}

.hero__proof {
  color: var(--silver);
  margin-top: 1.5rem;
}

.hero__proof span,
.product-trust span {
  align-items: center;
  display: inline-flex;
  gap: .45rem;
}

.hero__visual {
  justify-self: end;
  max-width: 430px;
  padding: 0;
  width: 100%;
}

.hero__visual img {
  filter: drop-shadow(0 0 18px rgba(182, 255, 0, .12));
}

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

.launch-hero {
  align-items: stretch;
  background:
    linear-gradient(105deg, rgba(245, 245, 245, .06), transparent 55%),
    #111;
  border: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  min-height: 420px;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.launch-hero h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 820px;
}

.launch-hero__content > p:not(.eyebrow) {
  font-size: 1.05rem;
  max-width: 680px;
}

.launch-visual {
  align-items: center;
  background: #080808;
  border: 1px solid var(--accent-line);
  display: grid;
  justify-items: center;
  min-height: 320px;
  padding: 2rem;
  position: relative;
}

.launch-visual img {
  filter: drop-shadow(0 0 20px rgba(182, 255, 0, .12));
  max-height: 260px;
}

.launch-visual span {
  bottom: 1rem;
  color: var(--kore-lime);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  position: absolute;
  text-transform: uppercase;
}

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

.launch-card {
  background: #111;
  border: 1px solid var(--line);
  display: grid;
  overflow: hidden;
}

.launch-card__media {
  align-items: center;
  aspect-ratio: 1.22;
  background:
    linear-gradient(145deg, rgba(245,245,245,.055), transparent 52%),
    #0a0a0a;
  display: grid;
  justify-items: center;
}

.launch-card__media span {
  align-items: center;
  border: 1px solid var(--accent-line);
  color: var(--kore-lime);
  display: grid;
  font-size: .84rem;
  font-weight: 950;
  height: 100px;
  justify-content: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 100px;
}

.launch-card__body {
  padding: 1rem;
}

.launch-card small,
.launch-card em {
  color: var(--silver);
  display: block;
  font-size: .72rem;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.launch-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
  margin: .35rem 0;
  text-transform: uppercase;
}

.launch-card p {
  font-size: .9rem;
  margin: 0 0 .9rem;
}

.launch-card em {
  background: rgba(245, 245, 245, .08);
  border: 1px solid var(--accent-line);
  color: var(--kore-lime);
  display: inline-flex;
  padding: .65rem .85rem;
}

.story-panels,
.faq-showcase {
  padding: 3rem 0;
}

.approval-band {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(245,245,245,.07), rgba(182,255,0,.06)),
    #111;
  border: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.approval-stats {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, auto);
}

.approval-stats span,
.audience-list span,
.feature-pill {
  border: 1px solid var(--line);
  color: var(--white);
  font-weight: 900;
  padding: .85rem 1rem;
  text-transform: uppercase;
}

.story-split,
.why-grid,
.faq-showcase {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: .9fr 1.1fr;
  margin-top: 1.25rem;
}

.story-split,
.why-grid {
  background: #0f0f0f;
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.story-visual {
  align-items: center;
  background: #080808;
  display: grid;
  justify-items: center;
  min-height: 280px;
}

.story-visual img {
  max-height: 220px;
}

.feature-list,
.audience-list {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.25rem;
}

.feature-pill {
  align-items: center;
  display: flex;
  gap: .75rem;
}

.feature-pill span {
  color: var(--kore-lime);
  font-size: 1.2rem;
}

.why-grid ul {
  color: #d8d8d8;
  line-height: 1.8;
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.faq-showcase {
  align-items: center;
  border-top: 1px solid var(--line);
  gap: clamp(1.5rem, 4vw, 4rem);
}

.faq-list {
  display: grid;
  gap: .75rem;
  margin-top: 1.25rem;
}

.faq-row {
  background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  position: relative;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.faq-row::before {
  background: var(--kore-lime);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .24s ease;
  width: 3px;
}

.faq-row[open] {
  background: linear-gradient(135deg, rgba(182, 255, 0, .09), rgba(255, 255, 255, .025));
  border-color: rgba(182, 255, 0, .48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .24);
}

.faq-row[open]::before {
  transform: scaleY(1);
}

.faq-row summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: .85rem;
  grid-template-columns: 2rem minmax(0, 1fr) 2.5rem;
  font-weight: 950;
  list-style: none;
  min-height: 68px;
  padding: .75rem .9rem .75rem 1rem;
  text-transform: uppercase;
}

.faq-row summary::-webkit-details-marker {
  display: none;
}

.faq-row__number {
  color: var(--kore-lime);
  font-size: .68rem;
  letter-spacing: .08em;
}

.faq-row__question {
  font-size: .9rem;
  line-height: 1.3;
}

.faq-row__toggle {
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  height: 36px;
  position: relative;
  transition: background .2s ease, border-color .2s ease, transform .24s ease;
  width: 36px;
}

.faq-row__toggle::before,
.faq-row__toggle::after {
  background: currentColor;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .24s ease;
  width: 12px;
}

.faq-row__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-row[open] .faq-row__toggle {
  background: var(--kore-lime);
  border-color: var(--kore-lime);
  color: #050505;
  transform: rotate(180deg);
}

.faq-row[open] .faq-row__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-row__answer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin: 0 1rem 0 3.85rem;
  padding: 0 0 1rem;
}

.faq-row__answer p {
  color: #c9c9c9;
  line-height: 1.65;
  margin: .9rem 0 0;
}

.faq-visual {
  background:
    radial-gradient(circle at 85% 15%, rgba(182, 255, 0, .16), transparent 12rem),
    linear-gradient(145deg, rgba(245,245,245,.055), transparent 55%),
    #0b0b0b;
  border: 1px solid rgba(182, 255, 0, .3);
  min-height: 340px;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.faq-visual img {
  margin: 2rem auto 1.5rem;
  transition: transform .3s ease;
}

.faq-visual:hover img {
  transform: scale(1.025);
}

.faq-visual__label {
  color: var(--kore-lime);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.faq-visual p {
  color: #d8d8d8;
  font-weight: 800;
  line-height: 1.55;
}

.faq-visual a {
  align-items: center;
  color: var(--kore-lime);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 950;
  gap: .45rem;
  margin-top: .7rem;
  min-height: 44px;
  text-transform: uppercase;
}

.faq-visual a span {
  font-size: 1.1rem;
  transition: transform .2s ease;
}

.faq-visual a:hover span,
.faq-visual a:focus-visible span {
  transform: translateX(4px);
}

.shop-sticky-bar {
  align-items: center;
  background: rgba(5, 5, 5, .96);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: .75rem max(1rem, calc((100vw - var(--max)) / 2));
  position: sticky;
  right: 0;
  z-index: 40;
}

.shop-sticky-bar strong,
.shop-sticky-bar span {
  display: block;
}

.shop-sticky-bar span {
  color: var(--silver);
  font-size: .85rem;
}

.trust-bar {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 0 3rem;
}

.trust-item,
.category-card,
.product-card,
.auth-step,
.finder-card,
.rich-card,
.filter-panel,
.cart-line,
.cart-summary {
  background: rgba(18, 18, 18, .92);
  border: 1px solid var(--line);
}

.trust-item {
  align-items: center;
  display: flex;
  gap: 1rem;
  padding: 1.2rem;
}

.trust-item .icon { color: var(--kore-lime); flex: 0 0 auto; }
.trust-item strong, .trust-item span { display: block; }
.trust-item span, .vendor, .product-card small { color: var(--silver); }

.section-wrap,
.auth-panel,
.finder,
.rich-page,
.page-shell,
.collection-shell {
  padding: 3.25rem 0;
}

.kore-breadcrumbs {
  color: var(--silver);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
  margin: 0 0 1.15rem;
  text-transform: uppercase;
}

.kore-breadcrumbs ol {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kore-breadcrumbs li {
  align-items: center;
  display: flex;
  min-width: 0;
}

.kore-breadcrumbs li + li::before {
  color: rgba(182, 255, 0, .7);
  content: "/";
  margin-right: .42rem;
}

.kore-breadcrumbs a {
  color: var(--silver);
  text-decoration: none;
  transition: color .18s ease;
}

.kore-breadcrumbs a:hover,
.kore-breadcrumbs a:focus-visible {
  color: var(--kore-lime);
}

.kore-breadcrumbs span {
  color: var(--white);
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section-heading { margin-bottom: 1.4rem; }
.section-heading--split { align-items: end; display: flex; justify-content: space-between; gap: 1rem; }
.text-link { color: var(--kore-lime); font-weight: 900; text-transform: uppercase; }

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

.category-card,
.finder-card,
.rich-card {
  min-height: 168px;
  padding: 1.25rem;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-card span,
.finder-card span {
  color: var(--kore-lime);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card strong,
.finder-card strong,
.rich-card strong {
  font-size: 1.25rem;
  font-weight: 950;
  text-transform: uppercase;
}

.product-card {
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  transition: box-shadow .2s ease, transform .24s ease;
  will-change: transform;
}

.product-card::after {
  background: var(--kore-lime);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  transform: scaleX(.34);
  transform-origin: left;
  transition: transform .2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .brand-category-card:hover,
  .brand-category-card:focus-visible,
  .bestseller-card:hover,
  .bestseller-card:focus-within,
  .product-card:hover,
  .product-card:focus-within {
    transform: translateY(-7px) scale(1.015);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  }

  .bestseller-card:hover::after,
  .bestseller-card:focus-within::after,
  .product-card:hover::after,
  .product-card:focus-within::after {
    transform: scaleX(1);
  }

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

  .round-category:hover,
  .round-category:focus-visible {
    color: var(--kore-lime);
    transform: translateY(-6px);
  }

  .round-category:hover .round-category__icon,
  .round-category:focus-visible .round-category__icon {
    border-color: var(--kore-lime);
    box-shadow: 0 10px 24px rgba(182, 255, 0, .18);
    transform: scale(1.035);
  }

  .round-category:hover .round-category__icon img,
  .round-category:focus-visible .round-category__icon img {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card,
  .bestseller-card,
  .brand-category-card,
  .round-category,
  .round-category__icon,
  .round-category__icon img,
  .bestseller-card__media img,
  .brand-category-card__media img,
  .product-card__media img,
  .brand-category-card:hover,
  .brand-category-card:focus-visible,
  .bestseller-card:hover,
  .bestseller-card:focus-within,
  .product-card:hover,
  .product-card:focus-within {
    animation: none;
    transition: none;
    transform: none;
  }
}

.product-card__media {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  justify-items: center;
  position: relative;
}

.product-card__media img,
.product-media img {
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  width: 100%;
}

.placeholder-svg {
  color: #2a2a2a;
  height: 70%;
  width: 70%;
}

.product-card__media--mock {
  background:
    linear-gradient(145deg, rgba(245,245,245,.055), transparent 48%),
    #0c0c0c;
}

.mock-product-mark {
  align-items: center;
  border: 1px solid var(--accent-line);
  color: var(--kore-lime);
  display: grid;
  font-size: .8rem;
  font-weight: 950;
  height: 96px;
  justify-content: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 96px;
}

.product-badge {
  background: var(--white);
  color: #050505;
  font-size: .75rem;
  font-weight: 900;
  left: .75rem;
  padding: .35rem .55rem;
  position: absolute;
  top: .75rem;
}

.product-card__body { padding: 1rem; }
.product-card__category { display: none; }
.product-card__flavour { display: none; }
.vendor { font-size: .76rem; font-weight: 900; margin: 0 0 .35rem; text-transform: uppercase; }
.price-row { color: var(--kore-lime); font-weight: 950; margin: .8rem 0; }
.price-row s { color: var(--silver); font-weight: 500; }
.price-row em {
  background: #ff3d2e;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-size: .72rem;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  margin-left: .35rem;
  padding: .36rem .5rem;
  text-transform: uppercase;
  white-space: nowrap;
}
.quick-add .button { width: 100%; }

.auth-panel {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 2rem;
  grid-template-columns: .8fr 1.2fr;
}

.auth-steps { display: grid; gap: 1rem; }
.auth-step { display: grid; gap: .5rem; grid-template-columns: auto 1fr; padding: 1.25rem; }
.auth-step span { color: var(--kore-lime); font-weight: 950; }
.auth-step p { grid-column: 2; margin: 0; }

.finder {
  border-top: 1px solid var(--line);
}

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

.collection-header,
.page-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
}

.collection-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 260px 1fr;
}

.collection-shell .product-grid {
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-shell .product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.collection-shell .product-card__media {
  flex: 0 0 auto;
}

.collection-shell .product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.collection-shell .vendor {
  min-height: 1.05rem;
}

.collection-shell .product-card h3 {
  display: -webkit-box;
  line-height: 1.18;
  margin: 0;
  min-height: 3.55em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.collection-shell .price-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  min-height: 1.9rem;
}

.collection-shell .quick-add {
  margin-top: auto;
}

.collection-shell .quick-add .button {
  min-height: 44px;
}

.filter-panel { align-self: start; padding: 1rem; position: sticky; top: 112px; }
.filter-panel h2 { font-size: 1.15rem; margin-bottom: 1rem; }
.filter-group { border-top: 1px solid var(--line); padding: .8rem 0; }
.filter-group summary { cursor: pointer; font-weight: 900; }
.filter-option { align-items: center; color: #d6d6d6; display: flex; gap: .5rem; margin: .65rem 0; }

.sort-row {
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.collection-mobile-toolbar {
  display: none;
}

.pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 2rem 0 0;
}

.pagination > span {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  justify-content: center;
}

.pagination a,
.pagination .current,
.pagination .deco {
  align-items: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  color: var(--white);
  display: inline-flex;
  font-size: .9rem;
  font-weight: 950;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 .8rem;
}

.pagination .current {
  background: var(--kore-lime);
  border-color: var(--kore-lime);
  color: #050505;
}

.pagination .prev,
.pagination .next {
  border-radius: 999px;
  min-width: 82px;
}

.collection-filter-drawer-shell {
  inset: 0;
  position: fixed;
  z-index: 112;
}

.collection-filter-overlay {
  background: rgba(0, 0, 0, .56);
  border: 0;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .28s ease;
}

.collection-filter-drawer {
  background: #f7f7f7;
  color: #252525;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  margin-left: auto;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  transform: translateX(104%);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
  width: min(82vw, 430px);
  z-index: 1;
}

.collection-filter-drawer-shell.is-open .collection-filter-overlay {
  opacity: 1;
}

.collection-filter-drawer-shell.is-open .collection-filter-drawer {
  transform: translateX(0);
}

.collection-filter-drawer__header {
  align-items: center;
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  justify-content: space-between;
  min-height: 86px;
  padding: 1.1rem 1.25rem;
  text-align: center;
}

.collection-filter-drawer__header div {
  flex: 1;
}

.collection-filter-drawer__header h2 {
  color: #141414;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.2;
  margin: 0;
  text-transform: none;
}

.collection-filter-drawer__header p {
  color: #555;
  font-size: .92rem;
  margin: .35rem 0 0;
}

.collection-filter-drawer__header button {
  background: transparent;
  border: 0;
  color: #202020;
  cursor: pointer;
  height: 44px;
  padding: 0;
  width: 44px;
}

.collection-filter-drawer__body {
  display: grid;
  gap: .2rem;
  overflow-y: auto;
  padding: 2.6rem 1.7rem 1rem;
}

.collection-filter-group {
  border: 0;
}

.collection-filter-group summary {
  align-items: center;
  color: #333;
  cursor: pointer;
  display: flex;
  font-size: 1.25rem;
  font-weight: 500;
  justify-content: space-between;
  list-style: none;
  padding: .9rem 0;
}

.collection-filter-group summary::-webkit-details-marker {
  display: none;
}

.collection-filter-group b {
  font-size: 1.45rem;
  font-weight: 400;
}

.collection-filter-group div {
  display: grid;
  gap: .65rem;
  padding: .2rem 0 .9rem;
}

.collection-filter-drawer .filter-option {
  color: #333;
  font-size: .95rem;
}

.collection-filter-sort {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr minmax(150px, 190px);
  margin-top: 1rem;
}

.collection-filter-sort label {
  color: #333;
  font-size: 1.25rem;
  font-weight: 500;
}

.collection-filter-sort select {
  background: #f7f7f7;
  border: 2px solid #6f6f6f;
  color: #333;
  min-height: 58px;
}

.collection-filter-drawer__footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid #e2e2e2;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
  padding: 1.15rem 1.6rem;
}

.collection-filter-drawer__footer a {
  color: #333;
  font-size: 1.08rem;
  font-weight: 500;
  text-align: center;
}

.collection-filter-drawer__footer .button {
  background: #111;
  border-radius: 8px;
  color: #fff;
  min-height: 58px;
}

select,
.quantity-row input {
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: var(--white);
  min-height: 42px;
  padding: .65rem .8rem;
}

.product-page-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: 3rem 0 4.5rem;
  width: min(calc(100% - 3rem), var(--max));
}

.product-shell {
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
  display: grid;
  align-items: start;
  gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  padding: clamp(1rem, 2vw, 1.5rem);
}

.product-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 72px minmax(0, 1fr);
}

.product-media-wrap {
  position: sticky;
  top: 112px;
}

.product-thumbs {
  display: grid;
  gap: .75rem;
  align-content: start;
}

.product-thumb {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, .14);
  display: grid;
  justify-items: center;
  padding: .35rem;
}

.product-thumb.is-active {
  border-color: var(--kore-lime);
  box-shadow: 0 0 0 1px rgba(182, 255, 0, .42);
}

.product-thumb img,
.product-thumb .placeholder-svg {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.product-media {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, .12);
  display: grid;
  min-height: 520px;
  place-items: center;
}

.product-media img,
.product-media .placeholder-svg {
  height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 2vw, 2rem);
  width: 100%;
}

.product-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
  padding-bottom: .9rem;
}

.product-title {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 950;
  line-height: 1.14;
  max-width: 620px;
  text-transform: none;
  text-wrap: balance;
}

.product-stock {
  color: var(--kore-lime);
  font-size: .82rem;
  font-weight: 850;
  line-height: 1.4;
  margin: .5rem 0 0;
}

.product-stock::before {
  background: var(--kore-lime);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: .48rem;
  margin-right: .45rem;
  vertical-align: .03rem;
  width: .48rem;
}

.product-stock--out { color: #ff6b6b; }
.product-stock--out::before { background: #ff6b6b; }

.price-row--large {
  border-bottom: 1px solid var(--line);
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  margin: 0 0 1rem;
  padding-bottom: 1rem;
}

.price-row--large span {
  color: var(--white);
}

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

.product-facts div {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  min-width: 0;
  padding: .8rem;
}

.product-facts span,
.product-content-card__header span {
  color: var(--kore-lime);
  display: block;
  font-size: .68rem;
  font-weight: 950;
  margin-bottom: .3rem;
  text-transform: uppercase;
}

.product-facts strong {
  display: block;
  font-size: .86rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.product-trust {
  display: grid;
  gap: .55rem;
  margin: 1rem 0;
  color: #d7d7d7;
}

.product-trust span {
  align-items: center;
  display: flex;
  gap: .55rem;
  line-height: 1.35;
}

.product-trust .icon { color: var(--kore-lime); }

.product-form {
  background: transparent;
  border: 1px solid var(--line);
  display: grid;
  gap: .9rem;
  margin: 1rem 0;
  padding: 1rem;
}

.product-form select,
.product-form input { width: 100%; }

.product-actions {
  align-items: end;
  display: grid;
  gap: .8rem;
  grid-template-columns: 128px minmax(0, 1fr);
}

.product-quantity {
  align-items: stretch;
  display: grid;
  gap: .4rem;
}

.product-quantity label {
  color: var(--silver);
  font-size: .74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-submit {
  min-height: 46px;
  width: 100%;
}

.product-buy-now {
  margin-top: .1rem;
}

.shopify-payment-button__button {
  background: var(--kore-lime) !important;
  border: 0 !important;
  color: #050505 !important;
  font-weight: 950 !important;
  min-height: 46px !important;
  text-transform: uppercase !important;
}

.shopify-payment-button__button:hover {
  background: var(--lime-glow) !important;
}

.secure-checkout {
  align-items: center;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  display: grid;
  gap: .25rem .7rem;
  grid-template-columns: auto 1fr;
  margin-top: 1rem;
  padding: .85rem;
}

.secure-checkout .icon {
  color: var(--kore-lime);
  grid-row: span 2;
}

.secure-checkout strong {
  font-size: .86rem;
  line-height: 1.2;
}

.secure-checkout small {
  color: var(--silver);
  line-height: 1.4;
}

.product-content-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  margin-top: 1.5rem;
}

.product-tabs {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 1rem;
}

.product-tabs a {
  color: var(--silver);
  font-size: .78rem;
  font-weight: 950;
  padding-bottom: .35rem;
  text-transform: uppercase;
}

.product-tabs a.is-active {
  border-bottom: 2px solid var(--kore-lime);
  color: var(--kore-lime);
}

.product-tab-panel {
  padding: 0 1rem 1rem;
}

.product-content-card__header {
  padding: 1rem 0 .4rem;
}

.product-content-card__header h2 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.05;
}

.product-description-rte {
  padding: 0 0 .5rem;
}

.product-description-rte h2,
.product-description-rte h3 {
  border-top: 1px solid rgba(245, 245, 245, .1);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.15;
  margin: 1rem 0 .55rem;
  padding-top: 1rem;
}

.product-description-rte h2:first-child,
.product-description-rte h3:first-child {
  border-top: 0;
  margin-top: .85rem;
  padding-top: 0;
}

.product-description-rte p {
  color: #d8d8d8;
  font-size: .95rem;
  line-height: 1.65;
  margin: 0 0 .85rem;
}

.product-description-rte ul {
  display: grid;
  gap: .45rem;
  list-style: none;
  margin: .7rem 0 1rem;
  padding: 0;
}

.product-description-rte li {
  color: #d8d8d8;
  font-size: .92rem;
  line-height: 1.45;
  padding-left: 1.2rem;
  position: relative;
}

.product-description-rte li::before {
  background: var(--kore-lime);
  content: "";
  height: .38rem;
  left: 0;
  position: absolute;
  top: .55rem;
  width: .38rem;
}

.product-care {
  margin-top: .7rem;
}

.product-policy-panel {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.product-policy-panel h2,
.product-disclaimer h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.2;
  text-transform: uppercase;
}

.product-policy-panel p,
.product-disclaimer p {
  color: #d8d8d8;
  font-size: .92rem;
  line-height: 1.65;
}

.product-disclaimer {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line);
  margin-top: 1.5rem;
  padding: 1.1rem;
}

.accordion details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.accordion summary {
  cursor: pointer;
  font-weight: 950;
  text-transform: uppercase;
}

.sticky-atc {
  align-items: center;
  background: rgba(5,5,5,.94);
  border-top: 1px solid var(--line);
  bottom: 0;
  display: none;
  justify-content: space-between;
  left: 0;
  padding: .75rem 1rem;
  position: fixed;
  right: 0;
  z-index: 45;
}

.bsn-product-page {
  margin: 0 auto;
  max-width: 1180px;
  padding: 3rem 0 4.5rem;
  width: min(calc(100% - 3rem), 1180px);
}

.bsn-product-card,
.bsn-product-info-card,
.bsn-product-disclaimer {
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
}

.bsn-product-card {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 58%) minmax(380px, 42%);
  overflow: hidden;
}

.bsn-product-gallery {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  grid-template-columns: 68px minmax(0, 1fr);
  min-width: 0;
  padding: 1.25rem;
}

.bsn-product-thumbs {
  align-content: start;
  display: grid;
  gap: .75rem;
}

.bsn-product-thumb {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, .16);
  cursor: pointer;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: .35rem;
}

.bsn-product-thumb.is-active {
  border-color: var(--kore-lime);
  box-shadow: 0 0 0 2px rgba(182, 255, 0, .38);
}

.bsn-product-thumb img,
.bsn-product-thumb .placeholder-svg {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.bsn-product-media {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(5, 5, 5, .12);
  cursor: zoom-in;
  display: grid;
  justify-items: center;
  min-height: 0;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.bsn-product-media img,
.bsn-product-media .placeholder-svg {
  height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 2vw, 2rem);
  transform-origin: center;
  transition: transform .18s ease;
  width: 100%;
}

.bsn-product-media.is-zooming img {
  transform: scale(1.85);
}

body.media-lightbox-open {
  overflow: hidden;
}

.bsn-media-lightbox {
  align-items: center;
  background: rgba(0, 0, 0, .94);
  display: grid;
  inset: 0;
  opacity: 0;
  position: fixed;
  transition: opacity .18s ease;
  z-index: 120;
}

.bsn-media-lightbox.is-open {
  opacity: 1;
}

.bsn-media-lightbox__track {
  display: flex;
  height: 100dvh;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y pinch-zoom;
  width: 100vw;
  -webkit-overflow-scrolling: touch;
}

.bsn-media-lightbox__track::-webkit-scrollbar {
  display: none;
}

.bsn-media-lightbox__slide {
  align-items: center;
  display: grid;
  flex: 0 0 100%;
  height: 100%;
  justify-items: center;
  margin: 0;
  overflow: auto;
  padding: clamp(1rem, 4vw, 4rem);
  scroll-snap-align: center;
  touch-action: pan-x pan-y pinch-zoom;
}

.bsn-media-lightbox__slide img {
  height: auto;
  max-height: 92dvh;
  max-width: 92vw;
  object-fit: contain;
  touch-action: pan-x pan-y pinch-zoom;
  user-select: none;
  width: auto;
}

.bsn-media-lightbox__close,
.bsn-media-lightbox__nav {
  align-items: center;
  background: rgba(5, 5, 5, .72);
  border: 1px solid rgba(182, 255, 0, .36);
  color: var(--white);
  cursor: pointer;
  display: grid;
  justify-items: center;
  position: fixed;
  z-index: 2;
}

.bsn-media-lightbox__close {
  height: 44px;
  right: 1rem;
  top: 1rem;
  width: 44px;
}

.bsn-media-lightbox__close:hover,
.bsn-media-lightbox__nav:hover {
  background: var(--kore-lime);
  color: #050505;
}

.bsn-media-lightbox__nav {
  font-size: 2.8rem;
  height: 58px;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
}

.bsn-media-lightbox__nav--prev {
  left: 1rem;
}

.bsn-media-lightbox__nav--next {
  right: 1rem;
}

.bsn-media-lightbox__count {
  background: rgba(5, 5, 5, .72);
  border: 1px solid rgba(182, 255, 0, .28);
  bottom: 1rem;
  color: var(--kore-lime);
  font-size: .76rem;
  font-weight: 950;
  left: 50%;
  padding: .45rem .7rem;
  position: fixed;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 2;
}

.bsn-product-summary {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 1.35rem;
}

.bsn-product-heading {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.bsn-product-vendor {
  color: var(--silver);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0 0 .45rem;
  text-transform: uppercase;
}

.bsn-product-title {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  font-weight: 950;
  line-height: 1.14;
  margin: 0;
  max-width: 580px;
  text-transform: none;
}

.product-wishlist-button {
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(182, 255, 0, .34);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 950;
  gap: .42rem;
  min-height: 38px;
  padding: .55rem .7rem;
  text-transform: uppercase;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
  white-space: nowrap;
}

.product-wishlist-button--media {
  background: transparent;
  border-color: transparent;
  color: #fff;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: .8rem;
  top: .8rem;
  width: 42px;
  z-index: 3;
}

.product-wishlist-button .icon {
  height: 18px;
  width: 18px;
}

.product-wishlist-button--media .icon {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .55));
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.15;
  width: 24px;
}

.bsn-mobile-buy-strip {
  display: none;
}

.product-wishlist-button:hover,
.product-wishlist-button.is-active {
  background: var(--kore-lime);
  border-color: var(--kore-lime);
  color: #050505;
  transform: translateY(-1px);
}

.product-wishlist-button.is-active .icon {
  fill: currentColor;
}

.product-wishlist-button--media:hover {
  background: transparent;
  border-color: transparent;
  color: var(--kore-lime);
  transform: translateY(-1px);
}

.product-wishlist-button--media.is-active {
  background: transparent;
  border-color: transparent;
  color: var(--kore-lime);
}

.product-wishlist-button--media.is-active .icon {
  fill: var(--kore-lime);
  stroke: var(--kore-lime);
}

.bsn-product-stock {
  border-bottom: 1px solid var(--line);
  color: var(--kore-lime);
  font-size: .8rem;
  font-weight: 900;
  margin: .55rem 0 0;
  padding-bottom: 1rem;
}

.bsn-product-stock::before {
  background: var(--kore-lime);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: .44rem;
  margin-right: .45rem;
  vertical-align: .05rem;
  width: .44rem;
}

.bsn-product-stock--out { color: #ff6b6b; }
.bsn-product-stock--out::before { background: #ff6b6b; }

.bsn-product-price {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  padding: 1rem 0;
}

.bsn-product-price strong {
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1;
}

.bsn-product-price s {
  color: var(--silver);
  font-weight: 600;
}

.bsn-discount-badge {
  background: #ff3d2e;
  border-radius: 0;
  color: #fff;
  display: inline-flex;
  font-size: .72rem;
  font-weight: 950;
  line-height: 1;
  padding: .36rem .5rem;
  text-transform: uppercase;
}

.bsn-product-facts {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1rem 0 0;
}

.bsn-product-facts div {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line);
  min-width: 0;
  padding: .8rem;
}

.bsn-product-facts span,
.bsn-section-kicker {
  color: var(--kore-lime);
  display: block;
  font-size: .66rem;
  font-weight: 950;
  margin: 0 0 .32rem;
  text-transform: uppercase;
}

.bsn-product-facts strong {
  display: block;
  font-size: .86rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.bsn-product-trust {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: .55rem;
  padding: 1rem 0;
}

.bsn-product-trust span {
  align-items: center;
  color: #d8d8d8;
  display: flex;
  gap: .55rem;
  line-height: 1.35;
}

.bsn-product-trust .icon {
  color: var(--kore-lime);
  flex: 0 0 auto;
}

.bsn-product-form {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: .8rem;
  padding: 1rem 0;
}

.bsn-product-form select,
.bsn-product-form input {
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: var(--white);
  min-height: 46px;
  padding: .65rem .8rem;
  width: 100%;
}

.bsn-product-actions {
  align-items: end;
  display: grid;
  gap: .8rem;
  grid-template-columns: 96px minmax(0, 1fr);
}

.bsn-product-quantity {
  display: grid;
  gap: .4rem;
}

.bsn-product-quantity label,
.bsn-product-form > label {
  color: var(--silver);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bsn-product-submit {
  box-shadow: 0 0 0 rgba(182, 255, 0, 0);
  height: 46px;
  min-height: 46px;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease;
  width: 100%;
}

.bsn-product-submit:hover {
  background: var(--lime-glow);
  box-shadow: 0 0 18px rgba(182, 255, 0, .34);
  transform: translateY(-1px);
}

.bsn-quantity-stepper {
  align-items: stretch;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  height: 46px;
}

.bsn-quantity-stepper button {
  align-items: center;
  background: #0d0d0d;
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: grid;
  font-size: 1rem;
  font-weight: 950;
  justify-items: center;
  line-height: 1;
  padding: 0;
}

.bsn-quantity-stepper button:hover {
  background: var(--kore-lime);
  color: #050505;
}

.bsn-quantity-stepper input {
  -moz-appearance: textfield;
  border: 0;
  min-height: 0;
  padding: 0 .25rem;
  text-align: center;
}

.bsn-quantity-stepper input::-webkit-inner-spin-button,
.bsn-quantity-stepper input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bsn-product-buy-now .shopify-payment-button__button {
  background: var(--kore-lime) !important;
  color: #050505 !important;
  font-weight: 950 !important;
  min-height: 46px !important;
  text-transform: uppercase !important;
}

.bsn-secure-checkout {
  align-items: center;
  display: grid;
  gap: .75rem;
  grid-template-columns: auto 1fr;
  padding-top: 1rem;
}

.bsn-secure-checkout .icon {
  color: var(--kore-lime);
}

.bsn-secure-checkout strong {
  display: block;
  font-size: .86rem;
  line-height: 1.2;
}

.bsn-secure-checkout small {
  color: var(--silver);
  display: block;
  line-height: 1.4;
  margin-top: .15rem;
}

.bsn-product-info-card,
.bsn-product-disclaimer {
  margin-top: 1.5rem;
}

.bsn-product-tabs {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 2rem;
  justify-content: center;
  padding: 1rem;
}

.bsn-product-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--silver);
  cursor: pointer;
  display: inline-flex;
  font-size: .76rem;
  font-weight: 950;
  min-height: 44px;
  padding-bottom: .35rem;
  text-transform: uppercase;
}

.bsn-product-tabs button.is-active {
  border-bottom: 2px solid var(--kore-lime);
  color: var(--kore-lime);
}

.bsn-product-panel {
  padding: 1rem 1.25rem 1.2rem;
}

.bsn-product-panel--bordered {
  border-top: 1px solid var(--line);
}

.bsn-product-panel h2,
.bsn-product-disclaimer h2 {
  color: var(--kore-lime);
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.1;
}

.bsn-product-description h2,
.bsn-product-description h3 {
  border-top: 1px solid rgba(245, 245, 245, .1);
  color: var(--kore-lime);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.18;
  margin: 1rem 0 .55rem;
  padding-top: 1rem;
}

.bsn-product-description h2:first-child,
.bsn-product-description h3:first-child {
  border-top: 0;
  margin-top: .85rem;
  padding-top: 0;
}

.bsn-description-cards {
  border-top: 1px solid rgba(245, 245, 245, .1);
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 1rem 0;
  padding-top: 1rem;
  width: 100%;
}

.bsn-description-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(182, 255, 0, .28);
  min-width: 0;
  padding: 1rem;
  width: 100%;
}

.bsn-description-card h2,
.bsn-description-card h3 {
  border-top: 0;
  margin: 0 0 .75rem;
  padding-top: 0;
}

.bsn-description-card ul {
  margin-bottom: 0;
}

.bsn-product-description p,
.bsn-product-panel p,
.bsn-product-disclaimer p {
  color: #d8d8d8;
  font-size: .92rem;
  line-height: 1.65;
}

.bsn-product-description ul {
  display: grid;
  gap: .42rem;
  list-style: none;
  margin: .65rem 0 1rem;
  padding: 0;
}

.bsn-product-description li {
  color: #d8d8d8;
  font-size: .9rem;
  line-height: 1.45;
  padding-left: 1.1rem;
  position: relative;
}

.bsn-product-description li::before {
  background: var(--kore-lime);
  content: "";
  height: .36rem;
  left: 0;
  position: absolute;
  top: .54rem;
  width: .36rem;
}

.bsn-product-note-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1rem;
}

.bsn-product-note {
  align-items: start;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(182, 255, 0, .28);
  display: grid;
  gap: .75rem;
  grid-template-columns: auto 1fr;
  padding: .9rem;
}

.bsn-product-note .icon {
  color: var(--kore-lime);
  height: 28px;
  width: 28px;
}

.bsn-product-note h3 {
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .86rem;
  line-height: 1.2;
  margin: 0 0 .35rem;
  text-transform: uppercase;
}

.bsn-product-note p {
  color: #cfcfcf;
  font-size: .82rem;
  line-height: 1.5;
  margin: 0;
}

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

.bsn-shipping-card {
  align-items: start;
  background: rgba(255, 255, 255, .032);
  border: 1px solid rgba(182, 255, 0, .28);
  display: grid;
  gap: .8rem;
  grid-template-columns: auto 1fr;
  min-width: 0;
  padding: 1rem;
}

.bsn-shipping-card--wide {
  grid-row: span 2;
}

.bsn-shipping-card .icon {
  color: var(--kore-lime);
  height: 27px;
  width: 27px;
}

.bsn-shipping-card h2 {
  color: var(--kore-lime);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: .92rem;
  font-weight: 950;
  line-height: 1.2;
  margin: 0 0 .45rem;
  text-transform: uppercase;
}

.bsn-shipping-card p {
  color: #d7d7d7;
  font-size: .86rem;
  line-height: 1.58;
  margin: 0;
}

.bsn-shipping-card p + p {
  border-top: 1px solid rgba(245, 245, 245, .08);
  margin-top: .65rem;
  padding-top: .65rem;
}

.bsn-product-disclaimer {
  padding: 1.1rem 1.25rem;
}

.rte {
  color: #d6d6d6;
  line-height: 1.7;
}

.page-content {
  max-width: 760px;
}

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

.customer-page {
  margin: 0 auto;
  padding: 3rem 0 4rem;
  width: min(calc(100% - 3rem), 1180px);
}

.customer-page-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(260px, .82fr) minmax(0, 1.18fr);
}

.customer-page-card,
.customer-login-gate {
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .025));
  border: 1px solid var(--line);
  min-width: 0;
  padding: 1.1rem;
}

.customer-login-gate {
  max-width: 560px;
}

.customer-page-card h2,
.customer-login-gate h2 {
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.15;
  margin: 0 0 .6rem;
  text-transform: none;
}

.customer-page-card p,
.customer-login-gate p {
  color: #d8d8d8;
  line-height: 1.6;
  margin: 0 0 1rem;
}

.customer-page-card__header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.customer-page-card__header h2 {
  margin: 0;
}

.customer-page-card__header > a,
.contact-methods a,
.order-card a,
.wishlist-item button {
  color: var(--kore-lime);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-methods {
  display: grid;
  gap: .5rem;
}

.contact-form {
  display: grid;
  gap: .7rem;
}

.contact-form label {
  color: var(--silver);
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: var(--white);
  min-height: 46px;
  padding: .75rem .8rem;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  background: rgba(182, 255, 0, .1);
  border: 1px solid rgba(182, 255, 0, .3);
  color: var(--kore-lime);
  font-weight: 850;
  padding: .75rem;
}

.form-status--error {
  background: rgba(255, 61, 46, .1);
  border-color: rgba(255, 61, 46, .35);
  color: #ff6b6b;
}

.kore-info-page {
  margin: 0 auto;
  padding: 3.2rem 0 5rem;
  width: min(calc(100% - 3rem), 1180px);
}

.kore-info-hero {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(182,255,0,.9) 0 3px, transparent 3px),
    radial-gradient(circle at 82% 35%, rgba(182,255,0,.11), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018));
  border: 1px solid rgba(182,255,0,.18);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 1.2rem;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(1.4rem, 4vw, 3rem);
  position: relative;
}

.kore-info-hero::after {
  border: 1px solid rgba(255,255,255,.04);
  content: "";
  inset: 1rem;
  pointer-events: none;
  position: absolute;
}

.kore-info-hero__content {
  position: relative;
  z-index: 1;
}

.kore-info-hero h1,
.kore-info-heading h2,
.kore-voice-panel h2,
.kore-contact-panel h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.8vw, 4.25rem);
  line-height: .98;
  margin: 0;
  max-width: 920px;
  text-transform: uppercase;
}

.kore-info-hero p:not(.eyebrow),
.kore-info-heading,
.kore-info-card p,
.kore-goal-icon-card p,
.kore-promise-strip p,
.kore-voice-panel p,
.kore-contact-panel p,
.kore-photo-guidance p {
  color: #cfcfcf;
  line-height: 1.6;
}

.kore-info-hero p:not(.eyebrow) {
  font-size: clamp(.98rem, 1.6vw, 1.14rem);
  margin-bottom: 0;
  max-width: 720px;
}

.kore-info-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: 1.35rem;
}

.kore-info-hero__tags span {
  background: rgba(182,255,0,.06);
  border: 1px solid rgba(182,255,0,.25);
  color: #e5e5e5;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .06em;
  padding: .52rem .68rem;
  text-transform: uppercase;
}

.kore-info-hero__mark {
  opacity: .2;
  position: relative;
  width: min(28vw, 250px);
  z-index: 1;
}

.kore-info-hero__mark img {
  display: block;
  width: 100%;
}

.kore-info-hero__icon {
  align-items: center;
  background: #151515;
  border: 1px solid rgba(182,255,0,.24);
  display: inline-flex;
  height: 112px;
  justify-content: center;
  width: 112px;
  position: relative;
  z-index: 1;
}

.kore-info-hero__icon .icon {
  color: var(--kore-lime);
  height: 48px;
  width: 48px;
}

.kore-info-block {
  padding-top: 2.2rem;
}

.kore-info-heading {
  align-items: end;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .45rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
}

.kore-info-heading h2,
.kore-voice-panel h2,
.kore-contact-panel h2 {
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  line-height: 1.05;
}

.kore-info-grid,
.kore-goal-icon-grid {
  display: grid;
  gap: .8rem;
}

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

.kore-info-card,
.kore-goal-icon-card,
.kore-promise-strip,
.kore-voice-panel,
.kore-contact-panel,
.kore-contact-form-card {
  background: #151515;
  border: 1px solid rgba(255,255,255,.1);
}

.kore-info-card,
.kore-goal-icon-card {
  color: inherit;
  display: grid;
  gap: .9rem;
  min-height: 224px;
  padding: 1.2rem;
  position: relative;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.kore-info-card::after,
.kore-goal-icon-card::after {
  background: var(--kore-lime);
  bottom: -1px;
  content: "";
  height: 2px;
  left: -1px;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
  width: calc(100% + 2px);
}

.kore-info-card:hover,
.kore-goal-icon-card:hover {
  border-color: rgba(182,255,0,.5);
  box-shadow: 0 0 0 1px rgba(182,255,0,.12), 0 16px 34px rgba(0,0,0,.32);
  transform: translateY(-2px);
}

.kore-info-card:hover::after,
.kore-goal-icon-card:hover::after {
  transform: scaleX(1);
}

.kore-info-card__top {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.kore-info-card__number,
.kore-goal-icon-card__arrow {
  color: #707070;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.kore-goal-icon-card__arrow {
  color: var(--kore-lime);
  font-size: 1.15rem;
  transition: transform .2s ease;
}

.kore-goal-icon-card:hover .kore-goal-icon-card__arrow {
  transform: translate(2px, -2px);
}

.kore-info-icon {
  align-items: center;
  background: #1d1d1d;
  border: 1px solid rgba(182,255,0,.22);
  color: var(--kore-lime);
  display: inline-flex;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.kore-info-icon .icon {
  height: 22px;
  width: 22px;
}

.kore-info-card h3,
.kore-goal-icon-card strong,
.kore-promise-strip strong {
  color: var(--white);
  font-size: .98rem;
  font-weight: 950;
  line-height: 1.18;
  text-transform: uppercase;
}

.kore-info-card p,
.kore-goal-icon-card p,
.kore-promise-strip p {
  font-size: .88rem;
  margin: 0;
}

.kore-goal-icon-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.kore-goal-icon-card {
  min-height: 205px;
}

.kore-promise-strip {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
  padding: 1.2rem;
}

.kore-promise-strip article {
  align-items: center;
  display: grid;
  gap: .8rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: .35rem;
}

.kore-promise-strip article + article {
  border-left: 1px solid rgba(255,255,255,.1);
  padding-left: 1.2rem;
}

.kore-voice-panel {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr);
  margin-top: 1rem;
  background:
    linear-gradient(115deg, rgba(182,255,0,.08), transparent 42%),
    #151515;
  margin-top: 1.2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.kore-contact-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(290px, .74fr) minmax(0, 1.26fr);
  margin-top: 1.2rem;
}

.kore-contact-panel,
.kore-contact-form-card {
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.kore-contact-panel {
  align-content: space-between;
  display: grid;
  gap: 1.5rem;
}

.kore-contact-panel h2 {
  margin-bottom: .85rem;
}

.kore-contact-panel .eyebrow {
  color: var(--kore-lime);
}

.kore-contact-panel > div:first-child > p:last-child {
  margin-bottom: 0;
}

.contact-methods {
  gap: .65rem;
}

.contact-methods a {
  align-items: center;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .75rem;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 64px;
  padding: .7rem;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease;
}

.contact-methods a:hover {
  background: rgba(182,255,0,.06);
  border-color: rgba(182,255,0,.4);
}

.contact-methods small,
.contact-methods strong {
  display: block;
}

.contact-methods small {
  color: #8d8d8d;
  font-size: .62rem;
  letter-spacing: .07em;
  margin-bottom: .15rem;
}

.contact-methods strong {
  color: var(--white);
  font-size: .8rem;
  overflow-wrap: anywhere;
}

.contact-methods .kore-info-icon {
  height: 40px;
  width: 40px;
}

.kore-contact-form-card__header {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .8rem;
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
}

.kore-contact-form-card__header h2 {
  color: var(--white);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.kore-contact-form-card__header .eyebrow {
  margin-bottom: .25rem;
}

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

.kore-contact-form__field {
  display: grid;
  gap: .38rem;
}

.kore-contact-form__field--wide {
  grid-column: 1 / -1;
}

.kore-contact-form input,
.kore-contact-form select,
.kore-contact-form textarea {
  border-color: rgba(255,255,255,.14);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.kore-contact-form input:focus,
.kore-contact-form select:focus,
.kore-contact-form textarea:focus {
  border-color: rgba(182,255,0,.7);
  box-shadow: 0 0 0 3px rgba(182,255,0,.08);
  outline: none;
}

.kore-contact-form .button {
  align-items: center;
  display: flex;
  gap: .75rem;
  justify-content: space-between;
  margin-top: .35rem;
  min-height: 50px;
}

.kore-authenticate-hero__seal {
  align-items: center;
  color: var(--kore-lime);
  display: grid;
  gap: .65rem;
  justify-items: center;
  position: relative;
  text-align: center;
  width: 180px;
  z-index: 1;
}

.kore-authenticate-hero__seal .icon {
  height: 108px;
  transition: transform .25s ease;
  width: 108px;
}

.kore-authenticate-hero:hover .kore-authenticate-hero__seal .icon {
  transform: translateY(-4px) rotate(-3deg);
}

.kore-authenticate-hero__seal span {
  color: var(--white);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.kore-authenticate-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
}

.kore-authenticate-guide {
  align-content: start;
  background: #151515;
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.2rem, 2.5vw, 2rem);
}

.kore-authenticate-guide h2,
.kore-authenticate-checks h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.5rem);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.kore-authenticate-guide > div:first-child > p:last-child {
  color: #b9b9b9;
  font-size: .9rem;
  margin-bottom: 0;
}

.kore-authenticate-steps {
  border-top: 1px solid rgba(255,255,255,.1);
  list-style: none;
  margin: 0;
  padding: 0;
}

.kore-authenticate-steps li {
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .75rem;
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 1rem 0;
}

.kore-authenticate-steps span,
.kore-authenticate-check-list summary span {
  color: var(--kore-lime);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.kore-authenticate-steps strong {
  color: var(--white);
  display: block;
  font-size: .84rem;
  text-transform: uppercase;
}

.kore-authenticate-steps p {
  color: #999;
  font-size: .8rem;
  line-height: 1.55;
  margin: .3rem 0 0;
}

.kore-authenticate-checks {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.kore-authenticate-check-list {
  border-top: 1px solid rgba(255,255,255,.13);
}

.kore-authenticate-check-list details {
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.kore-authenticate-check-list summary {
  align-items: center;
  color: var(--white);
  cursor: pointer;
  display: grid;
  font-size: .9rem;
  font-weight: 950;
  gap: 1rem;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  list-style: none;
  padding: 1.25rem .2rem;
  text-transform: uppercase;
}

.kore-authenticate-check-list summary::-webkit-details-marker {
  display: none;
}

.kore-authenticate-check-list summary i {
  color: var(--kore-lime);
  font-size: 1.2rem;
  font-style: normal;
  transition: transform .2s ease;
}

.kore-authenticate-check-list details[open] summary i {
  transform: rotate(45deg);
}

.kore-authenticate-check-list details p {
  color: #aaa;
  margin: -.25rem 0 1.25rem 3.2rem;
  max-width: 780px;
}

.kore-authenticate-intro {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  max-width: 820px;
}

.kore-authenticate-intro h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: .98;
  margin: 0;
  text-transform: uppercase;
}

.kore-authenticate-intro > p:last-child {
  font-size: 1rem;
  margin-bottom: 0;
  max-width: 720px;
}

.kore-authenticator__form .button:disabled {
  cursor: wait;
  opacity: .65;
}

.kore-authenticator__status {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  margin-top: 1rem;
  outline: none;
  padding: 1rem;
}

.kore-authenticator__status strong {
  display: block;
  font-family: "Arial Black", Impact, Inter, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.kore-authenticator__status p {
  margin: .45rem 0 0;
}

.kore-authenticator__status.is-authentic {
  border-color: var(--kore-lime);
  box-shadow: inset 4px 0 0 var(--kore-lime);
}

.kore-authenticator__status.is-authentic strong {
  color: var(--kore-lime);
}

.kore-authenticator__status.is-already_verified,
.kore-authenticator__status.is-blocked,
.kore-authenticator__status.is-rate_limited {
  border-color: #f2c94c;
  box-shadow: inset 4px 0 0 #f2c94c;
}

.kore-authenticator__status.is-invalid,
.kore-authenticator__status.is-error {
  border-color: #ef5350;
  box-shadow: inset 4px 0 0 #ef5350;
}

.kore-authenticator__result-meta {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
}

.kore-authenticator {
  align-items: start;
  background: #151515;
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  padding: clamp(1.2rem, 4vw, 3rem);
}

.kore-authenticator__guide {
  display: grid;
  gap: 1rem;
}

.kore-authenticator__sticker {
  background: #050505;
  border: 1px solid rgba(182,255,0,.35);
  display: grid;
  gap: .75rem;
  margin: 0;
  padding: clamp(.65rem, 1.5vw, 1rem);
}

.kore-authenticator__sticker-art {
  overflow: visible;
  position: relative;
}

.kore-authenticator__sticker img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.kore-authenticator__sticker figcaption {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
  display: flex;
  font-size: .58rem;
  font-weight: 950;
  gap: .75rem;
  justify-content: space-between;
  letter-spacing: .08em;
  padding-bottom: .15rem;
  text-transform: uppercase;
}

.kore-authenticator__sticker figcaption a {
  color: var(--kore-lime);
  flex: 0 0 auto;
  text-decoration: underline;
  text-underline-offset: .2em;
}

.kore-authenticator__guide-copy {
  align-items: start;
  background: rgba(182,255,0,.06);
  border: 1px solid rgba(182,255,0,.2);
  display: grid;
  gap: .8rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding: .9rem;
}

.kore-authenticator__guide-copy p {
  font-size: .8rem;
  margin: 0;
}

.kore-authenticator__form {
  background: #101010;
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: 1rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.kore-authenticator__form-heading {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: .85rem;
  grid-template-columns: auto minmax(0, 1fr);
  padding-bottom: 1.15rem;
}

.kore-authenticator__form-heading .eyebrow {
  margin-bottom: .25rem;
}

.kore-authenticator__form-heading h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}

.kore-authenticator__section-title {
  border-bottom: 1px solid rgba(182,255,0,.35);
  color: var(--white);
  font-size: .78rem;
  font-weight: 950;
  padding: .45rem 0 .7rem;
  text-transform: uppercase;
}

.kore-authenticator__section-title--product {
  align-items: center;
  border-bottom-color: rgba(255,77,77,.72);
  display: flex;
  gap: .75rem;
  justify-content: space-between;
  padding: .65rem 0 .75rem;
}

.kore-authenticator__section-title--product strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1;
}

.kore-authenticator__section-title--product span {
  background: #ff4d4d;
  border-radius: 999px;
  color: #050505;
  font-size: .56rem;
  letter-spacing: .06em;
  padding: .3rem .55rem;
  white-space: nowrap;
}

.kore-authenticator__fields {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr;
}

.kore-authenticator__form label {
  color: #d5d5d5;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kore-authenticator__form label span {
  color: var(--kore-lime);
}

.kore-authenticator__form input {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  min-height: 46px;
  padding: .75rem .8rem;
  width: 100%;
}

.kore-authenticator__form small {
  color: #888;
  font-size: .68rem;
}

.kore-authenticator__form .button {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: .35rem;
  min-height: 50px;
}

.kore-authenticator__status {
  background: rgba(182,255,0,.08);
  border: 1px solid rgba(182,255,0,.25);
  color: #d5d5d5;
  font-size: .78rem;
  margin: 0;
  padding: .8rem;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .desktop-nav {
    gap: 1.55rem;
  }

  .desktop-nav a {
    font-size: .78rem;
  }
}

@media (max-width: 900px) {
  .kore-authenticator,
  .kore-authenticate-layout {
    grid-template-columns: 1fr;
  }

  .kore-authenticator {
    padding: .8rem;
  }

  .kore-authenticator__fields {
    grid-template-columns: 1fr;
  }

  .kore-authenticate-hero__seal {
    display: none;
  }

  .kore-authenticate-check-list details p {
    margin-left: 0;
  }
}

.kore-support-note {
  align-items: start;
  background: rgba(182,255,0,.08);
  border: 1px solid rgba(182,255,0,.22);
  display: grid;
  gap: .75rem;
  grid-template-columns: auto minmax(0, 1fr);
  margin-top: 1rem;
  padding: .9rem;
}

.contact-form select {
  appearance: none;
  background: #0d0d0d;
  border: 1px solid var(--line);
  color: var(--white);
  min-height: 46px;
  padding: .75rem .8rem;
  width: 100%;
}

.kore-photo-guidance {
  background: #101010;
  border: 1px dashed rgba(182,255,0,.32);
  padding: .85rem;
}

.kore-photo-guidance strong {
  color: var(--white);
  display: block;
  font-size: .86rem;
  font-weight: 950;
  margin-bottom: .25rem;
}

.kore-photo-guidance p {
  font-size: .82rem;
  margin: 0;
}

.order-list,
.wishlist-grid {
  display: grid;
  gap: .9rem;
}

.order-card,
.wishlist-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(182, 255, 0, .22);
  min-width: 0;
  padding: .9rem;
}

.order-card__top {
  align-items: center;
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.order-card span,
.order-card__tracking span {
  color: var(--silver);
  display: block;
  font-size: .68rem;
  font-weight: 950;
  margin-bottom: .2rem;
  text-transform: uppercase;
}

.order-card strong {
  color: var(--white);
  display: block;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.order-card__tracking {
  border-top: 1px solid rgba(245, 245, 245, .1);
  margin-top: .8rem;
  padding-top: .8rem;
}

.wishlist-item {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: 92px minmax(0, 1fr);
}

.wishlist-item__image {
  align-items: center;
  aspect-ratio: 1;
  background: #fff;
  display: grid;
  justify-items: center;
  overflow: hidden;
}

.wishlist-item__image img {
  height: 100%;
  object-fit: contain;
  padding: .35rem;
  width: 100%;
}

.wishlist-item a:not(.wishlist-item__image) {
  color: var(--white);
  display: block;
  font-weight: 950;
  line-height: 1.25;
  margin-bottom: .5rem;
}

.wishlist-item button {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.wishlist-empty {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(182, 255, 0, .22);
  padding: 1rem;
}

.cart-form { display: grid; gap: 1rem; }
.cart-line { align-items: center; display: grid; gap: 1rem; grid-template-columns: 90px 1fr auto; padding: 1rem; }
.cart-line img { aspect-ratio: 1; background: #fff; height: 90px; object-fit: contain; padding: .25rem; width: 90px; }
.cart-line input { background: #0d0d0d; border: 1px solid var(--line); color: var(--white); margin-top: .6rem; padding: .5rem; width: 80px; }
.cart-summary { justify-self: end; padding: 1rem; width: min(100%, 360px); }
.cart-summary .button { margin-top: .7rem; width: 100%; }

.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.footer-compact {
  align-items: center;
  display: grid;
  gap: .8rem 1rem;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  padding: .8rem 0 .6rem;
}

.footer-brand {
  display: inline-flex;
}

.footer-logo {
  height: auto;
  width: 116px;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1rem;
  justify-content: end;
}

.footer-links a {
  align-items: center;
  color: var(--silver);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 900;
  min-height: 44px;
  text-transform: uppercase;
}

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

.footer-trust {
  align-items: center;
  color: var(--kore-lime);
  display: flex;
  flex-wrap: wrap;
  gap: .35rem .75rem;
  justify-content: end;
}

.footer-trust span {
  font-size: .66rem;
  font-weight: 950;
  text-transform: uppercase;
}

.footer-social {
  align-items: center;
  display: flex;
  gap: .25rem;
  justify-content: end;
}

.footer-social a {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--silver);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  transition: color .18s ease, transform .2s cubic-bezier(.2, .8, .2, 1);
  width: 44px;
}

.footer-social a:hover,
.footer-social a:focus-visible,
.footer-social a:active {
  color: var(--kore-lime);
  transform: translateY(-3px) scale(1.06);
}

.footer-social .icon {
  height: 32px;
  stroke-width: 2.15;
  width: 32px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 245, .08);
  color: var(--silver);
  display: flex;
  font-size: .74rem;
  gap: 1rem;
  justify-content: space-between;
  padding: .55rem 0;
}

.whatsapp-widget {
  bottom: 1.15rem;
  display: grid;
  gap: .7rem;
  justify-items: end;
  position: fixed;
  right: 1.15rem;
  z-index: 75;
}

.whatsapp-widget__panel {
  background: #f4f0e8;
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0,0,0,.32);
  color: #111;
  max-width: min(360px, calc(100vw - 2rem));
  overflow: hidden;
  transform-origin: bottom right;
}

.whatsapp-widget__panel[hidden] {
  display: none;
}

.whatsapp-widget__header {
  align-items: center;
  background: #07846c;
  color: #fff;
  display: flex;
  justify-content: space-between;
  min-height: 100px;
  padding: 1rem;
}

.whatsapp-widget__brand {
  align-items: center;
  display: flex;
  gap: .75rem;
}

.whatsapp-widget__brand img {
  background: #050505;
  border: 1px solid rgba(182,255,0,.4);
  border-radius: 999px;
  height: 44px;
  object-fit: contain;
  padding: .2rem;
  width: 44px;
}

.whatsapp-widget__brand strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.1;
}

.whatsapp-widget__brand span {
  display: block;
  font-size: .85rem;
  margin-top: .2rem;
}

.whatsapp-widget__close {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.72);
  cursor: pointer;
  padding: .25rem;
}

.whatsapp-widget__close:hover {
  color: #fff;
}

.whatsapp-widget__close .icon {
  height: 22px;
  width: 22px;
}

.whatsapp-widget__body {
  background:
    radial-gradient(circle at 18% 20%, rgba(0,0,0,.045) 0 2px, transparent 2px 28px),
    radial-gradient(circle at 76% 34%, rgba(0,0,0,.04) 0 2px, transparent 2px 26px),
    #f4f0e8;
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 1.1rem 1.15rem 1.25rem;
}

.whatsapp-widget__body time {
  color: #8a8580;
  font-size: .82rem;
  font-weight: 700;
}

.whatsapp-widget__bubble {
  background: #fff;
  border-radius: 0 18px 18px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  justify-self: start;
  padding: .85rem 1rem;
}

.whatsapp-widget__bubble p {
  font-size: .98rem;
  line-height: 1.35;
  margin: 0;
}

.whatsapp-widget__bubble p + p {
  margin-top: .65rem;
}

.whatsapp-widget__cta,
.whatsapp-widget__launcher {
  align-items: center;
  background: #25d366;
  border: 0;
  color: #fff;
  display: inline-flex;
  justify-content: center;
}

.whatsapp-widget__cta {
  border-radius: 999px;
  box-shadow: 0 4px 0 rgba(0,0,0,.12);
  font-size: 1rem;
  font-weight: 950;
  gap: .55rem;
  min-height: 54px;
  padding: 0 1.35rem;
  text-decoration: none;
}

.whatsapp-widget__cta img {
  display: block;
  height: 28px;
  object-fit: contain;
  width: 28px;
}

.whatsapp-widget__launcher {
  background: transparent;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  cursor: pointer;
  height: 56px;
  position: relative;
  transition: transform .2s cubic-bezier(.2,.8,.2,1);
  width: 56px;
}

.whatsapp-widget__launcher:hover,
.whatsapp-widget__launcher:focus-visible,
.whatsapp-widget__launcher[aria-expanded="true"] {
  transform: translateY(-3px) scale(1.04);
}

.whatsapp-widget__launcher img {
  display: block;
  height: 46px;
  object-fit: contain;
  width: 46px;
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .desktop-nav, .header-search { display: none; }
  .mobile-menu-trigger { display: inline-grid; }
  .brand-logo { width: 190px; }
  .launch-hero,
  .story-split,
  .why-grid,
  .faq-showcase,
  .approval-band {
    grid-template-columns: 1fr;
  }
  .launch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .approval-stats,
  .feature-list,
  .audience-list {
    grid-template-columns: 1fr;
  }
  .hero, .product-shell, .auth-panel, .collection-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__visual { justify-self: start; max-width: 360px; }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .product-thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
  }
  .product-thumb {
    flex: 0 0 64px;
  }
  .product-media-wrap,
  .product-media,
  .filter-panel { position: static; }
  .trust-bar, .category-grid, .product-grid, .finder-grid, .rich-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .goal-categories__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 641px) and (max-width: 980px) {
  .collection-shell .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .collection-shell .product-card__media {
    aspect-ratio: 1;
  }

  .collection-shell .product-card__body {
    padding: .9rem;
  }

  .collection-shell .product-card h3 {
    font-size: .96rem;
    line-height: 1.18;
    min-height: 3.55em;
    -webkit-line-clamp: 3;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .footer-compact,
  .footer-bottom,
  .section-wrap,
  .poster-carousel,
  .round-categories,
  .launch,
  .story-panels,
  .faq-showcase,
  .collection-shell,
  .product-shell,
  .page-shell,
  .rich-page,
  .hero,
  .trust-bar,
  .auth-panel,
  .finder {
    width: min(calc(100% - 1rem), var(--max));
  }

  h1 { font-size: 2.65rem; }
  h2 { font-size: 2rem; }
  .product-page-shell {
    padding: 1.5rem 0 3rem;
    width: min(calc(100% - 1rem), var(--max));
  }
  .product-shell { padding: .75rem; }
  .product-title { font-size: clamp(1.35rem, 7vw, 1.85rem); }
  .product-media {
    min-height: auto;
  }
  .product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-actions {
    grid-template-columns: 1fr;
  }
  .product-tabs {
    gap: 1rem;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .product-content-card__header,
  .product-description-rte {
    padding-left: 0;
    padding-right: 0;
  }
  body {
    padding-top: 146px;
  }
  .site-header {
    position: fixed;
  }
  .header-inner {
    gap: 0;
    grid-template-columns: 82px minmax(0, 1fr) 82px;
    min-height: 92px;
    position: relative;
  }
  .brand-link {
    grid-column: 2;
    justify-content: center;
  }
  .brand-logo--desktop {
    display: none;
  }
  .brand-logo--mobile {
    display: block;
    transform: scale(1.16);
    transform-origin: center;
  }
  .header-actions {
    display: contents;
  }
  .mobile-menu-trigger {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }
  .header-account {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
  }
  .header-actions .icon-button[href]:not(.header-account) {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .bsn-product-page {
    padding: 1.5rem 0 7.5rem;
    width: min(calc(100% - 1rem), 1180px);
  }
  .bsn-product-card {
    grid-template-columns: 1fr;
  }
  .bsn-product-gallery {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    grid-template-columns: 1fr;
    padding: .75rem;
  }
  .bsn-product-thumbs {
    display: flex;
    order: 2;
    overflow-x: auto;
  }
  .bsn-product-thumb {
    flex: 0 0 64px;
  }
  .bsn-product-summary {
    padding: 1rem;
  }
  .bsn-product-title {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }
  .bsn-product-heading {
    grid-template-columns: 1fr;
  }
  .product-wishlist-button {
    justify-content: center;
    width: 100%;
  }
  .product-wishlist-button--media {
    background: transparent;
    border-color: transparent;
    color: #fff;
    height: 44px;
    padding: 0;
    right: .55rem;
    top: .55rem;
    width: 44px;
  }
  .product-wishlist-button--media:hover,
  .product-wishlist-button--media.is-active {
    background: transparent;
    border-color: transparent;
    color: #fff;
  }
  .product-wishlist-button--media .icon {
    height: 24px;
    width: 24px;
  }
  .bsn-product-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bsn-product-actions {
    grid-template-columns: 1fr;
  }
  .bsn-mobile-buy-strip {
    align-items: center;
    background: var(--kore-lime);
    border: 0;
    bottom: 0;
    box-shadow: 0 -14px 34px rgba(0, 0, 0, .34);
    color: #050505;
    cursor: pointer;
    display: flex;
    font-size: .92rem;
    font-weight: 950;
    gap: .55rem;
    justify-content: center;
    left: 0;
    letter-spacing: .01em;
    min-height: calc(48px + env(safe-area-inset-bottom));
    padding: .62rem 1rem calc(.62rem + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    text-transform: uppercase;
    width: 100%;
    z-index: 90;
  }
  .bsn-mobile-buy-strip strong {
    font-size: .98rem;
    font-weight: 950;
  }
  .bsn-mobile-buy-strip:disabled {
    background: #2a2a2a;
    color: rgba(255, 255, 255, .72);
    cursor: not-allowed;
  }
  .bsn-product-tabs {
    gap: 1rem;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .bsn-media-lightbox__track,
  .bsn-media-lightbox__track.is-pinching {
    scroll-behavior: auto;
    scroll-snap-type: none;
  }
  .bsn-product-panel,
  .bsn-product-disclaimer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .bsn-media-lightbox__slide {
    box-sizing: border-box;
    min-width: 100vw;
    overflow: visible;
    padding: 3.5rem .75rem 2.75rem;
    scroll-snap-align: none;
    width: 100vw;
  }
  .bsn-media-lightbox__slide img {
    display: block;
    margin: auto;
    max-height: 86dvh;
    max-width: 96vw;
  }
  .bsn-media-lightbox__nav {
    display: none;
  }
  .bsn-media-lightbox__close {
    height: 42px;
    right: .75rem;
    top: .75rem;
    width: 42px;
  }
  .bsn-description-cards,
  .bsn-product-note-grid,
  .bsn-shipping-grid {
    grid-template-columns: 1fr;
  }
  .bsn-shipping-card--wide {
    grid-row: auto;
  }
  .customer-page {
    padding: 2rem 0 3rem;
    width: min(calc(100% - 1rem), 1180px);
  }
  .customer-page-grid,
  .order-card__top {
    grid-template-columns: 1fr;
  }
  .kore-info-page {
    padding: 2rem 0 3rem;
    width: min(calc(100% - 1rem), 1180px);
  }
  .kore-info-hero,
  .kore-contact-layout,
  .kore-voice-panel {
    grid-template-columns: 1fr;
  }
  .kore-info-hero {
    min-height: 0;
    padding: 1.2rem;
  }
  .kore-info-hero::after {
    inset: .55rem;
  }
  .kore-info-hero__tags {
    gap: .35rem;
    margin-top: 1rem;
  }
  .kore-info-hero__tags span {
    font-size: .6rem;
    padding: .42rem .5rem;
  }
  .kore-info-hero__mark,
  .kore-info-hero__icon {
    display: none;
  }
  .kore-info-grid--four,
  .kore-goal-icon-grid,
  .kore-promise-strip {
    grid-template-columns: 1fr;
  }
  .kore-info-card,
  .kore-goal-icon-card {
    min-height: 0;
  }
  .kore-promise-strip article {
    align-items: start;
  }
  .kore-promise-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-left: .35rem;
    padding-top: 1rem;
  }
  .kore-contact-form__grid {
    grid-template-columns: 1fr;
  }
  .kore-contact-form__field--wide {
    grid-column: auto;
  }
  .kore-contact-panel,
  .kore-contact-form-card {
    padding: 1.1rem;
  }
  .customer-page-card__header {
    align-items: start;
    display: grid;
  }
  .wishlist-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .brand-logo {
    max-height: 88px;
    max-width: min(66vw, 250px);
    width: auto;
  }
  .icon-button {
    height: 44px;
    width: 44px;
  }
  .icon {
    height: 26px;
    width: 26px;
  }
  .mobile-inline-search {
    background: #f7f7f7;
    border-color: rgba(255,255,255,.7);
    display: flex;
    margin-bottom: .35rem;
    min-height: 48px;
  }
  .mobile-inline-search input {
    color: #1b1b1b;
  }
  .mobile-inline-search button {
    color: #050505;
  }
  .mobile-panel .mobile-search {
    display: none;
  }
  .launch { padding: .4rem 0 2rem; }
  .launch-hero {
    background:
      linear-gradient(160deg, rgba(245, 245, 245, .055), transparent 56%),
      #101010;
    border-color: rgba(245, 245, 245, .1);
    gap: .95rem;
    min-height: auto;
    padding: 1rem;
  }
  .launch-hero .eyebrow {
    font-size: .64rem;
    line-height: 1.25;
    margin-bottom: .5rem;
  }
  .launch-hero h2 {
    font-size: 1.95rem;
    line-height: 1.03;
    max-width: 330px;
  }
  .launch-hero__content > p:not(.eyebrow) {
    font-size: .9rem;
    line-height: 1.5;
    margin: .7rem 0 0;
    max-width: 330px;
  }
  .launch-hero .hero__actions {
    display: grid;
    gap: .55rem;
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }
  .launch-hero .button {
    font-size: .76rem;
    min-height: 42px;
    padding: .72rem .8rem;
    width: 100%;
  }
  .launch-visual {
    align-items: center;
    display: flex;
    gap: .75rem;
    justify-content: flex-start;
    min-height: 74px;
    padding: .75rem;
  }
  .launch-visual img {
    flex: 0 0 auto;
    max-height: 48px;
    width: 48px;
  }
  .launch-visual span {
    bottom: auto;
    font-size: .68rem;
    letter-spacing: .08em;
    position: static;
  }
  .launch-grid {
    gap: .65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: .65rem;
  }
  .launch-card {
    border-color: rgba(245, 245, 245, .1);
    min-width: 0;
  }
  .launch-card__media { aspect-ratio: 1.18; }
  .launch-card__media span {
    font-size: .68rem;
    height: 66px;
    letter-spacing: .05em;
    width: 66px;
  }
  .launch-card__body {
    display: flex;
    flex-direction: column;
    min-height: 106px;
    padding: .72rem;
  }
  .launch-card small,
  .launch-card em {
    font-size: .62rem;
  }
  .launch-card strong {
    font-size: .86rem;
    line-height: 1.2;
    margin: .3rem 0 .45rem;
  }
  .launch-card p {
    display: none;
  }
  .launch-card em {
    background: transparent;
    color: var(--kore-lime);
    display: block;
    margin-top: auto;
    padding: 0;
  }
  .story-panels, .faq-showcase { padding: 2rem 0; }
  .approval-band,
  .story-split,
  .why-grid,
  .faq-visual,
  .faq-row {
    padding: 1rem;
  }
  .story-visual {
    min-height: 210px;
  }
  .story-visual img {
    max-height: 160px;
  }
  .feature-pill,
  .audience-list span,
  .approval-stats span {
    font-size: .76rem;
    padding: .75rem;
  }
  .faq-row summary {
    font-size: .82rem;
    gap: .55rem;
    grid-template-columns: 1.5rem minmax(0, 1fr) 2.5rem;
    min-height: 64px;
    padding: .65rem .65rem .65rem .75rem;
  }
  .faq-row__answer {
    margin-left: 2.8rem;
    margin-right: .75rem;
  }
  .faq-row__answer p {
    font-size: .85rem;
  }
  .shop-sticky-bar {
    align-items: center;
    flex-direction: row;
    padding: .55rem .5rem;
  }
  .shop-sticky-bar strong { font-size: .78rem; }
  .shop-sticky-bar span { display: none; }
  .shop-sticky-bar .button {
    flex: 0 0 auto;
    min-height: 38px;
    width: auto;
  }
  .poster-carousel {
    padding-top: .5rem;
  }
  .poster-slide {
    min-height: 252px;
  }
  .poster-slide--image-only {
    height: 252px;
  }
  .poster-slide__content {
    padding: 1.15rem 1.25rem 2.35rem;
  }
  .poster-slide__content h2 {
    font-size: 2rem;
    line-height: 1;
    max-width: 300px;
  }
  .poster-slide__content p {
    font-size: .92rem;
    line-height: 1.45;
    max-width: 285px;
  }
  .poster-dots {
    bottom: .85rem;
  }
  .poster-slide__mark {
    bottom: -1.7rem;
    max-width: 48%;
    opacity: .38;
    right: -1.4rem;
  }
  .round-categories {
    padding: .7rem 0 1.05rem;
  }
  .mobile-trust-strip {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: .05rem 0 .75rem;
    overflow: hidden;
  }
  .mobile-trust-strip__item {
    align-items: center;
    border-left: 1px solid rgba(245, 245, 245, .13);
    display: grid;
    gap: .32rem;
    justify-items: center;
    min-width: 0;
    padding: .12rem .35rem .2rem;
    text-align: center;
  }
  .mobile-trust-strip__item:first-child {
    border-left: 0;
  }
  .mobile-trust-strip .icon {
    color: var(--kore-lime);
    height: 28px;
    stroke-width: 1.9;
    width: 28px;
  }
  .mobile-trust-strip__item span {
    color: rgba(245, 245, 245, .78);
    display: block;
    font-size: .52rem;
    font-weight: 950;
    line-height: 1.12;
    text-transform: uppercase;
  }
  .round-categories__header {
    margin-bottom: .45rem;
  }
  .round-categories__header span {
    font-size: .72rem;
  }
  .round-categories__header small {
    font-size: .64rem;
  }
  .round-categories__scroller {
    gap: .55rem;
    margin-left: -.05rem;
    padding: .25rem 0 .45rem;
  }
  .round-category {
    flex-basis: clamp(82px, 22vw, 94px);
  }
  .round-category__icon {
    height: clamp(74px, 19.5vw, 84px);
    padding: 3px;
    width: clamp(74px, 19.5vw, 84px);
  }
  .round-category__icon span {
    font-size: .76rem;
  }
  .round-category strong {
    font-size: .66rem;
    line-height: 1.1;
    max-width: 82px;
  }
  .bestsellers {
    padding: .15rem 0 1.8rem;
    width: min(calc(100% - 1rem), var(--max));
  }
  .bestsellers__header {
    margin-bottom: .65rem;
  }
  .home-row-heading p {
    display: none;
  }
  .home-row-heading h2 {
    font-size: 1.18rem;
    line-height: 1;
  }
  .home-row-heading__more {
    display: block;
    font-size: .68rem;
    line-height: 1;
    margin-left: auto;
    width: max-content;
  }
  .bestsellers__grid {
    gap: .62rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bestseller-card {
    border-radius: 0;
  }
  .bestseller-card__media {
    aspect-ratio: 1;
  }
  .bestseller-card__media img {
    padding: .55rem;
  }
  .bestseller-card__media--mock img {
    padding: .85rem;
  }
  .bestseller-card__media--mock b {
    font-size: .58rem;
    line-height: 1.1;
    padding: .34rem .35rem;
  }
  .bestseller-card__rating {
    font-size: .58rem;
    left: .42rem;
    padding: .22rem .36rem;
    top: .42rem;
  }
  .bestseller-card__body {
    padding: .62rem;
  }
  .bestseller-card__body small {
    font-size: .55rem;
    margin-bottom: .26rem;
    min-height: .66rem;
  }
  .bestseller-card h3 {
    font-size: .82rem;
    line-height: 1.24;
    min-height: 3.72em;
  }
  .bestseller-card__price {
    gap: .22rem;
    margin: .5rem 0 .65rem;
    min-height: 1.72rem;
  }
  .bestseller-card__price strong {
    font-size: .92rem;
  }
  .bestseller-card__price s {
    font-size: .74rem;
  }
  .bestseller-card__price em {
    border-radius: 0;
    font-size: .68rem;
    padding: .34rem .44rem;
  }
  .bestseller-card button {
    font-size: .86rem;
    min-height: 42px;
  }
  .brand-categories {
    padding: .05rem 0 1.8rem;
    width: min(calc(100% - 1rem), var(--max));
  }
  .brand-categories__header {
    margin-bottom: .65rem;
  }
  .brand-categories__grid {
    display: flex;
    gap: .62rem;
    margin: 0 -.5rem;
    overflow-x: auto;
    padding: 0 .5rem .25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .brand-categories__grid::-webkit-scrollbar {
    display: none;
  }
  .brand-category-card {
    flex: 0 0 42%;
    min-height: 224px;
    scroll-snap-align: start;
  }
  .brand-category-card__content {
    gap: .26rem;
    padding: .55rem .58rem .7rem;
  }
  .brand-category-card__mark {
    font-size: .78rem;
    height: 42px;
    width: 42px;
  }
  .brand-category-card__meta {
    font-size: .56rem;
  }
  .brand-category-card strong {
    font-size: .85rem;
    line-height: 1.12;
  }
  .brand-category-card small {
    font-size: .68rem;
    line-height: 1.28;
  }
  .goal-categories {
    padding: .05rem 0 1.45rem;
    width: min(calc(100% - 1rem), var(--max));
  }
  .goal-categories__header {
    margin-bottom: .7rem;
  }
  .goal-categories__grid {
    display: flex;
    gap: .62rem;
    margin: 0 -.5rem;
    overflow-x: auto;
    padding: 0 .5rem .25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .goal-categories__grid::-webkit-scrollbar {
    display: none;
  }
  .goal-category-card {
    flex: 0 0 82%;
    min-height: 258px;
    padding: 1rem;
    scroll-snap-align: start;
  }
  .goal-category-card__media {
    margin: -1rem -1rem .15rem;
  }
  .goal-category-card strong {
    font-size: 1.16rem;
  }
  .goal-category-card small {
    font-size: .82rem;
  }
  .country-categories {
    margin-top: .05rem;
    padding: 1rem .75rem 0;
    width: min(calc(100% - 1rem), var(--max));
  }
  .country-categories__header {
    align-items: start;
    gap: .45rem;
    grid-template-columns: 1fr;
    margin-bottom: .7rem;
  }
  .country-categories__subtitle {
    display: none;
  }
  .country-categories__grid {
    display: flex;
    gap: .62rem;
    margin: 0 -.75rem;
    overflow-x: auto;
    padding: 0 .75rem .75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .country-categories__grid::-webkit-scrollbar {
    display: none;
  }
  .country-card {
    flex: 0 0 74%;
    gap: .58rem;
    min-height: 188px;
    padding: .75rem;
    scroll-snap-align: start;
  }
  .country-card__top {
    gap: .55rem;
  }
  .country-card__flag-icon {
    flex-basis: 34px;
    height: 34px;
    width: 34px;
  }
  .country-card__top strong {
    font-size: .95rem;
    line-height: 1.05;
  }
  .country-card small {
    font-size: .68rem;
    line-height: 1.28;
  }
  .country-card__brands {
    gap: .32rem;
  }
  .country-card__brands span {
    font-size: .62rem;
    min-height: 26px;
    padding: .42rem .5rem;
  }
  .country-map-stage {
    height: 185px;
    margin: -.1rem -.75rem 0;
  }
  .country-map-art {
    inset: 22% 0 0;
  }
  .country-map-pin {
    transform: translate(-50%, -100%) scale(.64);
    width: 69px;
  }
  .country-map-pin::before {
    left: 18.5px;
  }
  .country-map-pin::after {
    left: 16.5px;
  }
  .country-map-pin span {
    left: 28.5px;
  }
  .country-map-pin--usa { left: 14%; top: 70%; }
  .country-map-pin--canada { left: 17%; top: 50%; }
  .country-map-pin--uk { left: 43%; top: 54%; }
  .country-map-pin--europe { left: 51%; top: 58%; }
  .country-map-pin--germany { left: 54%; top: 53%; }
  }
  .hero { padding: 2rem 0; }
  .hero__visual { padding: 1rem; }
  .trust-bar, .category-grid, .product-grid, .finder-grid, .rich-grid { grid-template-columns: 1fr; }
  .collection-shell {
    background: #050505;
    color: #050505;
    padding: 0 0 2.25rem;
    width: 100%;
  }
  .collection-header {
    background: #f3f3f3;
    border-bottom: 0;
    margin: 0;
    padding: 1.15rem 1rem .85rem;
  }
  .collection-header .eyebrow,
  .collection-header h1,
  .collection-header .rte {
    display: none;
  }
  .collection-layout {
    display: block;
  }
  .filter-panel,
  .sort-row {
    display: none;
  }
  .collection-mobile-toolbar {
    align-items: center;
    background: #f3f3f3;
    color: #343434;
    display: grid;
    gap: .75rem;
    grid-template-columns: 1fr auto;
    padding: .95rem 1rem 1.05rem;
  }
  .collection-mobile-toolbar button {
    align-items: center;
    background: transparent;
    border: 0;
    color: #343434;
    display: inline-flex;
    gap: .75rem;
    min-width: 0;
    padding: 0;
    text-align: left;
  }
  .collection-mobile-toolbar span {
    color: #343434;
    line-height: 1;
  }
  .collection-mobile-toolbar .icon {
    height: 24px;
    stroke-width: 2.2;
    width: 24px;
  }
  .collection-mobile-toolbar strong {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1.08rem;
    font-weight: 500;
    letter-spacing: .04em;
  }
  .collection-mobile-toolbar small {
    color: #4d4d4d;
    font-size: .95rem;
    font-weight: 500;
    white-space: nowrap;
  }
  .pagination {
    margin: 1.4rem 0 0;
  }
  .pagination a,
  .pagination .current,
  .pagination .deco {
    background: #fff;
    border-color: #dedede;
    color: #111;
    height: 38px;
    min-width: 38px;
  }
  .pagination .current {
    background: var(--kore-lime);
    border-color: var(--kore-lime);
  }
  .collection-shell .product-grid {
    background: #f3f3f3;
    gap: .45rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 .45rem;
  }
  .collection-shell .product-card {
    background: #fff;
    border: 0;
    border-radius: 12px;
    color: #050505;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
  }
  .collection-shell .product-card__media {
    background: #fff;
    aspect-ratio: 1;
  }
  .collection-shell .product-card__media img,
  .collection-shell .product-card__media .placeholder-svg {
    padding: .22rem;
  }
  .collection-shell .product-card__category {
    background: #20201f;
    color: var(--kore-lime);
    display: block;
    font-family: "Arial Black", Impact, Inter, sans-serif;
    font-size: .58rem;
    font-weight: 950;
    line-height: 1;
    margin: 0;
    min-height: 21px;
    overflow: hidden;
    padding: .42rem .2rem .36rem;
    text-align: center;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .collection-shell .product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: .56rem .58rem .62rem;
  }
  .collection-shell .product-card__flavour {
    display: none;
  }
  .collection-shell .vendor {
    color: #636363;
    display: block;
    font-size: .58rem;
    font-weight: 950;
    letter-spacing: .02em;
    line-height: 1.15;
    margin: 0 0 .2rem;
    min-height: .7rem;
  }
  .collection-shell .product-card h3 {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: .85rem;
    font-weight: 900;
    line-height: 1.18;
    margin: 0;
    min-height: 3.55em;
    text-transform: none;
    -webkit-line-clamp: 3;
  }
  .collection-shell .product-card h3 a {
    color: #050505;
  }
  .collection-shell .price-row {
    align-items: baseline;
    color: #050505;
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
    margin: .45rem 0 .6rem;
    min-height: 1.8rem;
  }
  .collection-shell .price-row span {
    color: #050505;
    font-size: .98rem;
    font-weight: 950;
  }
  .collection-shell .price-row s {
    color: #b9b9b9;
    font-size: .73rem;
    font-weight: 850;
  }
  .collection-shell .price-row em {
    border-radius: 0;
    font-size: .68rem;
    margin-left: .1rem;
    padding: .34rem .44rem;
  }
  .collection-shell .quick-add {
    margin-top: auto;
  }
  .collection-shell .quick-add .button {
    background: var(--kore-lime);
    border-radius: 0;
    color: #050505;
    font-size: .82rem;
    font-weight: 950;
    min-height: 44px;
    padding: .7rem .25rem;
  }
  .section-wrap, .auth-panel, .finder, .rich-page, .page-shell, .product-shell { padding: 2.5rem 0; }
  .section-heading--split { align-items: start; flex-direction: column; }
  .cart-line { grid-template-columns: 72px 1fr; }
  .cart-line > span { grid-column: 2; }
  .footer-compact {
    gap: .7rem;
    grid-template-columns: 1fr;
    padding: .8rem 0 .6rem;
  }
  .footer-brand,
  .footer-links,
  .footer-trust,
  .footer-social {
    justify-content: center;
  }
  .footer-logo {
    width: 124px;
  }
  .footer-links {
    gap: .45rem .85rem;
  }
  .footer-bottom { display: grid; gap: .5rem; }
  .whatsapp-widget {
    bottom: 5rem;
    right: .85rem;
  }
  .whatsapp-widget__panel {
    max-width: min(350px, calc(100vw - 1.2rem));
  }
  .whatsapp-widget__header {
    min-height: 88px;
  }
  .whatsapp-widget__launcher {
    height: 52px;
    width: 52px;
  }
  .whatsapp-widget__launcher img {
    height: 42px;
    width: 42px;
  }
  .sticky-atc { display: flex; }
  .sticky-atc span { font-size: .82rem; max-width: 50%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (min-width: 641px) {
  .collection-shell {
    background: transparent;
    color: var(--white);
    padding: 3.25rem 0;
    width: min(calc(100% - 3rem), var(--max));
  }

  .collection-header {
    background: transparent;
    border-bottom: 1px solid var(--line);
    margin-bottom: 2rem;
    padding: 0 0 2rem;
  }

  .collection-header .eyebrow,
  .collection-header h1,
  .collection-header .rte {
    display: block;
  }

  .collection-layout {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 260px 1fr;
  }

  .collection-mobile-toolbar,
  .collection-filter-drawer-shell {
    display: none !important;
  }

  .filter-panel {
    display: block;
    position: sticky;
    top: 112px;
  }

  .sort-row {
    display: flex;
  }

  .collection-shell .product-grid {
    background: transparent;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0;
  }

  .collection-shell .product-card {
    background: var(--neutral-surface);
    border: 0;
    border-radius: 0;
    color: var(--neutral-text);
  }

  .collection-shell .product-card__media {
    background: var(--neutral-surface-strong);
    aspect-ratio: 1;
  }

  .collection-shell .product-card__media img,
  .collection-shell .product-card__media .placeholder-svg {
    padding: 1rem;
  }

  .collection-shell .product-card__category,
  .collection-shell .product-card__flavour {
    display: none;
  }

  .collection-shell .product-card__body {
    padding: 1rem;
  }

  .collection-shell .vendor {
    color: #555;
    font-size: .76rem;
    min-height: 1.05rem;
  }

  .collection-shell .product-card h3 {
    font-size: 1rem;
    line-height: 1.12;
    min-height: 3.55em;
    -webkit-line-clamp: 3;
  }

  .collection-shell .product-card h3 a {
    color: #050505;
  }

  .collection-shell .price-row {
    color: #050505;
    gap: .32rem;
    margin: .8rem 0;
    min-height: 1.9rem;
  }

  .collection-shell .price-row span {
    color: #050505;
    font-size: 1rem;
  }

  .collection-shell .price-row s {
    color: #9b9b9b;
    font-size: .88rem;
  }

  .collection-shell .quick-add .button {
    border-radius: 0;
    font-size: .9rem;
    min-height: 44px;
    padding: .85rem 1rem;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .collection-layout {
    grid-template-columns: 220px 1fr;
  }

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

/* Poster carousel restore: keep the homepage hero at the last approved sizing. */
@media (min-width: 901px) {
  .kore-marquee {
    display: none;
  }

  .poster-carousel {
    padding-top: 0;
  }

  .poster-slide {
    min-height: clamp(446px, 36.7vw, 640px);
  }

  .poster-slide--image-only {
    height: clamp(446px, 36.7vw, 640px);
  }
}

@media (max-width: 640px) {
  .poster-carousel {
    padding-top: .5rem;
  }

  .poster-slide {
    min-height: 252px;
  }

  .poster-slide--image-only {
    height: 252px;
  }
}

/* About page: spacious editorial layout with crisp typographic markers. */
.kore-about-page {
  --about-rule: rgba(255,255,255,.12);
  --about-muted: #b9b9b9;
}

.kore-about-hero {
  background:
    radial-gradient(circle at 82% 30%, rgba(182,255,0,.13), transparent 32%),
    linear-gradient(135deg, #191919, #101010);
  border: 1px solid rgba(182,255,0,.24);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, .75fr);
  min-height: 570px;
  overflow: hidden;
  position: relative;
}

.kore-about-hero::before {
  background: var(--kore-lime);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.kore-about-hero__content {
  align-content: center;
  display: grid;
  min-width: 0;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.kore-about-hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 6.1vw, 5.8rem);
  letter-spacing: -.045em;
  line-height: .89;
  margin: .7rem 0 1.3rem;
  max-width: 790px;
  min-width: 0;
  text-transform: uppercase;
}

.kore-about-hero__content > p:not(.eyebrow) {
  color: #d0d0d0;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
  max-width: 650px;
}

.kore-about-hero__cta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
  max-width: 240px;
}

.kore-about-hero__visual {
  align-items: center;
  border-left: 1px solid var(--about-rule);
  display: flex;
  justify-content: center;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.kore-about-hero__visual img {
  opacity: .72;
  position: relative;
  width: min(54%, 230px);
  z-index: 1;
}

.kore-about-hero__word {
  color: rgba(255,255,255,.025);
  font-size: 9rem;
  font-weight: 1000;
  left: 50%;
  letter-spacing: -.08em;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.kore-about-hero__caption {
  bottom: 2rem;
  color: var(--kore-lime);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .08em;
  line-height: 1.5;
  position: absolute;
  right: 2rem;
  text-align: right;
  text-transform: uppercase;
}

.kore-about-intro {
  align-items: end;
  border-bottom: 1px solid var(--about-rule);
  display: grid;
  gap: clamp(2rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.kore-about-intro h2,
.kore-about-section-heading h2,
.kore-about-promise h2,
.kore-about-manifesto h2 {
  color: var(--white);
  font-size: clamp(2rem, 4.4vw, 4rem);
  letter-spacing: -.035em;
  line-height: .96;
  margin: .55rem 0 0;
  text-transform: uppercase;
}

.kore-about-intro > p,
.kore-about-section-heading > p {
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

.kore-about-principles {
  padding: clamp(2.8rem, 6vw, 5rem) 0;
}

.kore-about-principles__list {
  border-top: 1px solid var(--about-rule);
}

.kore-about-principle {
  align-items: start;
  border-bottom: 1px solid var(--about-rule);
  display: grid;
  gap: clamp(1rem, 4vw, 4rem);
  grid-template-columns: 90px minmax(0, 1fr);
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  transition: padding-left .25s ease;
}

.kore-about-principle:hover {
  padding-left: .75rem;
}

.kore-about-principle__number {
  color: var(--kore-lime);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
}

.kore-about-principle > div {
  align-items: start;
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(200px, .72fr) minmax(280px, 1.28fr);
}

.kore-about-principle h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 2.2rem);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

.kore-about-principle p {
  color: var(--about-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
}

.kore-about-goals {
  background: #151515;
  border: 1px solid var(--about-rule);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.kore-about-section-heading {
  align-items: end;
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
  margin-bottom: 2rem;
}

.kore-about-section-heading h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.kore-about-goal-grid {
  border-top: 1px solid var(--about-rule);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kore-about-goal-card {
  align-items: center;
  border-bottom: 1px solid var(--about-rule);
  color: inherit;
  display: grid;
  gap: 1rem;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  min-height: 128px;
  padding: 1.25rem;
  text-decoration: none;
  transition: background-color .2s ease;
}

.kore-about-goal-card:nth-child(odd) {
  border-right: 1px solid var(--about-rule);
}

.kore-about-goal-card:hover {
  background: rgba(182,255,0,.06);
}

.kore-about-goal-card__number {
  color: #777;
  font-size: .68rem;
  font-weight: 950;
}

.kore-about-goal-card strong {
  color: var(--white);
  display: block;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.kore-about-goal-card p {
  color: #a8a8a8;
  font-size: .82rem;
  line-height: 1.5;
  margin: .3rem 0 0;
}

.kore-about-goal-card__arrow {
  color: var(--kore-lime);
  font-size: 1.3rem;
  transition: transform .2s ease;
}

.kore-about-goal-card:hover .kore-about-goal-card__arrow {
  transform: translateX(4px);
}

.kore-about-promise {
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.kore-about-promise__list {
  border-top: 1px solid var(--about-rule);
}

.kore-about-promise__list article {
  border-bottom: 1px solid var(--about-rule);
  display: grid;
  gap: 1rem;
  grid-template-columns: 12px minmax(160px, .6fr) minmax(220px, 1fr);
  padding: 1.45rem 0;
}

.kore-about-promise__list article > span {
  background: var(--kore-lime);
  height: 7px;
  margin-top: .38rem;
  width: 7px;
}

.kore-about-promise__list strong {
  color: var(--white);
  font-size: .9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.kore-about-promise__list p {
  color: var(--about-muted);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0;
}

.kore-about-manifesto {
  align-items: end;
  background:
    radial-gradient(circle at 8% 15%, rgba(182,255,0,.12), transparent 30%),
    var(--kore-lime);
  color: #050505;
  display: grid;
  gap: 2rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 330px;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.kore-about-manifesto__mark {
  color: rgba(5,5,5,.14);
  font-family: Georgia, serif;
  font-size: 12rem;
  line-height: .55;
}

.kore-about-manifesto .eyebrow,
.kore-about-manifesto h2,
.kore-about-manifesto p {
  color: #050505;
}

.kore-about-manifesto h2 {
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  max-width: 780px;
}

.kore-about-manifesto p:last-child {
  font-weight: 700;
  line-height: 1.65;
  max-width: 720px;
}

.kore-about-manifesto__link {
  border-bottom: 2px solid #050505;
  color: #050505;
  font-size: .75rem;
  font-weight: 950;
  padding-bottom: .4rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .kore-about-hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .kore-about-hero__visual {
    border-left: 0;
    border-top: 1px solid var(--about-rule);
    min-height: 230px;
  }
  .kore-about-hero__visual img {
    width: 130px;
  }
  .kore-about-intro,
  .kore-about-section-heading,
  .kore-about-promise {
    grid-template-columns: 1fr;
  }
  .kore-about-principle > div {
    grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  }
  .kore-about-manifesto {
    align-items: start;
    grid-template-columns: 1fr;
  }
  .kore-about-manifesto__mark {
    font-size: 7rem;
  }
  .kore-about-manifesto__link {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .kore-about-hero__content {
    padding: 2rem 1.2rem;
  }
  .kore-about-hero h1 {
    font-size: clamp(2.35rem, 11.2vw, 2.75rem);
    letter-spacing: -.055em;
  }
  .kore-about-hero__content > p:not(.eyebrow) {
    max-width: 100%;
  }
  .kore-about-hero__visual {
    display: none;
  }
  .kore-about-intro {
    gap: 1.4rem;
    padding: 3.5rem 0 2.5rem;
  }
  .kore-about-principles {
    padding: 2.2rem 0 3.5rem;
  }
  .kore-about-principle {
    gap: .75rem;
    grid-template-columns: 32px minmax(0, 1fr);
  }
  .kore-about-principle > div {
    gap: .7rem;
    grid-template-columns: 1fr;
  }
  .kore-about-goals {
    padding: 1.2rem;
  }
  .kore-about-section-heading {
    gap: 1rem;
  }
  .kore-about-goal-grid {
    grid-template-columns: 1fr;
  }
  .kore-about-goal-card:nth-child(odd) {
    border-right: 0;
  }
  .kore-about-goal-card {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    min-height: 110px;
    padding: 1rem 0;
  }
  .kore-about-promise {
    gap: 1.5rem;
    padding: 3.5rem 0;
  }
  .kore-about-promise__list article {
    gap: .6rem;
    grid-template-columns: 12px minmax(0, 1fr);
  }
  .kore-about-promise__list article p {
    grid-column: 2;
  }
  .kore-about-manifesto {
    gap: 1rem;
    min-height: 0;
    padding: 1.5rem;
  }
  .kore-about-manifesto__mark {
    display: none;
  }
  .kore-about-manifesto h2 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }
}

/* About v2: balanced brand story, restrained typography, no decorative icons. */
.kore-about-v2 {
  margin: 0 auto;
  padding: 3.2rem 0 5rem;
  width: min(calc(100% - 3rem), 1180px);
}

.kore-about-v2 h1,
.kore-about-v2 h2,
.kore-about-v2 h3 {
  letter-spacing: 0;
}

.kore-about-v2__hero {
  background:
    radial-gradient(circle at 84% 50%, rgba(182,255,0,.07), transparent 23%),
    linear-gradient(135deg, #181818, #111);
  border: 1px solid rgba(255,255,255,.12);
  min-height: 480px;
  overflow: hidden;
  position: relative;
}

.kore-about-v2__hero-copy {
  align-content: center;
  display: grid;
  min-height: 480px;
  min-width: 0;
  padding: clamp(2rem, 5vw, 4rem) clamp(18rem, 34vw, 28rem) clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}

.kore-about-v2__hero h1 {
  color: var(--white);
  font-size: clamp(2.65rem, 4.25vw, 4rem);
  line-height: 1.02;
  margin: .7rem 0 1.15rem;
  max-width: 620px;
  overflow-wrap: normal;
  text-transform: uppercase;
}

.kore-about-v2__hero-copy > p:not(.eyebrow) {
  color: #c6c6c6;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.kore-about-v2__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.7rem;
}

.kore-about-v2__actions .button {
  min-width: 190px;
}

.kore-about-v2__text-link {
  color: var(--white);
  font-size: .72rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

.kore-about-v2__text-link span {
  color: var(--kore-lime);
  margin-left: .3rem;
}

.kore-about-v2__mark-stage {
  align-items: center;
  display: flex;
  height: 280px;
  justify-content: center;
  perspective: 700px;
  position: absolute;
  right: clamp(2.5rem, 7vw, 6rem);
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  z-index: 1;
}

.kore-about-v2__mark-stage img {
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.45));
  height: auto;
  opacity: .88;
  position: relative;
  transform: rotateX(var(--logo-tilt-x, 0deg)) rotateY(var(--logo-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: filter .2s ease, opacity .2s ease, transform .18s ease-out;
  width: 190px;
  will-change: transform;
  z-index: 1;
}

.kore-about-v2__mark-stage:hover img {
  filter: drop-shadow(var(--logo-shadow-x, 0px) 18px 20px rgba(0,0,0,.58));
  opacity: 1;
}

.kore-about-v2__statement {
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  gap: 1.2rem 3rem;
  grid-template-columns: minmax(0, .38fr) minmax(0, 1.1fr) minmax(260px, .72fr);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.kore-about-v2__statement h2,
.kore-about-v2__section-title h2,
.kore-about-v2__range h2,
.kore-about-v2__commitment h2,
.kore-about-v2__cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  line-height: 1.04;
  margin: 0;
  text-transform: uppercase;
}

.kore-about-v2__statement > p:last-child,
.kore-about-v2__section-title > p:last-child,
.kore-about-v2__range-copy > p:not(.eyebrow),
.kore-about-v2__commitment > div:first-child > p:last-child {
  color: #b9b9b9;
  line-height: 1.75;
  margin: 0;
}

.kore-about-v2__values {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.kore-about-v2__value {
  background: #151515;
  border: 1px solid rgba(255,255,255,.1);
  min-height: 230px;
  padding: 1.4rem;
}

.kore-about-v2__value > span,
.kore-about-v2__steps > li > span,
.kore-about-v2__range-links a > span {
  color: var(--kore-lime);
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .08em;
}

.kore-about-v2__value h3 {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.15;
  margin: 3rem 0 .7rem;
  text-transform: uppercase;
}

.kore-about-v2__value p {
  color: #aaa;
  font-size: .86rem;
  line-height: 1.65;
  margin: 0;
}

.kore-about-v2__process {
  background: #f3f3f1;
  color: #050505;
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  padding: clamp(2rem, 5vw, 4rem);
}

.kore-about-v2__process .eyebrow {
  color: #4b6800;
}

.kore-about-v2__process .kore-about-v2__section-title h2 {
  color: #050505;
}

.kore-about-v2__section-title > p:last-child {
  color: #555;
  margin-top: 1rem;
}

.kore-about-v2__steps {
  border-top: 1px solid #c8c8c4;
  list-style: none;
  margin: 0;
  padding: 0;
}

.kore-about-v2__steps li {
  border-bottom: 1px solid #c8c8c4;
  display: grid;
  gap: 1rem;
  grid-template-columns: 38px minmax(0, 1fr);
  padding: 1.3rem 0;
}

.kore-about-v2__steps strong {
  display: block;
  font-size: .9rem;
  font-weight: 950;
  text-transform: uppercase;
}

.kore-about-v2__steps p {
  color: #555;
  font-size: .86rem;
  line-height: 1.6;
  margin: .4rem 0 0;
}

.kore-about-v2__range,
.kore-about-v2__commitment {
  display: grid;
  gap: clamp(2rem, 6vw, 5rem);
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.kore-about-v2__range-copy .kore-about-v2__text-link {
  display: inline-block;
  margin-top: 1.25rem;
}

.kore-about-v2__range-links {
  border-top: 1px solid rgba(255,255,255,.14);
}

.kore-about-v2__range-links a {
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  display: grid;
  gap: 1rem;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 76px;
  padding: .8rem .2rem;
  text-decoration: none;
  transition: padding-left .2s ease, background-color .2s ease;
}

.kore-about-v2__range-links a:hover {
  background: rgba(182,255,0,.05);
  padding-left: .7rem;
}

.kore-about-v2__range-links strong {
  font-size: .92rem;
  text-transform: uppercase;
}

.kore-about-v2__range-links i {
  color: var(--kore-lime);
  font-style: normal;
  font-size: 1.2rem;
}

.kore-about-v2__commitment {
  border-top: 1px solid rgba(255,255,255,.12);
}

.kore-about-v2__commitment-list {
  display: grid;
  gap: .75rem;
}

.kore-about-v2__commitment-list article {
  background: #151515;
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  gap: 1rem;
  grid-template-columns: 6px minmax(0, 1fr);
  padding: 1.1rem;
}

.kore-about-v2__commitment-list article > span {
  background: var(--kore-lime);
}

.kore-about-v2__commitment-list strong {
  color: var(--white);
  font-size: .88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.kore-about-v2__commitment-list p {
  color: #aaa;
  font-size: .84rem;
  line-height: 1.55;
  margin: .3rem 0 0;
}

.kore-about-v2__cta {
  align-items: center;
  background:
    radial-gradient(circle at 85% 50%, rgba(182,255,0,.15), transparent 32%),
    #151515;
  border: 1px solid rgba(182,255,0,.3);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.kore-about-v2__cta h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  max-width: 760px;
}

.kore-about-v2__cta .button {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-width: 235px;
}

@media (max-width: 900px) {
  .kore-contact-page .kore-info-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .kore-contact-layout {
    grid-template-columns: 1fr;
  }
  .kore-about-v2__statement,
  .kore-about-v2__process,
  .kore-about-v2__range,
  .kore-about-v2__commitment {
    grid-template-columns: 1fr;
  }
  .kore-about-v2__hero-copy {
    padding-right: clamp(13rem, 30vw, 18rem);
  }
  .kore-about-v2__mark-stage {
    height: 210px;
    right: 1.5rem;
    width: 210px;
  }
  .kore-about-v2__mark-stage img {
    width: 145px;
  }
  .kore-about-v2__values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .kore-about-v2 {
    padding: 2rem 0 3.5rem;
    width: min(calc(100% - 1rem), 1180px);
  }
  .kore-about-v2__hero {
    min-height: 0;
  }
  .kore-about-v2__hero-copy {
    min-height: 0;
    padding: 1.5rem 1.15rem 1.8rem;
  }
  .kore-about-v2__hero h1 {
    font-size: clamp(2.15rem, 9.6vw, 2.6rem);
    line-height: 1.02;
  }
  .kore-about-v2__mark-stage {
    height: 120px;
    margin: -.35rem auto 1.35rem;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 120px;
  }
  .kore-about-v2__mark-stage img {
    width: 92px;
  }
  .kore-about-v2__statement {
    gap: 1rem;
    padding: 3.2rem 0;
  }
  .kore-about-v2__statement h2,
  .kore-about-v2__section-title h2,
  .kore-about-v2__range h2,
  .kore-about-v2__commitment h2 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }
  .kore-about-v2__values {
    grid-template-columns: 1fr;
    padding: 2.2rem 0;
  }
  .kore-about-v2__value {
    min-height: 0;
  }
  .kore-about-v2__value h3 {
    margin-top: 1.5rem;
  }
  .kore-about-v2__process {
    gap: 1.7rem;
    padding: 1.3rem;
  }
  .kore-about-v2__range,
  .kore-about-v2__commitment {
    gap: 1.7rem;
    padding: 3.5rem 0;
  }
  .kore-about-v2__cta {
    align-items: start;
    grid-template-columns: 1fr;
    padding: 1.3rem;
  }
  .kore-about-v2__cta .button {
    min-width: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .kore-about-v2__mark-stage img {
    transition: none;
  }
  .kore-about-v2__mark-stage:hover img {
    transform: none;
  }
}

@media (max-width: 640px) {
  .kore-contact-page .kore-info-grid--four {
    grid-template-columns: 1fr;
  }
}
