:root {
  --color-bg: #ffffff;
  --color-surface: #f5f5f5;
  --color-surface-2: #ebebeb;
  --color-surface-3: #f1f0ed;
  --color-surface-warm: #f7f5f0;
  --color-surface-warm-2: #f6f4f0;
  --color-surface-warm-3: #fbfaf6;
  --color-surface-product: #f8f8f6;
  --color-text: #111111;
  --color-text-strong: #000000;
  --color-text-body: #4b4b4b;
  --color-text-body-strong: #2d2d2d;
  --color-text-body-soft: #535353;
  --color-text-soft: #666666;
  --color-line: #d9d9d9;
  --color-accent: #d0112b;
  --color-accent-dark: #9d0d21;
  --color-dark: #0e0e0f;
  --color-success: #0d7a43;
  --color-error: #8f2731;
  --color-error-surface: #fbf1ee;
  --color-error-line: rgba(143, 39, 49, 0.26);
  --color-error-line-soft: rgba(255, 89, 67, 0.28);
  --font-size-label-2xs: 0.52rem;
  --font-size-label-xs: 0.56rem;
  --font-size-label-sm: 0.62rem;
  --font-size-label-md: 0.68rem;
  --font-size-body-xs: 0.74rem;
  --font-size-body-sm: 0.84rem;
  --font-size-body-md: 0.88rem;
  --font-size-ui-md: 0.92rem;
  --tracking-label-tight: 0.16em;
  --tracking-label: 0.18em;
  --tracking-label-wide: 0.2em;
  --tracking-label-wider: 0.22em;
  --button-height-compact: 2.45rem;
  --button-height-ui: 2.72rem;
  --button-height-form: 2.84rem;
  --button-height-commerce: 2.9rem;
  --button-height-primary: 3rem;
  --button-height-checkout: 3.08rem;
  --button-font-size-compact: var(--font-size-label-sm);
  --button-font-size-commerce: var(--font-size-label-md);
  --button-tracking-commerce: var(--tracking-label-wide);
  --notice-surface-default: var(--color-surface-warm);
  --notice-surface-success: var(--color-bg);
  --notice-surface-error: var(--color-error-surface);
  --notice-line-default: rgba(17, 17, 17, 0.16);
  --notice-line-success: rgba(17, 17, 17, 0.18);
  --notice-line-error: var(--color-error-line);
  --notice-accent-default: var(--color-text);
  --notice-accent-error: var(--color-error);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.08);
  --shadow-hard: 0 24px 80px rgba(0, 0, 0, 0.18);
  --radius-sm: 0.16rem;
  --radius-md: 0.22rem;
  --radius-lg: 0.32rem;
  --page-max: 1720px;
  --header-shell-max: 1412px;
  --header-shell-max-compact: 1280px;
  --mega-shell-max: 1320px;
  --gutter: 1rem;
  --section-space: 3rem;
  --header-total: 78px;
  --font-body: "Inter", sans-serif;
  --font-display: "Roboto Condensed", sans-serif;
}

@media (min-width: 768px) {
  :root {
    --gutter: 2rem;
    --section-space: 4.5rem;
    --header-total: 80px;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-shell-max: 1340px;
    --header-shell-max-compact: 1216px;
    --mega-shell-max: 1228px;
    --header-total: 77px;
  }
}

@media (min-width: 1280px) {
  :root {
    --header-shell-max: 1308px;
    --header-shell-max-compact: 1188px;
    --mega-shell-max: 1196px;
    --header-total: 78px;
  }
}

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

html {
  font-size: 14.25px;
  scroll-behavior: smooth;
}

@media (min-width: 768px) {
  html {
    font-size: 14.75px;
  }
}

@media (min-width: 1280px) {
  html {
    font-size: 15.25px;
  }
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.52;
}

body.has-drawer-open {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  color: var(--color-text);
}

input,
select {
  min-height: 3rem;
  padding: 0.75rem 1rem;
}

input[type="checkbox"] {
  width: 1rem;
  min-height: 1rem;
  padding: 0;
  border-radius: 0.25rem;
  accent-color: var(--color-accent);
}

textarea {
  min-height: 8rem;
  padding: 1rem;
  border-radius: var(--radius-md);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 0.94;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(1.95rem, 6.9vw, 5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.45rem, 4.15vw, 2.55rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1rem, 2.5vw, 1.32rem);
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  line-height: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

summary {
  list-style: none;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}
