@charset "UTF-8";
/**
 * okaidia theme for JavaScript, CSS and HTML
 * Loosely based on Monokai textmate theme by http://www.monokai.nl/
 * @author ocodia
 */
code[class*=language-],
pre[class*=language-] {
  color: #f8f8f2;
  background: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

/* Code blocks */
pre[class*=language-] {
  padding: 1em;
  margin: 0.5em 0;
  overflow: auto;
  border-radius: 0.3em;
}

:not(pre) > code[class*=language-],
pre[class*=language-] {
  background: #272822;
}

/* Inline code */
:not(pre) > code[class*=language-] {
  padding: 0.1em;
  border-radius: 0.3em;
  white-space: normal;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #8292a2;
}

.token.punctuation {
  color: #f8f8f2;
}

.token.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #f92672;
}

.token.boolean,
.token.number {
  color: #ae81ff;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #a6e22e;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
  color: #e6db74;
}

.token.keyword {
  color: #66d9ef;
}

.token.regex,
.token.important {
  color: #fd971f;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

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

::selection {
  color: white;
  background: #00CBFF;
}

:root {
  --base-color: steelblue;
  --container-padding: 24px;
  --font-family-nav: Arial, sans-serif;
  --header-height: 62px;
  --footer-height: 96px;
  --font-family-sans: "PP Neue Montreal", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-family-serif: "Martina Plantijn", "Times New Roman", Times, serif;
  --font-family-base: var(--font-family-sans);
  /* Design system tokens */
  --ds-container-max: 1289px;
  --ds-section-border: #e8e8e8;
  --ds-border-soft: #ededed;
  --ds-border-subtle: #ececec;
  --ds-border-card: #e5e5e5;
  --ds-text-strong: #000000;
  --ds-text-body: #333333;
  --ds-text-muted: #666666;
  --ds-text-inverse: #ffffff;
  --ds-text-success: #003e26;
  --ds-surface-base: #ffffff;
  --ds-surface-muted: #f0f0f0;
  --ds-surface-selected: #f3fbf8;
  --ds-surface-selected-strong: #cfede1;
  --ds-accent-mint: #c0ded2;
  --ds-swatch-1: #fff5e6;
  --ds-swatch-2: #e8d5c4;
  --ds-swatch-3: #c9a87c;
  --ds-swatch-4: #8b6914;
  --ds-shadow-elevated: 0 8px 20px rgb(17 17 17 / 8%);
  --ds-space-1: 4px;
  --ds-space-2: 8px;
  --ds-space-3: 10px;
  --ds-space-4: 12px;
  --ds-space-5: 14px;
  --ds-space-6: 16px;
  --ds-space-8: 24px;
  --ds-space-10: 32px;
  --ds-space-12: 40px;
  --ds-space-14: 56px;
  --ds-radius-sm: 4px;
  --ds-radius-md: 6px;
  --ds-radius-lg: 8px;
  --ds-radius-pill: 999px;
  --ds-font-size-xs: 13px;
  --ds-font-size-2xs: 10px;
  --ds-font-size-xs-alt: 12px;
  --ds-font-size-sm: 14px;
  --ds-font-size-sm-alt: 12px;
  --ds-font-size-sm-plus: 15px;
  --ds-font-size-md: 16px;
  --ds-font-size-md-plus: 18px;
  --ds-font-size-lg-alt: 20px;
  --ds-font-size-lg: 24px;
  --ds-font-size-xl: 28px;
  --ds-font-size-xl-alt: 29px;
  --ds-font-size-2xl: 32px;
  --ds-font-size-3xl-alt: 36px;
  --ds-font-size-3xl: 40px;
}
@media (min-width: 960px) {
  :root {
    --header-height: 60px;
    --footer-height: 150px;
  }
}

/*
 * PP Neue Montreal: loaded via CDN in template.pug
 *   <link href="https://fonts.cdnfonts.com/css/pp-neue-montreal" rel="stylesheet">
 *
 * Local fonts (place in /public/fonts):
 * - MartinaPlantijn-BoldItalic.woff2
 */
@font-face {
  font-family: "Martina Plantijn";
  src: url("/fonts/MartinaPlantijn-BoldItalic.woff2") format("woff2");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: var(--header-height);
  z-index: 1000000;
  background: #ffffff;
  border-bottom: 1px solid #00c9e8;
}
.main-header.is-menu-open .main-header__menu-line:first-child {
  transform: translateY(0) rotate(45deg);
}
.main-header.is-menu-open .main-header__menu-line:last-child {
  transform: translateY(0) rotate(-45deg);
}
.main-header__container {
  position: relative;
  width: 100%;
  max-width: 1350px;
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--container-padding);
}
.main-header__menu-trigger {
  justify-self: start;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1024px) {
  .main-header__menu-trigger {
    display: none;
  }
}
.main-header__menu-line {
  position: absolute;
  left: 2px;
  width: 20px;
  height: 2px;
  background: #111111;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.main-header__menu-line:first-child {
  transform: translateY(-5px);
}
.main-header__menu-line:last-child {
  transform: translateY(5px);
}
.main-header__brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #050505;
  font-family: var(--font-family-sans, var(--font-family-base));
  z-index: 3;
}
.main-header__brand-logo {
  display: block;
  width: 120px;
  height: 15px;
}
.main-header__actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 48px;
  z-index: 3;
}
@media (min-width: 960px) {
  .main-header__actions {
    width: 100%;
    max-width: 150px;
    position: relative;
    top: 2px;
    left: -2px;
  }
}
.main-header__account {
  display: none;
  font-family: var(--font-family-nav);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .main-header__account {
    display: inline-flex;
  }
  .main-header__account:hover, .main-header__account:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.22em;
  }
}
.main-header__cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-family-nav);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  text-decoration: none;
  z-index: 3;
}
.main-header__cart-text {
  line-height: 1;
}
.main-header__cart-count {
  font-family: var(--font-family-sans, var(--font-family-base));
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  background: #c0ded2;
  color: #003e26;
  position: relative;
  right: -2px;
}
.main-header__nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 24px 12px 20px;
  min-height: calc(100vh - var(--header-height));
  border-top: 1px solid #e5e8ef;
  background: #ffffff;
  z-index: 2;
}
.main-header__nav.is-open {
  display: flex;
}
@media (min-width: 1024px) {
  .main-header__nav {
    display: flex;
    position: static;
    justify-self: start;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-height: 0;
    padding: 0;
    border-top: 0;
    background: transparent;
    pointer-events: auto;
  }
}
.main-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 1024px) {
  .main-header__menu {
    flex-direction: row;
    align-items: center;
    gap: 49px;
    position: relative;
    top: 2px;
    left: -2px;
  }
}
.main-header__item {
  position: relative;
}
@media (min-width: 1024px) {
  .main-header__item--account {
    display: none;
  }
}
@media (min-width: 1024px) {
  .main-header__item:hover > .main-header__submenu, .main-header__item:focus-within > .main-header__submenu {
    display: block;
    visibility: visible;
  }
}
.main-header__item.is-submenu-open > .main-header__link .main-header__link-icon {
  transform: rotate(45deg);
}
.main-header__item.is-submenu-open > .main-header__submenu {
  max-height: 140px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.24s ease, opacity 0.2s ease, visibility 0s linear 0s;
}
.main-header__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-family-serif, serif);
  font-size: 36px;
  line-height: 1.05;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  color: #111111;
  padding: 10px 0;
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .main-header__link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-family-nav);
    font-size: 16px;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    color: #000000;
    white-space: nowrap;
    padding: 0;
    width: auto;
  }
  .main-header__link:hover, .main-header__link:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.22em;
  }
}
.main-header__link-label {
  display: inline-block;
}
.main-header__link-icon {
  font-family: var(--font-family-sans, var(--font-family-base));
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s ease;
  transform: rotate(0deg);
}
@media (min-width: 1024px) {
  .main-header__link-icon {
    display: none;
  }
}
.main-header__submenu {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  list-style: none;
  margin: 0 0 6px;
  padding: 0 0 0 5px;
  transition: max-height 0.24s ease, opacity 0.2s ease, visibility 0s linear 0.24s;
}
@media (min-width: 1024px) {
  .main-header__submenu {
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    min-width: 180px;
    margin: 0;
    padding: 12px 16px;
    max-height: none;
    opacity: 1;
    overflow: visible;
    visibility: hidden;
    transition: opacity 0.15s ease;
    background: #ffffff;
    border: 1px solid #ececec;
    box-shadow: 0 8px 20px rgba(17, 17, 17, 0.08);
  }
}
.main-header__submenu-link {
  display: inline-flex;
  padding: 6px 0;
  font-family: var(--font-family-nav);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #000000;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .main-header__submenu-link {
    display: block;
    padding: 5px 0;
  }
}

