@font-face {
  font-family: "Restivo Diamonds Type";
  src: url("../fonts/restivo-type-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Restivo Diamonds Type";
  src: url("../fonts/restivo-type-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-2: #f7f7f7;
  --color-surface-3: #eeeeee;
  --color-surface-warm: #f8f8f8;
  --color-surface-warm-2: #eeeeee;
  --color-surface-warm-3: #ffffff;
  --color-surface-product: #f6f6f6;
  --color-text: #111111;
  --color-text-strong: #000000;
  --color-text-body: #3f3f3f;
  --color-text-body-strong: #1d1d1d;
  --color-text-body-soft: #555555;
  --color-text-soft: #6f6f6f;
  --color-line: #dddddd;
  --color-line-strong: #b8b8b8;
  --color-accent: #111111;
  --color-accent-dark: #000000;
  --color-dark: #000000;
  --color-success: #167246;
  --color-error: #8a1f2d;
  --color-error-surface: #fff4f4;
  --color-error-line: rgba(138, 31, 45, 0.24);
  --color-error-line-soft: rgba(138, 31, 45, 0.18);
  --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: "Restivo Diamonds Type", Arial, sans-serif;
  --font-display: "Restivo Diamonds Type", Arial, 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;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  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;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  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: 1;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: none;
}

h1 {
  font-size: 2.35rem;
  letter-spacing: 0;
}

h2 {
  font-size: 1.8rem;
  letter-spacing: 0;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: 0;
}

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