/* Header */
:root {
  --site-header-height: clamp(72px, 6.77vw, 130px);
}

/* Inner pages: compact 100px header (homepage keeps 130px max) */
body:not(.is-home) {
  --site-header-height: 100px;
}

body.has-header-offset {
  padding-top: var(--site-header-height);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.site-header--overlay {
  background-color: transparent;
}

.site-header--light,
.site-header--overlay.is-scrolled,
.site-header.is-dropdown-open {
  background-color: #fff;
  box-shadow:
    0 1px 0 rgba(25, 25, 25, 0.08),
    0 2px 16px rgba(25, 25, 25, 0.06);
}

.site-header--light {
  border-bottom: 1px solid rgba(25, 25, 25, 0.06);
}

.site-header--overlay.is-scrolled {
  border-bottom: 1px solid rgba(25, 25, 25, 0.06);
}

.site-header.is-dropdown-open {
  box-shadow:
    0 1px 0 rgba(25, 25, 25, 0.08),
    0 2px 16px rgba(25, 25, 25, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--site-header-height);
  padding-inline: clamp(20px, 4.17vw, 80px);
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5.21vw, 100px);
}

.site-header__logo {
  flex-shrink: 0;
}

.site-header__logo img {
  width: clamp(64px, 5.21vw, 100px);
  height: auto;
}

body:not(.is-home) .site-header__logo img {
  width: clamp(56px, 4vw, 72px);
}

.site-header__nav {
  display: none;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.92vw, 56px);
}