body {
  background: var(--bg-body);
  font-family: var(--font-family-base);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-height);
  margin: 0;
}

main {
  flex: 1;
}

.main-footer {
  background: var(--base-color);
  min-height: var(--footer-height);
}

.main-container {
  width: 100%;
  max-width: 3000px;
  padding: 0 15px;
  margin: 0 auto;
}

.content {
  width: 100%;
  max-width: var(--ds-container-max);
  margin: 0 auto;
}

.top-nav {
  width: 100%;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: var(--ds-space-6);
  position: relative;
}
.top-nav__menu-trigger {
  justify-self: start;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 4;
}
.top-nav__menu-line {
  position: absolute;
  left: 2px;
  width: 20px;
  height: 2px;
  background: var(--ds-text-strong);
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}
.top-nav__menu-line:first-child {
  transform: translateY(-5px);
}
.top-nav__menu-line:last-child {
  transform: translateY(5px);
}
.top-nav--menu-open .top-nav__menu-line:first-child {
  transform: translateY(0) rotate(45deg);
}
.top-nav--menu-open .top-nav__menu-line:last-child {
  transform: translateY(0) rotate(-45deg);
}
.top-nav__menu {
  margin: 0;
  padding: 20px var(--container-padding);
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100vw;
  background: var(--ds-surface-base);
  border-top: 1px solid var(--ds-border-subtle);
  z-index: 3;
}
.top-nav__menu--open {
  display: flex;
}
.top-nav__item {
  position: relative;
}
.top-nav__item--submenu-open > .top-nav__link .top-nav__link-icon {
  transform: rotate(45deg);
}
.top-nav__item--submenu-open > .top-nav__submenu {
  max-height: 140px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.22s ease, opacity 0.2s ease, visibility 0s linear 0s;
}
.top-nav__link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  padding: 10px 0;
  font-family: var(--font-family-serif, serif);
  font-size: var(--ds-font-size-3xl-alt);
  line-height: 1.05;
  font-style: italic;
  font-weight: 400;
  color: var(--ds-text-strong);
  background: transparent;
  border: 0;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.top-nav__link--text {
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-md);
  line-height: 1;
  font-style: normal;
}
.top-nav__link-label {
  display: inline-block;
}
.top-nav__link-icon {
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-lg);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.2s ease;
}
.top-nav__submenu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  transition: max-height 0.22s ease, opacity 0.2s ease, visibility 0s linear 0.22s;
}
.top-nav__submenu-link {
  display: inline-flex;
  padding: 6px 0;
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-md);
  line-height: 1;
  font-weight: 400;
  color: var(--ds-text-strong);
  text-decoration: none;
}
.top-nav__brand {
  justify-self: center;
  text-decoration: none;
  z-index: 4;
}
.top-nav__brand-logo {
  display: block;
  width: 120px;
  height: 15px;
}
.top-nav__actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  z-index: 4;
}
.top-nav__action-link {
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-md);
  line-height: 1;
  font-weight: 400;
  color: var(--ds-text-strong);
  text-decoration: none;
}
.top-nav__action-link--account {
  display: none;
}
.top-nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.top-nav__cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-sm-alt);
  line-height: 1;
  background: var(--ds-accent-mint);
  color: var(--ds-text-success);
}
@media (min-width: 1024px) {
  .top-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
  .top-nav__menu-trigger {
    display: none;
  }
  .top-nav__menu, .top-nav__menu--open {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border-top: 0;
    background: transparent;
    gap: 32px;
    z-index: auto;
    justify-self: start;
  }
  .top-nav__link {
    display: inline-flex;
    align-items: center;
    width: auto;
    padding: 0;
    font-family: var(--font-family-nav);
    font-size: var(--ds-font-size-md);
    line-height: 1;
    font-style: normal;
  }
  .top-nav__link-icon {
    display: none;
  }
  .top-nav__submenu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 180px;
    padding: 10px 12px;
    background: var(--ds-surface-base);
    border: 1px solid var(--ds-border-subtle);
    box-shadow: var(--ds-shadow-elevated);
    max-height: none;
    opacity: 1;
    overflow: visible;
    visibility: hidden;
    transition: opacity 0.15s ease;
  }
  .top-nav__item:hover > .top-nav__submenu, .top-nav__item:focus-within > .top-nav__submenu {
    visibility: visible;
  }
  .top-nav__submenu-link {
    display: block;
    padding: 5px 0;
    font-size: var(--ds-font-size-sm-plus);
  }
  .top-nav__item--account-mobile {
    display: none;
  }
  .top-nav__actions {
    display: flex;
    justify-self: end;
  }
  .top-nav__action-link--account {
    display: inline-flex;
  }
}

.storybook {
  padding: 1rem;
  background: #f3f4f6;
}
.storybook__layout {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  min-width: 0;
}
.storybook__sidebar {
  min-width: 0;
}
.storybook__eyebrow, .storybook__title, .storybook__description {
  display: none;
}
.storybook__nav--mobile {
  position: fixed;
  top: calc(var(--header-height) + 0.5rem);
  left: 1rem;
  right: 1rem;
  z-index: 40;
  margin: 0;
  border: 1px solid #d7dce5;
  border-radius: 0.5rem;
  background: #eceef1;
}
.storybook__nav--mobile[open] .storybook__nav-summary::after {
  content: "-";
}
.storybook__nav-summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1d2a3a;
}
.storybook__nav-summary::-webkit-details-marker {
  display: none;
}
.storybook__nav-summary::after {
  content: "+";
  float: right;
}
.storybook__nav-panel {
  padding: 0 0.5rem 0.5rem;
  max-height: 50vh;
  overflow: auto;
}
.storybook__nav--desktop {
  display: none;
}
.storybook__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.storybook__item {
  width: 100%;
}
.storybook__link {
  display: block;
  width: 100%;
  padding: 0.45rem 0.65rem;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  color: #5f6a79;
}
.storybook__link:hover, .storybook__link:focus-visible {
  background: #ffffff;
  border-color: #d7dce5;
  color: #202a37;
}
.storybook__content {
  min-width: 0;
  margin-top: 4.5rem;
}
.storybook__content > [id^=component-],
.storybook__content > #main-header-snippet {
  scroll-margin-top: calc(var(--header-height) + 5rem);
}
.storybook__code-block {
  position: relative;
  padding-top: 2.75rem !important;
}
.storybook__copy-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  border: 1px solid #4a6585;
  background: #1f2d3d;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 0.35rem;
  cursor: pointer;
  line-height: 1;
}
.storybook__copy-btn:hover, .storybook__copy-btn:focus-visible {
  background: #2c3e52;
}
@media (min-width: 1024px) {
  .storybook {
    padding: 1.5rem 1rem 2rem;
    overflow: visible;
  }
  .storybook__layout {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }
  .storybook__sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
    max-height: calc(100vh - var(--header-height) - 2rem);
    overflow: auto;
    padding: 0.75rem;
    border: 1px solid #e1e4ea;
    border-radius: 0.5rem;
    background: #eceef1;
  }
  .storybook__eyebrow, .storybook__title, .storybook__description {
    display: block;
  }
  .storybook__eyebrow {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4a6585;
  }
  .storybook__title {
    margin: 0.5rem 0 0;
    font-size: 1.25rem;
    line-height: 1.2;
    color: #132235;
  }
  .storybook__description {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #5d6a7a;
  }
  .storybook__nav--mobile {
    display: none;
  }
  .storybook__nav--desktop {
    display: block;
    margin-top: 1rem;
  }
  .storybook__link--desktop {
    font-size: 0.95rem;
  }
  .storybook__content {
    margin-top: 0;
    overflow: visible;
  }
  .storybook__content > [id^=component-],
  .storybook__content > #main-header-snippet {
    scroll-margin-top: calc(var(--header-height) + 1rem);
  }
}

.hero-product {
  width: 100%;
  padding-top: var(--ds-space-12);
  box-sizing: border-box;
}
.hero-product__layout {
  width: 100%;
  max-width: var(--ds-container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-8);
}
@media (min-width: 960px) {
  .hero-product__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 35px;
  }
}
@media (min-width: 1280px) {
  .hero-product__layout {
    gap: 70px;
  }
}
.hero-product__column {
  width: 100%;
}
.hero-product__column--left {
  min-height: 240px;
}
@media (min-width: 960px) {
  .hero-product__column--left {
    flex: 0 0 500px;
    width: 500px;
  }
}
@media (min-width: 1280px) {
  .hero-product__column--left {
    flex: 0 0 613px;
    width: 613px;
  }
}
@media (min-width: 960px) {
  .hero-product__column--right {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    padding-top: 0;
  }
}
@media (min-width: 1280px) {
  .hero-product__column--right {
    padding-top: 57px;
  }
}
.hero-product__title {
  margin: 0;
  font-size: var(--ds-font-size-2xl);
  line-height: 1;
  font-weight: 500;
  color: var(--ds-text-strong);
}