.site-header__link {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: color 0.2s ease, opacity 0.2s ease;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.site-header__link:hover,
.site-header__link.is-active {
  opacity: 0.75;
}

.site-header.is-dropdown-open .site-header__link {
  color: #191919;
  opacity: 1;
}

.site-header.is-dropdown-open .site-header__menu-item.is-hover .site-header__link {
  color: #f99c1b;
  opacity: 1;
}

.site-header--light .site-header__link {
  color: #191919;
}

.site-header--overlay.is-scrolled .site-header__link {
  color: #191919;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__store {
  display: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.site-header__store:hover {
  opacity: 0.85;
}

.site-header__store img {
  width: clamp(96px, 6.2vw, 119px);
  height: auto;
}

.site-header__store img.site-header__store-logo--en {
  width: auto;
  height: 24px;
  max-height: 24px;
}

.site-header__drawer-label img.site-header__store-logo--en {
  width: auto;
  height: 22px;
  max-height: 22px;
}

/* Language selector */
.site-header__lang {
  position: relative;
  flex-shrink: 0;
}

.site-header__lang--desktop {
  display: none;
}

.site-header__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 2px;
  font-size: clamp(14px, 0.94vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  white-space: nowrap;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header__lang-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.site-header__lang-btn:hover,
.site-header__lang-btn:focus-visible {
  opacity: 0.75;
  outline: none;
}

.site-header.is-dropdown-open .site-header__lang-btn,
.site-header--light .site-header__lang-btn,
.site-header--overlay.is-scrolled .site-header__lang-btn {
  color: #191919;
  opacity: 1;
}

.site-header.is-dropdown-open .site-header__lang-icon,
.site-header--light .site-header__lang-icon,
.site-header--overlay.is-scrolled .site-header__lang-icon {
  filter: brightness(0);
}

.site-header__lang-caret {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
}

.site-header__lang.is-open .site-header__lang-caret {
  transform: translateY(2px) rotate(225deg);
}

.site-header__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  right: auto;
  z-index: 30;
  min-width: 72px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(25, 25, 25, 0.12);
  transform: translateX(-50%);
}

.site-header__lang-menu[hidden] {
  display: none;
}

.site-header__lang-option {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #535353;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-header__lang-option:hover,
.site-header__lang-option:focus-visible,
.site-header__lang-option.is-active {
  color: #f99c1b;
  outline: none;
}

.site-header__drawer-item--lang {
  position: relative;
}

.site-header__lang--drawer {
  width: 100%;
}

.site-header__lang-btn--drawer {
  width: 100%;
  opacity: 1;
  color: #191919;
}

.site-header__lang-btn--drawer .site-header__lang-icon {
  filter: brightness(0);
}

.site-header__drawer-label--lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-header__lang-btn--drawer:hover,
.site-header__lang-btn--drawer:focus-visible {
  color: #f99c1b;
  opacity: 1;
}

.site-header__lang--drawer.is-open .site-header__drawer-chevron {
  transform: rotate(180deg);
}

.site-header__lang-menu--drawer {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  min-width: 0;
  margin: 0;
  padding: 0 20px 12px;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transform: none;
}

.site-header__lang-menu--drawer .site-header__lang-option {
  padding: 10px 0;
  font-size: 15px;
  text-align: center;
}

/* Burger */
.site-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.site-header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease,
    background-color 0.25s ease;
}

.site-header--light .site-header__burger-line,
.site-header--overlay.is-scrolled .site-header__burger-line {
  background-color: #191919;
}

.site-header.is-open .site-header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile drawer */
.site-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.3s;
}

.site-header.is-open .site-header__drawer {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.site-header__drawer-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(25, 25, 25, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.site-header.is-open .site-header__drawer-backdrop {
  opacity: 1;
}

.site-header__drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(320px, 86vw);
  max-width: 100%;
  height: 100%;
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background-color: #fff;
  box-shadow: -8px 0 32px rgba(25, 25, 25, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.site-header.is-open .site-header__drawer-panel {
  transform: translateX(0);
}

.site-header__drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  min-height: 72px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.site-header__drawer-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__drawer-logo img {
  width: 56px;
  height: auto;
}

.site-header__drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: -8px;
  color: #191919;
}

.site-header__drawer-close-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
}

.site-header__drawer-close-icon::before,
.site-header__drawer-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  border-radius: 1px;
}

.site-header__drawer-close-icon::before {
  transform: rotate(45deg);
}

.site-header__drawer-close-icon::after {
  transform: rotate(-45deg);
}

.site-header__drawer-nav {
  flex: 1;
  padding: 0;
}

.site-header__drawer-list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__drawer-item {
  border-bottom: 1px solid rgba(25, 25, 25, 0.08);
}

.site-header__drawer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #191919;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.site-header__drawer-row:hover,
.site-header__drawer-row:focus-visible {
  color: #f99c1b;
  outline: none;
}

.site-header__drawer-item.is-active > .site-header__drawer-row {
  color: #f99c1b;
}

.site-header__drawer-label {
  flex: 1;
  min-width: 0;
  word-break: keep-all;
}

.site-header__drawer-label img {
  display: block;
  width: auto;
  height: 22px;
}

.site-header__drawer-chevron {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.25s ease;
  opacity: 0.55;
}

.site-header__drawer-item.is-expanded > .site-header__drawer-row .site-header__drawer-chevron {
  transform: rotate(45deg);
  opacity: 0.85;
}

.site-header__drawer-sub {
  margin: 0;
  padding: 0 20px 12px;
  list-style: none;
  background-color: #fafafa;
}

.site-header__drawer-sub[hidden] {
  display: none;
}

.site-header__drawer-sublink {
  display: block;
  padding: 10px 4px 10px 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #555;
  word-break: keep-all;
  transition: color 0.2s ease;
}

.site-header__drawer-sublink:hover,
.site-header__drawer-sublink:focus-visible {
  color: #f99c1b;
  outline: none;
}

.site-header__drawer-item--store .site-header__drawer-row--store {
  min-height: 64px;
}

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

/* Desktop submenu */
.site-header__submenu {
  display: none;
}

@media (min-width: 1024px) {
  .site-header__menu {
    height: 100%;
    align-items: stretch;
  }

  .site-header__menu-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .site-header__submenu {
    display: block;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 10;
    padding-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-4px);
    transition:
      opacity 0.24s ease,
      visibility 0.24s ease,
      transform 0.24s ease;
    pointer-events: none;
  }

  .site-header__menu-item.is-open .site-header__submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }

  .site-header__submenu-panel {
    width: max-content;
    min-width: clamp(148px, 10.42vw, 200px);
    padding: clamp(14px, 1.04vw, 20px) clamp(24px, 2.08vw, 36px);
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(25, 25, 25, 0.1);
  }

  .site-header__submenu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(8px, 0.63vw, 12px);
    text-align: center;
  }

  .site-header__submenu-link {
    display: block;
    width: 100%;
    font-size: clamp(14px, 0.94vw, 16px);
    font-weight: 400;
    line-height: 1.5;
    color: #535353;
    white-space: nowrap;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
    transition: color 0.2s ease;
  }

  .site-header__submenu-link:hover,
  .site-header__submenu-link:focus-visible {
    color: #f99c1b;
  }
}