.hero-product-grid {
  width: 100%;
}
.hero-product-grid__carousel {
  width: 100%;
}
.hero-product-grid__slide {
  box-sizing: border-box;
  min-width: 0;
}
.hero-product-grid__image {
  width: 100%;
  display: block;
  object-fit: cover;
}
.hero-product-grid__card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ds-radius-md);
  background: var(--ds-surface-base);
}
.hero-product-grid__quote-block {
  display: none;
}
.hero-product-grid__quote {
  margin: 0;
  text-align: center;
}
.hero-product-grid__quote-copy {
  margin: 0;
  font-family: var(--font-family-serif, serif);
  font-style: italic;
  font-size: var(--ds-font-size-xl);
  line-height: 1.2;
  color: var(--ds-text-strong);
}
.hero-product-grid__quote-author {
  display: block;
  margin-top: 0.5em;
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-sm);
  font-style: normal;
  color: var(--ds-text-body);
  text-align: right;
}
@media (max-width: 959px) {
  .hero-product-grid__carousel.swiper {
    width: 100%;
    overflow: hidden;
  }
  .hero-product-grid__carousel .swiper-slide {
    grid-column: unset;
    grid-row: unset;
    box-sizing: border-box;
    height: auto;
  }
}
@media (max-width: 767px) {
  .hero-product-grid__carousel .swiper-slide {
    width: 320px;
    max-width: 320px;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .hero-product-grid__carousel .swiper-slide {
    width: 400px;
    max-width: 400px;
  }
}
@media (min-width: 960px) {
  .hero-product-grid__carousel.swiper {
    overflow: visible;
  }
  .hero-product-grid__carousel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .hero-product-grid__carousel .swiper-wrapper {
    display: contents;
  }
  .hero-product-grid__slide--tile-hero {
    grid-column: 1/-1;
    grid-row: 1;
    width: 100% !important;
    max-width: none;
  }
  .hero-product-grid__slide--tile-2 {
    grid-column: 1;
    grid-row: 2;
  }
  .hero-product-grid__slide--tile-3 {
    grid-column: 1;
    grid-row: 3;
  }
  .hero-product-grid__slide--tile-4 {
    grid-column: 2;
    grid-row: 2;
  }
  .hero-product-grid__slide--tile-5 {
    grid-column: 2;
    grid-row: 3;
  }
  .hero-product-grid__slide--tile-2, .hero-product-grid__slide--tile-3, .hero-product-grid__slide--tile-4, .hero-product-grid__slide--tile-5 {
    width: 100% !important;
    max-width: none;
  }
  .hero-product-grid__slide--tile-2, .hero-product-grid__slide--tile-4 {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .hero-product-grid__quote-block {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
    padding: 20px;
    border-radius: var(--ds-radius-md);
    background: var(--ds-surface-selected);
  }
}

.hero-product-adjective {
  list-style: none;
  margin: 0 0 38px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 960px) and (max-width: 1279px) {
  .hero-product-adjective {
    margin-bottom: 20px;
  }
}
.hero-product-adjective__item {
  padding: 6px 12px;
  border-radius: var(--ds-radius-pill);
  font-size: var(--ds-font-size-sm);
  line-height: 1.2;
  color: var(--ds-text-muted);
  background: var(--ds-surface-muted);
}

.hero-product-benefits {
  margin: 0 0 48px;
  padding-left: 18px;
  font-size: var(--ds-font-size-sm);
  line-height: 1.4;
  color: var(--ds-text-body);
}
@media (min-width: 960px) and (max-width: 1279px) {
  .hero-product-benefits {
    margin-bottom: 20px;
  }
}

.hero-product-purchase {
  border: 1px solid var(--ds-border-card);
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.hero-product-purchase__option {
  padding: 12px 14px;
  border-bottom: 1px solid var(--ds-border-card);
  cursor: pointer;
}
.hero-product-purchase__option:last-child {
  border-bottom: 0;
}
.hero-product-purchase__option[aria-pressed=true] {
  background: var(--ds-surface-selected-strong);
  box-shadow: inset 0 0 0 2px var(--ds-text-strong);
}
.hero-product-purchase__option[aria-pressed=true] .hero-product-purchase__radio {
  border-color: var(--ds-text-strong);
  background: radial-gradient(circle at center, var(--ds-text-strong) 3px, transparent 3px), var(--ds-surface-base);
}
.hero-product-purchase__option--first {
  min-height: 75px;
}
.hero-product-purchase__option--second {
  min-height: 133px;
}
.hero-product-purchase__option--third {
  min-height: 48px;
}
.hero-product-purchase__option-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-product-purchase__radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid var(--ds-text-muted);
  background: var(--ds-surface-base);
  flex-shrink: 0;
}
.hero-product-purchase__option-title {
  margin: 0;
  font-size: var(--ds-font-size-md);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ds-text-strong);
}
.hero-product-purchase__option-price {
  margin: 0 0 0 auto;
  font-size: var(--ds-font-size-sm);
  font-weight: 600;
  color: var(--ds-text-strong);
}
.hero-product-purchase__option-price-old {
  margin-right: 4px;
  text-decoration: line-through;
  color: var(--ds-text-muted);
  font-weight: 400;
}
.hero-product-purchase__option-copy {
  margin: 6px 0 0 22px;
  font-size: var(--ds-font-size-sm);
  color: var(--ds-text-body);
}
.hero-product-purchase__badge {
  padding: 2px 6px;
  border-radius: var(--ds-radius-sm);
  background: var(--ds-surface-base);
  font-size: var(--ds-font-size-2xs);
  line-height: 1;
  color: var(--ds-text-body);
}
.hero-product-purchase__option-list {
  margin: 6px 0 0 22px;
  padding-left: 12px;
  font-size: var(--ds-font-size-sm-alt);
  line-height: 1.3;
}

.hero-product-shade {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 18px;
  row-gap: 8px;
  align-items: center;
}
@media (min-width: 960px) and (max-width: 1279px) {
  .hero-product-shade {
    margin-bottom: 20px;
  }
}
.hero-product-shade__info {
  margin: 0;
}
.hero-product-shade__title {
  margin: 0;
  font-size: var(--ds-font-size-md);
  font-weight: 600;
}
.hero-product-shade__copy {
  margin: 4px 0 10px;
  font-size: var(--ds-font-size-sm);
  color: var(--ds-text-muted);
}
.hero-product-shade__swatches {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  justify-self: end;
}
.hero-product-shade__swatch-item {
  list-style: none;
}
.hero-product-shade__swatch {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  padding: 0;
  border: 2px solid transparent;
  background: var(--swatch-color, transparent);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}
@media (min-width: 680px) {
  .hero-product-shade__swatch {
    width: 36px;
    height: 36px;
  }
}
.hero-product-shade__swatch[aria-pressed=true] {
  border: 0;
  box-shadow: 0 0 0 3px var(--ds-surface-base), 0 0 0 5px var(--ds-text-strong);
}
.hero-product-shade__link {
  grid-column: 1/-1;
  font-size: var(--ds-font-size-xs-alt);
  color: var(--ds-text-strong);
}
.hero-product-shade--swatches-only {
  margin: 0;
  display: block;
}
.hero-product-shade--swatches-only .hero-product-shade__swatches {
  justify-self: unset;
}

.hero-product-trust.swiper {
  list-style: none;
  margin: 30px 0 30px;
  padding: 0;
  width: 100%;
}
.hero-product-trust__item.swiper-slide {
  display: flex;
  gap: 6px;
  align-items: center;
  box-sizing: border-box;
  width: 200px;
  margin: 0;
  font-size: 12px;
  line-height: 1.2;
  color: var(--ds-text-body);
}
.hero-product-trust__icon {
  width: 55px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-info-product {
  width: 100%;
}
.hero-info-product__header {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 960px) and (max-width: 1279px) {
  .hero-info-product__header {
    margin-bottom: 20px;
  }
}
.hero-info-product__heading {
  min-width: 0;
}
.hero-info-product__title {
  margin: 0;
  font-size: var(--ds-font-size-2xl);
  line-height: 1;
  font-weight: 500;
  color: var(--ds-text-strong);
}
.hero-info-product__subtitle {
  margin: 10px 0 0;
  font-size: var(--ds-font-size-md);
  line-height: 1.2;
  color: var(--ds-text-body);
}
.hero-info-product__cta {
  margin-top: 8px;
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ds-text-strong);
  color: var(--ds-text-inverse);
  text-decoration: none;
  font-size: var(--ds-font-size-lg);
  line-height: 1;
}
.hero-info-product__cta-price-old {
  text-decoration: line-through;
  opacity: 0.75;
  font-size: var(--ds-font-size-md);
}
.hero-info-product__cta-price-new {
  font-weight: 600;
  font-size: var(--ds-font-size-xl-alt);
}
.hero-info-product__shipping {
  margin: 8px 0 24px;
  font-size: var(--ds-font-size-sm-alt);
  text-align: center;
  color: var(--ds-text-body);
}
.hero-info-product__placeholder {
  margin: 0;
  font-size: var(--ds-font-size-sm);
  color: var(--ds-text-muted);
}

.hero-rating {
  text-align: right;
  flex-shrink: 0;
}
.hero-rating__score {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  --rating-value: 0;
}
.hero-rating__score:has(.hero-rating__number[data-rating="0"]) {
  --rating-value: 0;
}
.hero-rating__score:has(.hero-rating__number[data-rating="0.5"]) {
  --rating-value: 0.5;
}
.hero-rating__score:has(.hero-rating__number[data-rating="1"]) {
  --rating-value: 1;
}
.hero-rating__score:has(.hero-rating__number[data-rating="1.5"]) {
  --rating-value: 1.5;
}
.hero-rating__score:has(.hero-rating__number[data-rating="2"]) {
  --rating-value: 2;
}
.hero-rating__score:has(.hero-rating__number[data-rating="2.5"]) {
  --rating-value: 2.5;
}
.hero-rating__score:has(.hero-rating__number[data-rating="3"]) {
  --rating-value: 3;
}
.hero-rating__score:has(.hero-rating__number[data-rating="3.5"]) {
  --rating-value: 3.5;
}
.hero-rating__score:has(.hero-rating__number[data-rating="4"]) {
  --rating-value: 4;
}
.hero-rating__score:has(.hero-rating__number[data-rating="4.5"]) {
  --rating-value: 4.5;
}
.hero-rating__score:has(.hero-rating__number[data-rating="4.7"]) {
  --rating-value: 4.7;
}
.hero-rating__score:has(.hero-rating__number[data-rating="5"]) {
  --rating-value: 5;
}
.hero-rating__stars {
  position: relative;
  display: inline-flex;
  gap: 2px;
}
.hero-rating__stars-track, .hero-rating__stars-fill {
  display: flex;
  gap: 1px;
}
.hero-rating__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: calc(var(--rating-value, 0) / 5 * 100%);
}
.hero-rating__star {
  flex-shrink: 0;
  display: block;
}
.hero-rating__number {
  font-size: var(--ds-font-size-2xl);
  font-weight: 500;
  line-height: 1;
}
.hero-rating__reviews {
  margin: 10px 0 0;
  font-size: var(--ds-font-size-md);
}

.hero-product-faq {
  border: 1px solid var(--ds-border-card);
  border-radius: var(--ds-radius-lg);
  margin-bottom: 14px;
}
.hero-product-faq__item {
  border-bottom: 1px solid var(--ds-border-card);
}
.hero-product-faq__item:last-child {
  border-bottom: 0;
}
.hero-product-faq__item[open] .hero-product-faq__summary::after {
  content: "−";
}
.hero-product-faq__summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  font-size: 20px;
  cursor: pointer;
}
.hero-product-faq__summary::-webkit-details-marker {
  display: none;
}
.hero-product-faq__summary::after {
  content: "+";
  font-size: var(--ds-font-size-lg-alt);
  line-height: 1;
}
.hero-product-faq__content {
  padding: 0 14px 14px;
}

.hero-extra-products {
  margin: 0 0 var(--ds-space-12);
}
.hero-extra-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--ds-space-6);
}
.hero-extra-products__title {
  margin: 0;
  font-size: var(--ds-font-size-xl);
  line-height: 1.2;
  font-weight: normal;
  color: var(--ds-text-strong);
}
@media (min-width: 960px) {
  .hero-extra-products__title {
    font-size: 20px;
    line-height: 1.1;
  }
}
.hero-extra-products__nav {
  display: flex;
  align-items: center;
  gap: var(--ds-space-2);
}
.hero-extra-products__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ds-border-card);
  border-radius: var(--ds-radius-pill);
  background: var(--ds-surface-base);
  color: var(--ds-text-strong);
  cursor: pointer;
}
.hero-extra-products__nav-btn:hover:not(:disabled) {
  border-color: var(--ds-text-muted);
}
.hero-extra-products__nav-btn:disabled, .hero-extra-products__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.hero-extra-products__slider.swiper {
  width: 100%;
}
.hero-extra-products__card {
  margin: 0;
  height: auto;
  width: 324px;
  flex-shrink: 0;
}
.hero-extra-products__card-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--ds-space-6);
  padding: 0;
  background: transparent;
  width: 100%;
}
.hero-extra-products__media {
  margin: 0;
  flex-shrink: 0;
  width: 130px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
}
.hero-extra-products__image {
  display: block;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.08));
}
.hero-extra-products__info {
  flex: 1;
  min-width: 0;
}
.hero-extra-products__badge {
  display: inline-block;
  padding: 2px 10px;
  margin-bottom: var(--ds-space-2);
  font-size: var(--ds-font-size-2xs);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ds-text-strong);
  background: var(--ds-accent-mint);
  border-radius: var(--ds-radius-pill);
}
.hero-extra-products__name {
  margin: 0 0 var(--ds-space-2);
  font-size: var(--ds-font-size-md-plus);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ds-text-strong);
}
.hero-extra-products__desc {
  margin: 0 0 var(--ds-space-4);
  font-size: var(--ds-font-size-sm);
  line-height: 1.4;
  color: var(--ds-text-body);
}
.hero-extra-products__rating {
  --rating-value: 0;
  display: flex;
  align-items: center;
  gap: var(--ds-space-2);
  margin-bottom: var(--ds-space-5);
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="0"]) {
  --rating-value: 0;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="0.5"]) {
  --rating-value: 0.5;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="1"]) {
  --rating-value: 1;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="1.5"]) {
  --rating-value: 1.5;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="2"]) {
  --rating-value: 2;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="2.5"]) {
  --rating-value: 2.5;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="3"]) {
  --rating-value: 3;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="3.5"]) {
  --rating-value: 3.5;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="4"]) {
  --rating-value: 4;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="4.5"]) {
  --rating-value: 4.5;
}
.hero-extra-products__rating:has(.hero-extra-products__rating-number[data-rating="5"]) {
  --rating-value: 5;
}
.hero-extra-products__stars {
  position: relative;
  display: inline-flex;
  gap: 1px;
}
.hero-extra-products__stars-track, .hero-extra-products__stars-fill {
  display: flex;
  gap: 1px;
}
.hero-extra-products__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  width: calc(var(--rating-value, 0) / 5 * 100%);
}
.hero-extra-products__star {
  flex-shrink: 0;
  display: block;
}
.hero-extra-products__rating-number {
  font-size: var(--ds-font-size-sm);
  font-weight: 600;
  color: var(--ds-text-strong);
}
.hero-extra-products__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px var(--ds-space-4);
  font-size: var(--ds-font-size-sm);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ds-text-strong);
  background: var(--ds-surface-base);
  border: 1px solid var(--ds-text-strong);
  border-radius: var(--ds-radius-sm);
  text-decoration: none;
}
.hero-extra-products__cta:hover {
  background: var(--ds-surface-muted);
}
.hero-extra-products__cta-label {
  text-transform: uppercase;
}
.hero-extra-products__cta-price {
  font-weight: 700;
}
.hero-extra-products__pagination {
  margin-top: var(--ds-space-6);
  display: flex;
  justify-content: center;
}
.hero-extra-products__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--ds-text-muted);
  opacity: 0.4;
}
.hero-extra-products__pagination .swiper-pagination-bullet-active {
  background: var(--ds-text-strong);
  opacity: 1;
}