/* Reveal animations */
.reveal-section .reveal {
  transition:
    opacity 1.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-section:not(.is-visible) .reveal:not(.reveal-transform) {
  opacity: 0;
}

.reveal-section:not(.is-visible) .reveal-up {
  transform: translateY(28px);
}

.reveal-section:not(.is-visible) .reveal-down {
  transform: translateY(-28px);
}

.reveal-section:not(.is-visible) .reveal-left {
  transform: translateX(28px);
}

.reveal-section:not(.is-visible) .reveal-right {
  transform: translateX(-28px);
}

.reveal-section:not(.is-visible) .reveal-scale:not(.reveal-transform) {
  transform: scale(0.96);
}

.reveal-section.is-visible .reveal:not(.reveal-transform) {
  opacity: 1;
  transform: none;
}

.reveal-section.is-visible .reveal-transform {
  transform: none;
}

.reveal.delay-1 {
  transition-delay: 0.12s;
}

.reveal.delay-2 {
  transition-delay: 0.24s;
}

.reveal.delay-3 {
  transition-delay: 0.36s;
}

.reveal.delay-4 {
  transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-section .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
}

/* Subpage navigation — below hero with clear gap (Figma 133:336) */
.subnav {
  position: relative;
  z-index: 40;
  margin-top: 0;
  padding-top: clamp(32px, 3.125vw, 60px);
  padding-bottom: clamp(10px, 1.04vw, 16px);
}

/* Halve gap between tabs and page title below */
.subnav + .reveal-section {
  padding-top: clamp(36px, 3.65vw, 70px);
}

.subnav__shell {
  position: relative;
  display: flex;
  justify-content: center;
}

.subnav__desktop,
.subnav__mobile {
  width: 100%;
  max-width: 960px;
}

.subnav__list {
  display: none;
}

.subnav__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100%, 360px);
  min-height: 58px;
  padding: 16px 22px;
  background-color: #fff;
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(25, 25, 25, 0.1);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: #191919;
  word-break: keep-all;
  overflow-wrap: break-word;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.subnav__toggle-icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-right: 2px solid #535353;
  border-bottom: 2px solid #535353;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.2s ease;
}

.subnav__mobile.is-open .subnav__toggle {
  border-color: rgba(249, 156, 27, 0.3);
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.12);
}

.subnav__mobile.is-open .subnav__toggle-icon {
  transform: translateY(2px) rotate(-135deg);
}

.subnav__mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 12px;
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(25, 25, 25, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease;
}

.subnav__mobile.is-open .subnav__mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.subnav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #535353;
  text-align: center;
  word-break: keep-all;
  overflow-wrap: break-word;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.subnav__mobile-link.is-active {
  background-color: #f99c1b;
  color: #fff;
}

/* Product: docked to viewport bottom (not in-flow below hero) */
.subnav--product {
  position: relative;
  z-index: 50;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  pointer-events: none;
}