.compare-shades {
  border-radius: var(--ds-radius-lg);
  margin-bottom: var(--ds-space-12);
  padding-top: 80px;
}
.compare-shades__inner {
  width: 100%;
  background-color: #e8d5c4;
  background-image: url("images/shades-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
  padding-bottom: 30px;
}
@media (min-width: 960px) {
  .compare-shades__inner {
    padding-bottom: 0;
  }
}
.compare-shades__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding: 0 25px;
}
.compare-shades__title {
  margin: 0;
  font-size: var(--ds-font-size-md-plus);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ds-text-inverse);
}
@media (min-width: 960px) {
  .compare-shades__title {
    font-size: var(--ds-font-size-xl);
  }
}
.compare-shades__nav {
  display: flex;
  align-items: center;
  gap: var(--ds-space-2);
}
.compare-shades__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--ds-radius-pill);
  background: transparent;
  color: var(--ds-text-inverse);
  cursor: pointer;
}
.compare-shades__nav-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--ds-text-inverse);
}
.compare-shades__nav-btn:disabled, .compare-shades__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.compare-shades__nav-icon {
  flex-shrink: 0;
}
.compare-shades__slider.swiper {
  width: 100%;
  margin-bottom: var(--ds-space-6);
}
.compare-shades__slide {
  margin: 0;
  width: 328px;
  height: 280px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 680px) {
  .compare-shades__slide {
    height: 340px;
  }
}
@media (min-width: 960px) {
  .compare-shades__slide {
    height: 380px;
  }
}
.compare-shades__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.compare-shades__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--ds-space-6);
  row-gap: var(--ds-space-4);
  min-height: 80px;
  padding: 0 25px;
}
@media (min-width: 960px) {
  .compare-shades__footer {
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
}
.compare-shades__footer .hero-product-shade--swatches-only {
  justify-self: end;
}
.compare-shades__shade-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.compare-shades__shade-tag {
  font-size: var(--ds-font-size-2xs);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}
.compare-shades__shade-name {
  font-size: var(--ds-font-size-md);
  line-height: 1.2;
  color: var(--ds-text-inverse);
}
@media (min-width: 680px) {
  .compare-shades__shade-name {
    font-size: var(--ds-font-size-md-plus);
  }
}
.compare-shades__description {
  grid-column: 1/-1;
  margin: 0;
  font-size: var(--ds-font-size-sm);
  line-height: 1.4;
  color: var(--ds-text-inverse);
  text-align: center;
  max-width: 340px;
  justify-self: center;
}
@media (min-width: 960px) {
  .compare-shades__description {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 380px;
    text-align: center;
  }
}
.compare-shades__description-break {
  display: inline;
}
@media (min-width: 960px) {
  .compare-shades__description-break {
    display: none;
  }
}
.compare-shades__pagination {
  grid-column: 1/-1;
  display: flex;
  justify-content: center;
  justify-self: center;
}
@media (min-width: 960px) {
  .compare-shades__pagination {
    display: none;
  }
}
.compare-shades__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--ds-text-inverse);
  opacity: 0.45;
}
.compare-shades__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.specific-benefits {
  --specific-benefits-card-bg: #c8583a;
  --specific-benefits-radius: var(--ds-radius-lg);
  margin-bottom: var(--ds-space-12);
}
.specific-benefits__title {
  margin: 0 0 var(--ds-space-8);
  font-size: var(--ds-font-size-xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ds-text-strong);
}
@media (min-width: 960px) {
  .specific-benefits__title {
    font-size: var(--ds-font-size-2xl);
  }
}
.specific-benefits__grid {
  display: grid;
  gap: var(--ds-space-6);
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .specific-benefits__grid {
    grid-template-columns: 2fr 1fr;
    align-items: stretch;
  }
  .specific-benefits__card--full {
    grid-column: 1/-1;
  }
  .specific-benefits__card--wide {
    grid-column: 1;
  }
  .specific-benefits__card--narrow {
    grid-column: 2;
  }
}
.specific-benefits__card {
  margin: 0;
  min-height: 417px;
  padding: var(--ds-space-8) var(--ds-space-8) var(--ds-space-10);
  background: #c0573d;
  border-radius: var(--specific-benefits-radius);
  color: var(--ds-text-inverse);
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 960px) {
  .specific-benefits__card {
    padding: var(--ds-space-10) var(--ds-space-10) var(--ds-space-12);
  }
}
.specific-benefits__number {
  margin: 0 0 var(--ds-space-4);
  font-size: var(--ds-font-size-3xl);
  font-weight: 600;
  line-height: 1;
  color: var(--ds-text-inverse);
  position: relative;
  z-index: 1;
}
@media (min-width: 960px) {
  .specific-benefits__number {
    font-size: var(--ds-font-size-3xl-alt);
    margin-bottom: var(--ds-space-5);
  }
}
.specific-benefits__copy {
  margin: 0;
  font-size: var(--ds-font-size-md-plus);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ds-text-inverse);
  max-width: 250px;
  position: relative;
  z-index: 1;
}
.specific-benefits__image {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: min(52%, 280px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}
.specific-benefits__image--1 {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 960px) {
  .specific-benefits__image--1 {
    left: unset;
    width: 881px;
    height: 417px;
    right: 0;
    bottom: 0;
  }
}
.specific-benefits__image--2 {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 960px) {
  .specific-benefits__image--2 {
    left: unset;
    width: 881px;
    height: 417px;
    right: -130px;
    bottom: 0;
  }
}
.specific-benefits__image--3 {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.time-line {
  --time-line-marker-size: 8px;
  --time-line-row-gap: var(--ds-space-8);
  --time-line-content-max: 350px;
  margin-bottom: var(--ds-space-14);
}
.time-line__title {
  margin: 0 0 var(--ds-space-10);
  font-size: var(--ds-font-size-xl);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ds-text-strong);
}
@media (min-width: 960px) {
  .time-line__title {
    font-size: var(--ds-font-size-2xl);
  }
}
.time-line__items {
  position: relative;
  display: grid;
  gap: var(--time-line-row-gap);
  padding-left: 0;
}
.time-line__items::before {
  content: "";
  position: absolute;
  left: calc(var(--time-line-marker-size) / 2);
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: var(--ds-text-muted);
}
.time-line__row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  padding-bottom: var(--ds-space-2);
}
.time-line__marker {
  width: var(--time-line-marker-size);
  height: var(--time-line-marker-size);
  border-radius: 50%;
  background: var(--ds-text-strong);
  position: absolute;
  left: 0;
  top: 8px;
  z-index: 1;
}
.time-line__row-content {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-4);
  min-width: 0;
  width: 100%;
  padding-top: 2px;
  padding-left: calc(var(--time-line-marker-size) + var(--ds-space-4));
}
.time-line__week-label {
  margin: 0;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 2px 8px;
  border-radius: var(--ds-radius-pill);
  font-size: var(--ds-font-size-sm);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ds-text-strong);
}
@media (min-width: 960px) {
  .time-line__week-label {
    font-size: var(--ds-font-size-md);
  }
}
.time-line__slide-grid {
  display: grid;
  grid-template-columns: minmax(120px, var(--time-line-content-max)) 1fr;
  gap: var(--ds-space-4);
  align-items: start;
}
.time-line__visual {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  width: 100%;
  max-width: var(--time-line-content-max);
  border-radius: var(--ds-radius-sm);
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.time-line__figure {
  margin: 0;
  position: relative;
  border-radius: var(--ds-radius-xs);
  overflow: hidden;
  aspect-ratio: 1/0.78;
  max-width: 100%;
}
.time-line__figure--highlight::after {
  content: "";
  position: absolute;
  inset: 10%;
  border: 2px dashed var(--ds-surface-base);
  border-radius: var(--ds-radius-sm);
  pointer-events: none;
  z-index: 1;
}
.time-line__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.time-line__benefit-box {
  padding: var(--ds-space-4) var(--ds-space-5);
  background: var(--ds-swatch-2);
  border-radius: 0 0 var(--ds-radius-xs) var(--ds-radius-xs);
}
.time-line__benefit-line {
  margin: 0;
  font-size: var(--ds-font-size-xs-alt);
  line-height: 1.35;
  color: var(--ds-text-strong);
}
.time-line__benefit-line + .time-line__benefit-line {
  margin-top: var(--ds-space-2);
}
.time-line__list {
  margin: 0;
  padding-left: 1.1em;
  font-size: var(--ds-font-size-sm);
  line-height: 1.45;
  color: var(--ds-text-strong);
  padding-top: var(--ds-space-2);
}
.time-line__list-item {
  margin: 0;
}
.time-line__list-item + .time-line__list-item {
  margin-top: var(--ds-space-2);
}
@media (max-width: 767px) {
  .time-line {
    --time-line-row-gap: var(--ds-space-6);
  }
  .time-line__items {
    padding-left: 0;
    padding-right: 0;
  }
  .time-line__items::before {
    left: calc(25px + var(--time-line-marker-size) / 2);
  }
  .time-line__row-content {
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
  }
  .time-line__marker {
    left: 25px;
  }
  .time-line__slide-grid {
    grid-template-columns: 1fr;
    gap: var(--ds-space-3);
    justify-items: start;
    width: 100%;
    max-width: 100%;
  }
  .time-line__list {
    display: none;
  }
  .time-line__week-label {
    font-size: var(--ds-font-size-xs-alt);
    padding: 2px 6px 2px 45px;
  }
  .time-line__visual {
    width: 100%;
    max-width: var(--time-line-content-max);
    align-self: stretch;
  }
  .time-line__figure {
    width: 100%;
    max-width: 100%;
  }
  .time-line__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .time-line__benefit-box {
    width: 100%;
    box-sizing: border-box;
  }
}

.clinically-validated {
  margin-bottom: var(--ds-space-14);
}
.clinically-validated__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--ds-space-6);
  margin-bottom: var(--ds-space-8);
}
.clinically-validated__title-group {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-2);
  min-width: 0;
}
.clinically-validated__title {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--ds-font-size-lg);
  font-weight: 500;
  line-height: 1.2;
  color: var(--ds-text-strong);
  text-align: left;
}
@media (min-width: 960px) {
  .clinically-validated__title {
    font-size: var(--ds-font-size-lg);
  }
}
.clinically-validated__hint {
  margin: 0;
  max-width: 156px;
  font-family: var(--font-family-sans);
  font-size: var(--ds-font-size-xs-alt);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ds-text-muted);
}
@media (min-width: 960px) {
  .clinically-validated__hint {
    display: none;
  }
}
.clinically-validated__nav {
  display: flex;
  align-items: center;
  gap: var(--ds-space-2);
  flex-shrink: 0;
}
.clinically-validated__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ds-border-card);
  border-radius: var(--ds-radius-pill);
  background: var(--ds-surface-base);
  color: var(--ds-text-strong);
  cursor: pointer;
}
.clinically-validated__nav-btn:hover:not(:disabled) {
  border-color: var(--ds-text-muted);
}
.clinically-validated__nav-btn:disabled, .clinically-validated__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.clinically-validated__body {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.clinically-validated__slider.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.clinically-validated__slide.swiper-slide {
  width: min(100%, 380px);
  height: auto;
  box-sizing: border-box;
}
.clinically-validated__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  border: 1px solid var(--ds-border-soft);
  border-radius: var(--ds-radius-lg);
  background: var(--ds-surface-base);
  box-shadow: var(--ds-shadow-elevated);
  overflow: hidden;
}
.clinically-validated__card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--ds-space-5) var(--ds-space-6);
  background: var(--ds-surface-base);
}
.clinically-validated__stat {
  margin: 0;
  font-family: var(--font-family-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ds-text-strong);
}
.clinically-validated__stat-copy {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--ds-text-strong);
}
.clinically-validated__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ds-border-soft);
}
.clinically-validated__panel {
  position: relative;
  margin: 0;
  min-width: 0;
}
.clinically-validated__panel--week-6 {
  border-left: 1px solid var(--ds-border-soft);
}
.clinically-validated__week-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 6px 10px;
  font-family: var(--font-family-sans);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: var(--ds-text-strong);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
}
.clinically-validated__panel-media {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #e9e2dc;
}
.clinically-validated__panel-media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 85%;
  height: auto;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.clinically-validated__panel-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clinically-validated__pagination {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  margin-top: var(--ds-space-8);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.clinically-validated__pagination .swiper-pagination-bullet {
  position: relative;
  left: auto;
  top: auto;
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--ds-text-muted);
  opacity: 0.4;
}
.clinically-validated__pagination .swiper-pagination-bullet-active {
  background: var(--ds-text-strong);
  opacity: 1;
}

.skyn-gallery {
  margin-bottom: var(--ds-space-14);
}
.skyn-gallery__intro {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-4);
  min-width: 0;
  margin: 0 0 var(--ds-space-8);
  text-align: left;
}
.skyn-gallery__slider-outer {
  width: 100%;
  margin-top: var(--ds-space-2);
  min-width: 0;
}
.skyn-gallery__slider-inner {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0;
}
.skyn-gallery__slider-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--ds-space-2);
  margin-bottom: var(--ds-space-6);
}
.skyn-gallery__title {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--ds-font-size-lg);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ds-text-strong);
}
.skyn-gallery__average-label {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--ds-font-size-sm);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ds-text-muted);
}
.skyn-gallery__rating {
  width: 100%;
}
.skyn-gallery__rating .hero-rating__score.skyn-gallery__rating-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--ds-space-2);
  margin: 0;
  width: 100%;
  min-width: 0;
}
.skyn-gallery__rating .hero-rating__number {
  display: block;
  line-height: 1;
}
.skyn-gallery__rating-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--ds-space-4) var(--ds-space-6);
  width: fit-content;
  min-width: 0;
}
.skyn-gallery__rating-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  text-align: left;
}
.skyn-gallery__reviews {
  margin: 0;
  font-family: var(--font-family-sans);
  font-size: var(--ds-font-size-sm);
  font-weight: 400;
  line-height: 1.35;
  color: var(--ds-text-muted);
  text-align: left;
}
.skyn-gallery__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--ds-border-card);
  border-radius: var(--ds-radius-pill);
  background: var(--ds-surface-base);
  color: var(--ds-text-strong);
  cursor: pointer;
}
.skyn-gallery__nav-btn:hover:not(:disabled) {
  border-color: var(--ds-text-muted);
}
.skyn-gallery__nav-btn:disabled, .skyn-gallery__nav-btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.skyn-gallery__body {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
.skyn-gallery__slider.swiper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: var(--ds-space-4);
}
.skyn-gallery__slide.swiper-slide {
  width: 240px;
  height: auto;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
}
@media (min-width: 960px) {
  .skyn-gallery__slide.swiper-slide {
    width: 370px;
  }
}
.skyn-gallery__slide.swiper-slide-active {
  background: transparent;
}
.skyn-gallery__figure {
  margin: 0;
  padding: 0;
  height: 300px;
  border-radius: var(--ds-radius-lg);
  overflow: hidden;
  background: transparent;
  transform: scale(0.94);
  transform-origin: center center;
  transition: transform 0.35s ease;
}
@media (min-width: 960px) {
  .skyn-gallery__figure {
    width: 370px;
    height: 462px;
  }
}
.skyn-gallery__slide.swiper-slide-active .skyn-gallery__figure {
  transform: scale(1.06);
}
.skyn-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
}
.skyn-gallery__pagination {
  position: relative;
  left: auto;
  bottom: auto;
  width: 100%;
  margin-top: var(--ds-space-8);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.skyn-gallery__pagination .swiper-pagination-bullet {
  position: relative;
  left: auto;
  top: auto;
  width: 8px;
  height: 8px;
  margin: 0;
  background: var(--ds-text-muted);
  opacity: 0.4;
}
.skyn-gallery__pagination .swiper-pagination-bullet-active {
  background: var(--ds-text-strong);
  opacity: 1;
}

.main-footer {
  background: var(--base-color);
  min-height: var(--footer-height);
}

.design-system {
  padding: var(--ds-space-10) var(--container-padding) var(--ds-space-14);
  background: var(--ds-surface-base);
}
.design-system__container {
  width: 100%;
  max-width: var(--ds-container-max);
  margin: 0 auto;
}
.design-system__hero {
  margin-bottom: var(--ds-space-12);
}
.design-system__eyebrow {
  margin: 0;
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ds-text-muted);
}
.design-system__title {
  margin: var(--ds-space-3) 0 0;
  font-family: var(--font-family-sans, var(--font-family-base));
  font-size: var(--ds-font-size-3xl);
  font-weight: 500;
  line-height: 1;
  color: var(--ds-text-strong);
}
.design-system__intro {
  margin: var(--ds-space-5) 0 0;
  font-size: var(--ds-font-size-md);
  line-height: 1.4;
  color: var(--ds-text-body);
}
.design-system__section {
  padding: var(--ds-space-8) 0;
  border-top: 1px solid var(--ds-section-border);
}
.design-system__section-title {
  margin: 0 0 var(--ds-space-6);
  font-size: var(--ds-font-size-lg);
  font-weight: 500;
  line-height: 1.1;
}
.design-system__swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--ds-space-4);
}
.design-system__swatch {
  padding: var(--ds-space-5);
  border: 1px solid var(--ds-border-soft);
  border-radius: var(--ds-radius-lg);
}
.design-system__swatch-color {
  display: block;
  width: 100%;
  height: 44px;
  border-radius: var(--ds-radius-md);
}
.design-system__swatch-name, .design-system__swatch-value {
  margin: var(--ds-space-3) 0 0;
  font-size: var(--ds-font-size-sm);
}
.design-system__swatch-value {
  color: var(--ds-text-muted);
  margin-top: var(--ds-space-1);
}
.design-system__type-list {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-5);
}
.design-system__type-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: var(--ds-space-4);
  align-items: baseline;
}
.design-system__type-label {
  margin: 0;
  font-size: var(--ds-font-size-xs);
  color: var(--ds-text-muted);
}
.design-system__type-sample {
  margin: 0;
}
.design-system__type-sample--xl {
  font-size: var(--ds-font-size-2xl);
  font-weight: 500;
}
.design-system__type-sample--md {
  font-size: var(--ds-font-size-md);
}
.design-system__type-sample--quote {
  font-family: var(--font-family-serif, serif);
  font-style: italic;
  font-size: var(--ds-font-size-xl);
}
.design-system__type-sample--nav {
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-md);
}
.design-system__controls {
  display: flex;
  flex-direction: column;
  gap: var(--ds-space-5);
}
.design-system__btn {
  height: 46px;
  padding: 0 var(--ds-space-6);
  border-radius: var(--ds-radius-sm);
  font-family: var(--font-family-nav);
  font-size: var(--ds-font-size-md);
  cursor: pointer;
}
.design-system__btn--primary {
  border: 1px solid var(--ds-text-strong);
  background: var(--ds-text-strong);
  color: var(--ds-surface-base);
}
.design-system__btn--ghost {
  border: 1px solid #d8d8d8;
  background: var(--ds-surface-base);
  color: var(--ds-text-strong);
}
.design-system__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--ds-space-2);
}
.design-system__pill {
  padding: 6px var(--ds-space-4);
  border-radius: var(--ds-radius-pill);
  font-size: var(--ds-font-size-sm);
  background: var(--ds-surface-muted);
  color: var(--ds-text-muted);
}
.design-system__control-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-6);
}
.design-system__control-block {
  padding: var(--ds-space-5);
  border: 1px solid var(--ds-border-soft);
  border-radius: var(--ds-radius-lg);
}
.design-system__block-label {
  margin: 0 0 var(--ds-space-3);
  font-size: var(--ds-font-size-sm);
  font-weight: 500;
}
.design-system__tone-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--ds-space-3);
}
.design-system__tone {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e3e3e3;
}
.design-system__tone--active {
  border-color: #000000;
  border-width: 3px;
}
.design-system__radio-row {
  display: flex;
  gap: var(--ds-space-4);
}
.design-system__radio {
  width: 20px;
  height: 20px;
  border: 2px solid #cccccc;
  border-radius: 50%;
  background: #ffffff;
}
.design-system__radio--active {
  border-color: var(--ds-text-strong);
  background: radial-gradient(circle at center, var(--ds-text-strong) 5px, var(--ds-surface-base) 5px);
}
.design-system__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--ds-space-4);
}
.design-system__card {
  padding: var(--ds-space-6);
  border: 1px solid var(--ds-border-card);
  border-radius: var(--ds-radius-lg);
}
.design-system__card--selected {
  background: var(--ds-surface-selected);
}
.design-system__card-title {
  margin: 0;
  font-size: var(--ds-font-size-md);
}
.design-system__card-text {
  margin: var(--ds-space-2) 0 0;
  font-size: var(--ds-font-size-sm);
  color: var(--ds-text-muted);
}
@media (min-width: 960px) {
  .design-system {
    padding-top: 48px;
  }
  .design-system__swatches {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .design-system__control-grid {
    grid-template-columns: 1fr 1fr;
  }
  .design-system__cards {
    grid-template-columns: 1fr 1fr;
  }
}