.subnav--product .container,
.subnav--product .subnav__shell {
  height: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
}

.subnav--product .subnav__desktop,
.subnav--product .subnav__mobile {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 60;
  max-width: min(calc(100vw - 40px), 960px);
  transform: translateX(-50%);
  box-sizing: border-box;
  pointer-events: auto;
}

.subnav--product .subnav__desktop {
  width: min(calc(100vw - 40px), 960px);
}

.subnav--product .subnav__mobile {
  width: min(calc(100vw - 40px), 360px);
}

/* Open dropdown upward while docked at bottom */
.subnav--product .subnav__mobile-menu {
  top: auto;
  bottom: calc(100% + 10px);
  transform: translateY(4px);
}

.subnav--product .subnav__mobile.is-open .subnav__mobile-menu {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .subnav {
    padding-top: clamp(40px, 3.125vw, 60px);
    padding-bottom: clamp(14px, 1.25vw, 20px);
  }
}

@media (min-width: 1024px) {
  .subnav__desktop {
    display: block;
    width: fit-content;
    max-width: min(calc(100vw - 40px), 960px);
  }

  .subnav__mobile {
    display: none;
  }

  .subnav__list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 8px;
    background-color: #fff;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .subnav__item {
    flex: 0 0 auto;
  }

  .subnav__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-height: 50px;
    padding: 10px clamp(12px, 1.1vw, 18px);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: clamp(17px, 1.09vw, 21px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #535353;
    text-align: center;
    white-space: nowrap;
    word-break: keep-all;
    transition:
      background-color 0.2s ease,
      color 0.2s ease,
      border-color 0.2s ease;
  }

  .subnav__link.is-active {
    background-color: #f99c1b;
    border-color: #f99c1b;
    color: #fff;
    font-weight: 700;
  }

  .subnav--product .subnav__desktop {
    width: max-content;
    max-width: min(calc(100vw - 40px), 960px);
  }

  .subnav--product .subnav__list {
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .subnav--product .subnav__list::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 1023px) {
  .subnav__desktop {
    display: none;
  }

  .subnav__mobile {
    display: block;
    max-width: 360px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .subnav__toggle,
  .subnav__toggle-icon,
  .subnav__mobile-menu,
  .subnav__mobile-link,
  .subnav__link {
    transition: none;
  }
}

/* Footer */
.site-footer {
  background-color: #edeae6;
  padding-block: clamp(48px, 5vw, 80px);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(32px, 3.33vw, 48px);
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 2.5vw, 40px);
}

.site-footer__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__name {
  margin: 0;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #191919;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.site-footer__name-sub {
  font-size: clamp(13px, 0.78vw, 15px);
}

.site-footer__name-main {
  font-size: clamp(18px, 1.25vw, 24px);
}

.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}

.site-footer__row-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__label {
  flex-shrink: 0;
  margin: 0;
  font-size: clamp(15px, 0.94vw, 16px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #191919;
}

.site-footer__value {
  margin: 0;
  font-size: clamp(15px, 0.94vw, 16px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #535353;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.site-footer__copyright {
  margin: 0;
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 400;
  line-height: 1.15;
  color: rgba(83, 83, 83, 0.4);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.site-footer__logo {
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.site-footer__logo:hover {
  opacity: 0.85;
}

.site-footer__logo img {
  display: block;
  width: clamp(88px, 6.35vw, 122px);
  height: auto;
}

@media (min-width: 768px) {
  .site-footer__row-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(40px, 4.17vw, 80px);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .site-header__left {
    align-self: stretch;
    align-items: center;
  }

  .site-header__nav {
    display: flex;
    align-self: stretch;
    align-items: center;
  }

  .site-header__store {
    display: block;
  }

  .site-header__lang--desktop {
    display: block;
  }

  .site-header__burger {
    display: none;
  }

  .site-header__drawer {
    display: none;
  }
}
