:root {
  --navy: #0d2b6e;
  --navy-1: #072463;
  --navy-2: #052056;
  --navy-3: #04163f;
  --btn-blue: #2e6eb4;
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.64);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --btn-border: rgba(255, 255, 255, 0.44);
  --btn-border-hover: rgba(255, 255, 255, 0.78);
  --transition-fast: 180ms ease;
  --transition-slow: 500ms ease;
  /* Type scale */
  --fs-2xs: 11px;
  --fs-xs: 12px;
  --fs-sm: 13px;
  --fs-md: 14px;
  --fs-body: 15px;
  --fs-ui: 16px;
  --fs-ui-lg: 18px;
  --fs-title-sm: 20px;
  --fs-title-md: 22px;
  --fs-title-lg: 24px;
  --fs-title-xl: 28px;
  --fs-display-lg: 32px;
  --fs-display-xl: 44px;
  --fs-fluid-main-display: clamp(46px, 8.2vw, 120px);
  --fs-fluid-menu-display: clamp(40px, 6.8vw, 108px);
  --fs-fluid-about-title: clamp(40px, 6.2vw, 64px);
  --fs-fluid-about-copy: clamp(17px, 1.4vw, 22px);
  --fs-fluid-featured-title: clamp(32px, 3.8vw, 48px);
  --fs-fluid-featured-card-title: clamp(22px, 1.4vw, 24px);
  --fs-fluid-cart-title: clamp(26px, 2.8vw, 40px);
  --fs-fluid-quick-title: clamp(32px, 3.2vw, 56px);
  --fs-fluid-quick-price: clamp(20px, 1.8vw, 28px);
  --fs-fluid-product-price: clamp(26px, 2.1vw, 34px);
  --fs-product-title: 35px;
  --fs-product-title-mobile: 30px;
}

::-webkit-scrollbar-button {
        background-repeat:no-repeat;
        width: 5px;
        height: 0
    }

    ::-webkit-scrollbar-track {
        background-color: #6d81a9
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 100px;
        background-color: #0d4690
    }

    ::-webkit-resizer {
        width: 5px;
        height: 0;
    }

    ::-webkit-scrollbar {
        width: 5px;
    }

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

[hidden] {
  display: none !important;
}

body {
  margin: 0;
  font-family: "inter-variable", sans-serif;
  font-size: var(--fs-md);
  background: #fff;
  color: #142247;
  font-weight: 300;
}

html {
  scrollbar-gutter: stable;
  background: #6d81a9;
}

body.is-scroll-locked {
  overflow: hidden;
}

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

button {
  font: inherit;
  color: inherit;
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.icon--sm {
  width: 14px;
  height: 14px;
  stroke-width: 1.9;
}

.site-header {
  --header-pad-x: 48px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: var(--text);
  z-index: 40;
  &:hover {
    &:before {
      backdrop-filter: blur(25px);
    }
  }

  &.is-mega-open {
    &:before {
      height: 100%;
      backdrop-filter: blur(25px);
    }
  }

  &:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 210px;
    background: rgba(6, 131, 188, 0.01);
    transition: backdrop-filter var(--transition-slow), height var(--transition-fast);
    backdrop-filter: blur(7.5px);
  }
}

.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 2px;
}

/* ─── Announce Bar ──────────────────────────────────────── */
.announce-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 64px;
  background: #04163fb0;
  border-bottom: 1px solid var(--line);
  text-align: center;
  animation: intro-header-top 600ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.announce-bar--hidden {
  display: none;
}

.announce-bar__text {
  margin: 0;
  font-size: var(--fs-xs);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.announce-bar__link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  transition: text-decoration-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.announce-bar__link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}

.announce-bar__close {
  position: absolute;
  right: var(--header-pad-x);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.announce-bar__close:hover {
  color: var(--text);
}

/* ─────────────────────────────────────────────────────── */
.site-header__top {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px var(--header-pad-x);
  border-bottom: 1px solid var(--line);
  animation: intro-header-top 760ms cubic-bezier(0.22, 1, 0.36, 1) 80ms both;
}

.site-header__left,
.site-header__right {
  min-width: 0;
  display: flex;
  align-items: center;
}

.site-header__left {
  gap: 12px;
}

.site-header__right {
  justify-content: flex-end;
  gap: 28px;
}

.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 0 26px;
  border: 1px solid var(--btn-border);
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
}

.outline-btn:hover {
  border-color: var(--btn-border-hover);
}

.outline-btn--square {
  width: 72px;
  padding: 0;
}

.site-header__icon-btn .icon {
  width: 20px;
  height: 20px;
}

.site-header.is-desktop-menu-open .js-mobile-toggle {
  border-color: var(--btn-border-hover);
  background: rgba(255, 255, 255, 0.08);
}

.site-header__menu-label {
  display: none;
}

.hamburger-icon {
  overflow: visible;
}

.hamburger-icon__line {
  transform-origin: 15px 5px;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
}

.site-header .hamburger-icon {
  transition: scale var(--transition-fast);
}

.site-header.is-desktop-menu-open .hamburger-icon {
  scale: .7;
  position: relative;
  left: -1px;
}

.site-header.is-desktop-menu-open .hamburger-icon__line--top {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-desktop-menu-open .hamburger-icon__line--bottom {
  transform: translateY(-2px) rotate(-45deg);
}

.site-header__search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  padding: 0 4px;
  color: var(--text);
  font-size: var(--fs-ui);
  cursor: pointer;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.site-header__search--mobile { display: none; }

.site-header__search:hover {
  opacity: 0.82;
}

.site-header__search-icon {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.site-logo {
  justify-self: center;
  line-height: 1;
  color: rgba(255, 255, 255, 0.98);
  transition: opacity var(--transition-fast);
  animation: intro-header-logo 760ms cubic-bezier(0.22, 1, 0.36, 1) 140ms both;
}

.site-logo:hover {
  opacity: 0.86;
}

.site-logo svg {
  display: block;
  height: 60.561px;
  height: auto;
}

.site-header__lang-switcher {
  position: relative;
}

.site-header__lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: var(--fs-ui);
  cursor: pointer;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.site-header__lang:hover {
  opacity: 0.82;
}

.site-header__lang .icon {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: -12px;
  min-width: 74px;
  padding: 6px;
  border: 1px solid var(--line);
  background: transparent;
  backdrop-filter: blur(14px);
  display: grid;
  gap: 4px;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 240ms ease,
    visibility 240ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header__lang-option {
  border: 0;
  background: transparent;
  color: var(--text);
  width: 100%;
  text-align: right;
  padding: 8px 10px;
  font-size: var(--fs-md);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast), opacity var(--transition-fast);
}

.site-header__lang-option:hover,
.site-header__lang-option:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-header__lang-option.is-active {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.09);
}

.site-header__lang-switcher.is-open .site-header__lang {
  opacity: 1;
}

.site-header__lang-switcher.is-open .site-header__lang .icon {
  transform: rotate(180deg);
}

.site-header__lang-switcher.is-open .site-header__lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.site-header__phone {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  white-space: nowrap;
  position: relative;
}

.site-header__phone-number {
  font-size: var(--fs-ui);
  color: var(--text);
}

.site-header__phone-hours {
  font-size: var(--fs-2xs);
  color: var(--muted);
  position: absolute;
  bottom: -15px;
  right: 0;
}

.site-header__login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  color: var(--text);
  transition: opacity var(--transition-fast);
  font-size: var(--fs-ui);
}

.site-header__login:hover {
  opacity: 0.82;
}

.site-header__nav-zone {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  animation: intro-header-nav 760ms cubic-bezier(0.22, 1, 0.36, 1) 180ms backwards;
  transition:
    opacity 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 300ms ease;
  &:hover {
    .main-nav__link {
      color: var(--muted);
      &:hover,
      &:focus-visible {
        color: var(--text);
      }
      &.main-nav__link--active {
        color: var(--text);
      }
    }
  }
}

.site-header.is-desktop-menu-open .site-header__nav-zone {
  animation: none;
  position: absolute;
  left: 0;
  right: 0;
  top: var(--desktop-top-height, 104px);
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -8px, 0);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 220ms;
}

.main-nav {
  border-bottom: 1px solid var(--line);
  padding: 0 var(--header-pad-x);
}

.main-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;
}

.main-nav__item {
  flex: 0 0 auto;
  display: flex;
}

.main-nav__link {
  font-size: var(--fs-ui);
  width: auto;
  min-height: 64px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  font-size: var(--fs-ui);
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.main-nav__link:hover,
.main-nav__link:focus-visible {
  color: var(--text);
}

.main-nav__link--active {
  color: var(--text);
}

.mega-menu {
  position: relative;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(5px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow),
    visibility var(--transition-slow),
    border-color var(--transition-slow),
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1);
  border-bottom: 1px solid transparent;
  max-height: 0;
  overflow: hidden;
}

.site-header.is-mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  max-height: 520px;
  border-color: var(--line);
}

.mega-menu__inner {
  display: block;
  padding: 50px var(--header-pad-x) 56px;
}

.mega-menu__panel {
  display: none;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 56px;
  align-content: start;
}

.mega-menu__panel.is-active {
  display: grid;
}

.mega-menu__column {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu__column li + li {
  margin-top: 18px;
}

.mega-menu__column a {
  display: inline-block;
  color: var(--text);
  text-transform: uppercase;
  font-size: var(--fs-ui);
  line-height: 1.25;
  transition: opacity var(--transition-fast);
}

.mega-menu__column a:hover,
.mega-menu__column a:focus-visible {
  opacity: 0.78;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 125;
}

.mobile-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

/* ─── Mobile Panel ──────────────────────────────────────── */
.mobile-panel {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse at 30% 10%, rgba(46, 110, 180, 0.22) 0%, transparent 55%), rgb(4 18 52 / 62%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.4s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 0.4s;
  z-index: 130;
  overflow: hidden;
  margin: 10px;
}

.mobile-panel > * {
  position: relative;
  z-index: 1;
}

.mobile-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.4s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear 0s;
}

.mobile-panel.is-open .mobile-nav__item {
  opacity: 1;
  transform: translateY(0);
}

/* ── Header ── */
.mobile-panel__header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-panel__brand {
  font-size: var(--fs-title-lg);
  font-weight: 100;
  letter-spacing: 0.18em;
  color: var(--text);
}

.mobile-panel__close {
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.mobile-panel__close:hover,
.mobile-panel__close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

/* ── Nav ── */
.mobile-nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.mobile-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__item {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s cubic-bezier(.22, 1, .36, 1) calc(0.06s + var(--i, 0) * 0.045s),
    transform 0.5s cubic-bezier(.22, 1, .36, 1) calc(0.06s + var(--i, 0) * 0.045s);
}

.mobile-nav__link {
  width: 100%;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 28px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: var(--fs-ui-lg);
  letter-spacing: 0.01em;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  font-weight: 300;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: #fff;
  padding-left: 36px;
}

/* ── Catalog item ── */
.mobile-nav__item--catalog {
  margin: 0 16px 8px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.mobile-nav__item--catalog .mobile-nav__link {
  min-height: 54px;
  padding: 0 20px;
  font-size: var(--fs-ui-lg);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ── Accordion ── */
.mobile-nav__accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav__item--accordion.is-open .mobile-nav__accordion-panel {
  max-height: 620px;
}

.mobile-nav__accordion-panel a {
  min-height: 48px;
  padding: 0 20px 0 28px;
  display: flex;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  font-size: var(--fs-body);
  letter-spacing: 0.02em;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-nav__accordion-panel a:hover,
.mobile-nav__accordion-panel a:focus-visible {
  color: var(--text);
  padding-left: 34px;
}

.mobile-nav__view-all {
  font-weight: 500;
  color: var(--text) !important;
}

.mobile-nav__sub-link {
  display: block;
  padding: 10px 0 10px 34px;
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.15s;
}

.mobile-nav__sub-link:hover {
  color: #fff;
}

.mobile-nav__item--info {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav__item--info:first-of-type {
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 4px;
}

.mobile-nav__sub-link--info {
  padding-left: 0;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 8px;
  padding-bottom: 8px;
}

.mobile-nav__sub-link--info:hover {
  color: rgba(255, 255, 255, 0.85);
}

.mobile-nav__accordion-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.3s cubic-bezier(.22, 1, .36, 1), color var(--transition-fast);
}

.mobile-nav__item--accordion.is-open .mobile-nav__accordion-icon {
  transform: rotate(180deg);
  color: var(--text);
}

/* ── Footer ── */
.mobile-panel__footer {
  margin-top: auto;
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mobile-panel__phone-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-body);
  letter-spacing: 0.02em;
  color: var(--text);
  transition: color var(--transition-fast);
}

.mobile-panel__phone-number svg {
  opacity: 0.6;
  flex-shrink: 0;
}

.mobile-panel__phone-number:hover {
  color: #fff;
}

.mobile-panel__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-panel__social a {
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition-fast);
}

.mobile-panel__social a:hover {
  color: var(--text);
}

.mobile-panel__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.mobile-panel__lang {
  display: flex;
  gap: 6px;
}

.mobile-panel__lang-btn {
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background-color var(--transition-fast);
}

.mobile-panel__lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.mobile-panel__lang-btn.is-active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
  font-weight: 500;
}

.cart-backdrop,
.search-backdrop,
.quick-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 33, 79, 0.46);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 1s;
  z-index: 125;
}

.cart-backdrop.is-visible,
.search-backdrop.is-visible,
.quick-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 0s;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(42vw, 570px);
  min-width: 360px;
  display: flex;
  flex-direction: column;
  background: #eef3fb;
  border-left: 1px solid rgba(43, 108, 190, 0.24);
  transform: translateX(104%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 1s;
  z-index: 130;
  color: #2d6cb2;
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 0s;
}

.search-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(42vw, 570px);
  min-width: 360px;
  display: flex;
  flex-direction: column;
  background: #eef3fb;
  border-right: 1px solid rgba(43, 108, 190, 0.24);
  transform: translateX(-104%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 1s;
  z-index: 130;
  color: #2d6cb2;
}

.search-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 0s;
}

.quick-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(90vw, 1240px);
  min-width: 360px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid rgba(43, 108, 190, 0.24);
  transform: translateX(104%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 1s;
  z-index: 130;
  color: #2d6cb2;
}

.quick-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 1s cubic-bezier(.19, 1, .22, 1), visibility 0s linear 0s;
}

.quick-drawer__header {
  min-height: 86px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.quick-drawer__label {
  margin: 0;
  font-size: var(--fs-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(45, 108, 178, 0.78);
}

.quick-drawer__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(340px, 1fr);
}

.quick-drawer__media {
  padding: clamp(20px, 3.8vw, 48px);
  border-right: 1px solid rgba(43, 108, 190, 0.16);
  display: grid;
  place-items: center;
  background: #fff;
}

.quick-drawer__image {
  width: min(100%, 440px);
  max-height: min(72vh, 760px);
  object-fit: contain;
}

.quick-drawer__details {
  padding: clamp(20px, 3.8vw, 48px);
  display: grid;
  align-content: start;
  gap: 14px;
}

.quick-drawer__category {
  margin: 0;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(45, 108, 178, 0.78);
}

.quick-drawer__title {
  margin: 0;
  font-size: var(--fs-product-title);
  line-height: 0.95;
  font-weight: 200;
  text-transform: uppercase;
  color: #2c65a8;
}

.quick-drawer__price {
  margin: 2px 0 0;
  font-size: var(--fs-fluid-quick-price);
  font-weight: 400;
  color: #2c65a8;
}

.quick-drawer__text {
  margin: 4px 0 0;
  max-width: 760px;
  font-size: var(--fs-md);
  line-height: 1.42;
  text-transform: uppercase;
  color: rgba(45, 108, 178, 0.86);
}

.quick-drawer__details-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  min-height: 44px;
  border: 1px solid rgba(43, 108, 190, 0.34);
  background: #fff;
  color: #2e6eb4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--fs-md);
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast);
}

.quick-drawer__details-btn:hover,
.quick-drawer__details-btn:focus-visible {
  background: #f6faff;
  border-color: rgba(43, 108, 190, 0.6);
}

.quick-drawer__purchase {
  margin-top: 14px;
}

.quick-drawer__purchase-label {
  display: block;
  margin-bottom: 10px;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 108, 178, 0.8);
}

.quick-drawer__controls {
  display: flex;
  gap: 12px;
}

.quick-drawer__sizes {
  display: inline-flex;
  gap: 8px;
}

.quick-drawer__size {
  min-width: 96px;
  min-height: 42px;
  border: 1px solid rgba(43, 108, 190, 0.34);
  background: rgba(46, 110, 180, 0.08);
  color: #2e6eb4;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.quick-drawer__size.is-active {
  background: #2e6eb4;
  color: #fff;
  border-color: #2e6eb4;
}

.quick-drawer__qty {
  min-height: 42px;
  border: 1px solid rgba(43, 108, 190, 0.34);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.quick-drawer__qty button,
.quick-drawer__qty span {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2e6eb4;
  font-size: var(--fs-ui-lg);
}

.quick-drawer__qty button {
  cursor: pointer;
}

.quick-drawer__add {
  margin-top: 14px;
  min-height: 56px;
  border: 0;
  background: #2e6eb4;
  color: #fff;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: var(--fs-ui);
  letter-spacing: 0.02em;
  cursor: pointer;
}

.quick-drawer__add strong {
  font-size: var(--fs-title-md);
  font-weight: 500;
}

@media (max-width: 1120px) {
  .quick-drawer {
    width: min(100vw, 920px);
  }

  .quick-drawer__content {
    grid-template-columns: 1fr;
  }

  .quick-drawer__media {
    border-right: 0;
    border-bottom: 1px solid rgba(43, 108, 190, 0.16);
  }
}

@media (max-width: 640px) {
  .announce-bar {
    display: none;
  }

  .quick-drawer {
    width: 100vw;
    min-width: 0;
  }

  .quick-drawer__header {
    min-height: 78px;
    padding: 12px 16px;
  }

  .quick-drawer__details {
    padding: 16px;
  }

.quick-drawer__title {
    font-size: clamp(30px, 8.8vw, 44px);
  }

  .quick-drawer__controls {
    grid-template-columns: 1fr;
  }

  .quick-drawer__sizes {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .quick-drawer__size {
    width: 100%;
  }
}

.search-drawer .cart-drawer__header {
  flex-direction: row-reverse;
}

.cart-drawer__header {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px 14px;
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.cart-drawer__title {
  margin: 0;
  font-size: var(--fs-fluid-cart-title);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.cart-drawer__close {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(43, 108, 190, 0.44);
  background: #2e6eb4;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-drawer__shipping-line {
  padding: 10px 0;
  border-bottom: 1px solid rgba(43, 108, 190, 0.16);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  color: rgba(45, 108, 178, 0.92);
  overflow: hidden;
  white-space: nowrap;
}

.cart-drawer__shipping-track {
  --shipping-gap: 44px;
  display: flex;
  align-items: center;
  width: max-content;
  animation: cart-shipping-loop 24s linear infinite;
  will-change: transform;
}

.cart-drawer__shipping-group {
  display: inline-flex;
  align-items: center;
  gap: var(--shipping-gap);
  min-width: max-content;
  padding-inline: 24px;
}

.cart-drawer__shipping-track span {
  display: inline-block;
}

@keyframes cart-shipping-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.cart-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 14px 10px;
}

.search-drawer__body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 14px 10px 18px;
}

.search-drawer__form {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 14px;
}

.search-drawer__form input {
  min-height: 52px;
  border: 1px solid rgba(43, 108, 190, 0.24);
  border-right: 0;
  padding: 0 16px;
  font-size: var(--fs-body);
  color: #2e6eb4;
  background: #fff;
}

.search-drawer__form button {
  min-height: 52px;
  min-width: 102px;
  border: 0;
  background: #2e6eb4;
  color: #fff;
  font-size: var(--fs-ui);
  text-transform: uppercase;
  cursor: pointer;
}

.search-drawer__suggestions {
  padding: 14px 12px 16px;
  border: 1px solid rgba(43, 108, 190, 0.18);
  background: #fff;
}

.search-drawer__suggestions p {
  margin: 0 0 10px;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 108, 178, 0.92);
}

.search-drawer__live {
  margin-bottom: 14px;
  padding: 14px 12px 16px;
  border: 1px solid rgba(43, 108, 190, 0.18);
  background: #fff;
}

.search-drawer__live > p {
  margin: 0 0 10px;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(45, 108, 178, 0.92);
}

.search-drawer__live-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.search-drawer__live-item {
  width: 100%;
  border: 1px solid rgba(43, 108, 190, 0.2);
  background: #fff;
  color: #2e6eb4;
  text-decoration: none;
  padding: 10px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 49, 108, 0.06);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-drawer__live-thumb {
  width: 72px;
  height: 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.search-drawer__live-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 6px;
  box-sizing: border-box;
}

.search-drawer__live-content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.search-drawer__live-title {
  font-size: var(--fs-ui-lg);
  text-transform: uppercase;
  line-height: 1.15;
}

.search-drawer__live-price {
  font-size: var(--fs-ui);
  font-weight: 400;
}

.search-drawer__live-category {
  font-size: var(--fs-2xs);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(45, 108, 178, 0.72);
}

.search-drawer__live-item:hover,
.search-drawer__live-item:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(43, 108, 190, 0.36);
  box-shadow: 0 10px 24px rgba(16, 49, 108, 0.1);
}

.search-drawer__live-empty {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(43, 108, 190, 0.22);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(45, 108, 178, 0.9);
  font-size: var(--fs-sm);
}

.search-drawer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-drawer__tags button {
  border: 1px solid rgba(43, 108, 190, 0.3);
  background: #fff;
  color: #2e6eb4;
  padding: 7px 10px;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-drawer__tags button:hover,
.search-drawer__tags button:focus-visible {
  background: #f7faff;
  border-color: rgba(43, 108, 190, 0.48);
  box-shadow: 0 2px 8px rgba(16, 49, 108, 0.08);
}

.cart-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px 10px;
  background: rgba(95, 151, 222, 0.16);
  transition: opacity 0.28s ease, transform 0.28s ease;
  margin-bottom: 10px;
  &:last-child {
    margin-bottom: 0;
  }
}

.cart-item.is-removing {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.cart-item__thumb {
  width: 94px;
  height: 124px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 8px;
  box-sizing: border-box;
}

.cart-item__info h3 {
  margin: 0;
  font-size: var(--fs-title-md);
  line-height: 1.2;
  font-weight: 400;
  color: #2e6eb4;
  text-transform: uppercase;
}

.cart-item__info p {
  margin: 8px 0 12px;
  font-size: var(--fs-ui);
  color: #2e6eb4;
  font-weight: 400;
}

.cart-item__qty {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: min(100%, 240px);
  min-height: 38px;
  border: 1px solid rgba(43, 108, 190, 0.35);
}

.cart-item__qty button,
.cart-item__qty span {
  border: 0;
  background: transparent;
  color: #2e6eb4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-ui);
}

.cart-item__qty button {
  cursor: pointer;
}

.cart-item__remove {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(43, 108, 190, 0.34);
  background: transparent;
  color: #2e6eb4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.cart-count-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  pointer-events: none;
}

.js-cart-toggle {
  position: relative;
}

.cart-item__info h3 a {
  color: inherit;
  text-decoration: none;
}

.cart-item__info h3 a:hover {
  text-decoration: underline;
}

.cart-item__remove .icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-drawer__summary p {
  margin: 0;
  text-align: right;
  font-size: var(--fs-ui);
  color: #2e6eb4;
}

.cart-drawer__footer {
  padding: 10px 8px 10px;
}

.cart-drawer__coupon {
  display: grid;
  grid-template-columns: 1fr auto;
}

.cart-drawer__coupon input {
  min-height: 48px;
  border: 1px solid rgba(43, 108, 190, 0.24);
  border-right: 0;
  padding: 0 16px;
  font-size: var(--fs-body);
  color: #2e6eb4;
  background: #fff;
}

.cart-drawer__coupon button {
  min-height: 48px;
  min-width: 88px;
  border: 0;
  background: #2e6eb4;
  color: #fff;
  font-size: var(--fs-ui);
  text-transform: uppercase;
  cursor: pointer;
}

.cart-drawer__summary {
  margin-top: 14px;
  padding: 18px 20px 22px;
  background: rgba(95, 151, 222, 0.16);
}

.cart-drawer--empty .cart-drawer__coupon,
.cart-drawer--empty .cart-drawer__summary .js-cart-subtotal,
.cart-drawer--empty .cart-drawer__total,
.cart-drawer--empty .cart-drawer__pay {
  display: none;
}

.cart-drawer--empty .cart-drawer__summary {
  margin-top: 0;
  padding: 10px 20px 22px;
  background: transparent;
}

.cart-drawer__summary p {
  margin: 0;
  text-align: right;
  font-size: var(--fs-ui);
  color: #2e6eb4;
}

.cart-drawer__total {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  color: #2e6eb4;
}

.cart-drawer__total span {
  font-size: var(--fs-title-md);
  text-transform: uppercase;
}

.cart-drawer__total strong {
  font-size: var(--fs-display-xl);
  font-weight: 600;
}

.cart-drawer__pay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 14px;
  border: 0;
  background: #2e6eb4;
  color: #fff;
  font-size: var(--fs-ui-lg);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.cart-drawer__continue {
  margin-top: 14px;
  display: block;
  text-align: center;
  color: #2e6eb4;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: var(--fs-ui);
}

.desktop-menu {
  position: absolute;
  top: var(--desktop-top-height, 104px);
  left: 0;
  right: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 14px, 0);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1), visibility 320ms ease;
}

.desktop-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.desktop-menu__inner {
  min-height: calc(100vh - var(--desktop-top-height, 104px));
  padding: 26px var(--header-pad-x) 24px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: clamp(22px, 4vh, 42px);
}

.desktop-menu__social {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.desktop-menu__social a {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: var(--fs-md);
  transition: opacity var(--transition-fast);
}

.desktop-menu__social a:hover,
.desktop-menu__social a:focus-visible {
  opacity: 0.74;
}

.desktop-menu__body {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.8fr);
  gap: clamp(36px, 9vw, 120px);
}

.desktop-menu__main {
  min-width: 0;
}

.desktop-menu__main-link {
  display: block;
  width: fit-content;
  margin: 0;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.88;
  font-size: var(--fs-fluid-menu-display);
  font-weight: 100;
  transition: opacity var(--transition-fast);
}

.desktop-menu__main-link + .desktop-menu__main-link {
  margin-top: 8px;
}

.desktop-menu__main-link:hover,
.desktop-menu__main-link:focus-visible {
  opacity: 0.5 !important;
}

.desktop-menu__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 10px 0 18px;
}

.desktop-menu__chip {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: var(--fs-md);
  transition: opacity var(--transition-fast);
}

.desktop-menu__chip:hover,
.desktop-menu__chip:focus-visible {
  opacity: 0.74;
}

.desktop-menu__side {
  align-self: start;
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 3.5vw, 42px);
  display: grid;
  gap: 24px;
}

.desktop-menu__cats {
  display: grid;
  gap: 6px;
}

.desktop-menu__cats a {
  display: block;
  color: var(--text);
  font-size: var(--fs-md);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: opacity var(--transition-fast);
}

.desktop-menu__cats a:hover {
  opacity: 1;
}

.desktop-menu__side-link {
  display: inline-block;
  width: fit-content;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: var(--fs-ui);
  transition: opacity var(--transition-fast);
}

.desktop-menu__side-link:hover,
.desktop-menu__side-link:focus-visible {
  opacity: 0.5 !important;
}

.desktop-menu__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.desktop-menu__bottom-link {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: var(--fs-md);
  transition: opacity var(--transition-fast);
}

.desktop-menu__bottom-link:hover,
.desktop-menu__bottom-link:focus-visible {
  opacity: 0.72;
}

.desktop-menu__main-link,
.desktop-menu__chip,
.desktop-menu__side-link,
.desktop-menu__social a,
.desktop-menu__bottom-link {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 420ms ease calc(90ms + (var(--stagger, 0) * 50ms)),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1) calc(90ms + (var(--stagger, 0) * 50ms)),
    color var(--transition-fast) 0ms;
}

.desktop-menu.is-open .desktop-menu__main-link,
.desktop-menu.is-open .desktop-menu__chip,
.desktop-menu.is-open .desktop-menu__side-link,
.desktop-menu.is-open .desktop-menu__social a,
.desktop-menu.is-open .desktop-menu__bottom-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* After stagger entrance is done, kill all delays so hover is instant */
.desktop-menu.is-settled .desktop-menu__main-link,
.desktop-menu.is-settled .desktop-menu__chip,
.desktop-menu.is-settled .desktop-menu__side-link,
.desktop-menu.is-settled .desktop-menu__social a,
.desktop-menu.is-settled .desktop-menu__bottom-link {
  transition:
    color var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    opacity 300ms ease,
    transform 300ms ease;
}

.site-header.is-desktop-menu-open {
  height: 100%;
  min-height: 100vh;
}

.site-header.is-desktop-menu-open::before {
  height: 100%;
  backdrop-filter: blur(25px);
}

@media (max-width: 1320px) and (min-width: 1121px) {
  .desktop-menu__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .desktop-menu__side {
    border-left: 0;
    padding-left: 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 14px 26px;
  }
}

@media (max-width: 1500px) {
  .site-header__phone-number,
  .site-header__login,
  .main-nav__link,
  .mega-menu__column a {
    font: inherit;
  }

  .site-header__phone-hours {
    font-size: var(--fs-2xs);
  }

  .site-header__lang,
  .site-header__search {
    font-size: var(--fs-ui);
  }
}

@media (max-width: 1120px) {
  .site-header {
    &:before {
      height: 107px;      
    }
  }
  .desktop-menu {
    display: none;
  }

  .site-header {
    --header-pad-x: 22px;
  }

  .main-nav {
    display: none;
  }

  .mega-menu {
    display: none;
  }

  .site-header__top {
    min-height: 88px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .site-header__right {
    gap: 16px;
  }

  .site-logo svg {
    width: 188px;
  }
}

@media (max-width: 900px) {
  .cart-drawer,
  .search-drawer,
  .quick-drawer {
    width: min(100vw, 520px);
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .cart-drawer__header {
    min-height: 78px;
    padding: 12px 16px 10px;
  }

  .cart-drawer__shipping-track {
    --shipping-gap: 32px;
  }

  .cart-drawer__shipping-group {
    padding-inline: 16px;
  }

  .cart-item {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .cart-item__thumb {
    width: 78px;
    height: 104px;
  }

  .cart-item__info h3,
  .cart-item__info p {
    font-size: var(--fs-ui-lg);
  }

  .cart-drawer__summary p {
    font-size: var(--fs-md);
  }

  .cart-drawer__total span {
    font-size: var(--fs-title-sm);
  }

  .cart-drawer__total strong {
    font-size: var(--fs-display-lg);
  }

  .cart-drawer__pay,
  .cart-drawer__continue,
  .cart-drawer__coupon button,
  .search-drawer__form button,
  .quick-drawer__details-btn,
  .quick-drawer__add {
    font-size: var(--fs-ui);
  }
}

@media (max-width: 900px) {
  .site-header__phone {
    display: none;
  }

  .site-header__right {
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .alvi-banner__scroll {
    display: none!important;
  }
  .alvi-banner__content {
    padding-top: 120%!important;
  }
  .alvi-banner {
    /* height: 70vh!important; */
  }
  .site-header__top {
    min-height: 95px;
  }
  .site-header__login {
    display: none;
  }
  .product-hero__meta {
    display: block !important;
  }
  .page-has-banner .site-header::after {
    height: 95px !important;
  }
  .page-has-banner .site-header::before {
    height: 95px !important;
  }
  .site-header {
    &:before {
      height: 95px;      
    }
  }
  /* ── Mobile menu button with MENU label ── */
  .js-mobile-toggle.outline-btn--square {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
  }

  .js-mobile-toggle.outline-btn--square:hover {
    border: 0;
    background: transparent;
    border-radius: 0;
  }

  .site-header__menu-label {
    display: inline;
    font-size: var(--fs-sm);
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
  }

  .site-header.is-desktop-menu-open .js-mobile-toggle {
    border: 0;
    background: transparent;
  }

  /* ── Clean cart button ── */
  .js-cart-toggle.outline-btn--square {
    width: auto;
    height: auto;
    padding: 8px;
    border: 0;
    background: transparent;
  }

  .js-cart-toggle.outline-btn--square:hover {
    border: 0;
  }

  .site-header__catalog-btn,
  .site-header__search span,
  .site-header__login span {
    display: none;
  }

  .site-header__search--desktop { display: none; }
  .site-header__search--mobile { display: inline-flex; }

  /* Hide lang switcher from header on mobile */
  .site-header__lang-switcher {
    display: none;
  }

  .site-header__search,
  .site-header__login {
    font-size: var(--fs-ui);
  }

  .site-header__right {
    gap: 6px;
  }

  .site-header__left {
    gap: 4px;
  }

  .site-logo svg {
    width: 125px;
  }
}


/* Banner */
.alvi-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}



.alvi-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: intro-hero-image 1s cubic-bezier(0.22, 1, 0.36, 1) 60ms both;
}

.alvi-banner__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(250px, 16vh, 220px) clamp(16px, 2.4vw, 40px) clamp(20px, 4vh, 38px);
}

.alvi-banner__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(46px, 8.2vw, 7.5vw);
  font-weight: 100;
  letter-spacing: 0.03em;
  line-height: 0.92;
  text-transform: uppercase;
}

.alvi-banner__title-line {
  display: block;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  animation: intro-title-line 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(320ms + (var(--line-order) * 110ms));
}

.alvi-banner__actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.alvi-banner__scroll {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  padding: 0 4px;
  display: inline-grid;
  gap: 2px;
  justify-items: start;
  font-size: var(--fs-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  animation: intro-cta-left 760ms cubic-bezier(0.22, 1, 0.36, 1) 860ms both;
}

.alvi-banner__scroll svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin: 0 auto;
}

.alvi-banner__scroll:hover,
.alvi-banner__scroll:focus-visible {
  opacity: 0.78;
}

.alvi-banner__catalog {
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: var(--fs-ui);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
  animation: intro-cta-right 760ms cubic-bezier(0.22, 1, 0.36, 1) 940ms both;
}

.alvi-banner__catalog svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.alvi-banner__catalog:hover,
.alvi-banner__catalog:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
}

@keyframes intro-header-top {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-header-logo {
  from {
    opacity: 0;
    transform: translate3d(0, -12px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes intro-header-nav {
  from {
    opacity: 0;
    transform: translate3d(0, -14px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-hero-image {
  from {
    opacity: 0;
    transform: scale(1.05);
    filter: blur(4px) saturate(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0) saturate(1);
  }
}

@keyframes intro-light-sweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  22% {
    opacity: 0.84;
  }
  100% {
    transform: translateX(430%);
    opacity: 0;
  }
}

@keyframes intro-title-line {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-cta-left {
  from {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes intro-cta-right {
  from {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header__top,
  .site-logo,
  .site-header__nav-zone,
  .alvi-banner::before,
  .alvi-banner img,
  .alvi-banner__title-line,
  .alvi-banner__scroll,
  .alvi-banner__catalog {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 900px) {
  .alvi-banner__content {
    justify-content: end;
    gap: 25px;
  }

  .alvi-banner__title {
    font-size: clamp(42px, 11vw, 82px);
    line-height: 0.95;
  }

  .alvi-banner__scroll,
  .alvi-banner__catalog {
    font-size: var(--fs-body);
  }
}

@media (max-width: 640px) {
  .alvi-banner__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .alvi-banner__catalog {
    align-self: flex-start;
    min-height: 40px;
    padding-inline: 18px;
  }

  .alvi-banner__scroll,
  .alvi-banner__catalog {
    font-size: var(--fs-md);
  }
}

/* About highlight */
.about-highlight {
  position: relative;
  padding: clamp(38px, 10vh, 84px) clamp(16px, 2.4vw, 40px) clamp(34px, 10vh, 78px);
  background: radial-gradient(circle at 78% 38%, rgba(113, 173, 255, 0.15) 0%, rgba(113, 173, 255, 0) 38%), linear-gradient(116deg, #0d3f8f 0%, #0a3072 44%, #072257 70%, #04163f 100%);
  color: rgba(255, 255, 255, 0.95);
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 24% 72%, rgba(169, 211, 255, 0.12) 0%, rgba(169, 211, 255, 0) 48%);
    pointer-events: none;
  }
}

.about-highlight__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  gap: clamp(24px, 3.2vw, 58px);
}

.about-highlight__copy {
  min-width: 0;
}

.about-highlight__title {
  margin: 0;
  font-size: var(--fs-fluid-about-title);
  line-height: 0.94;
  font-weight: 100;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.about-highlight__text {
  margin: clamp(22px, 3vh, 36px) 0 0;
  max-width: 900px;
  font-size: var(--fs-fluid-about-copy);
  line-height: 1.22;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}

.about-highlight__cta {
  margin-top: clamp(22px, 3vh, 34px);
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: var(--fs-md);
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.about-highlight__cta svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-highlight__cta:hover,
.about-highlight__cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
}

.about-highlight__media {
  position: relative;
  width: min(100%, 860px);
  margin-left: auto;
  overflow: hidden;
  max-width: 800px;
  display: flex;
}

.about-highlight__media img {
  width: 100%;
  object-fit: contain;
  display: block;
  margin-top: auto;
}

.about-highlight__media.is-awaiting-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  transform-origin: top center;
  transform: scaleY(1);
  background: linear-gradient(112deg, #4a79b1 0%, #3f6ea8 42%, #255791 100%);
}

.about-highlight__media.is-awaiting-reveal.is-revealed::after {
  animation: about-media-mask-reveal 920ms cubic-bezier(0.22, 1, 0.36, 1) 140ms forwards;
}

.about-highlight__placeholder {
  position: absolute;
  inset: auto 20px 20px auto;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
}

@keyframes about-media-mask-reveal {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

@media (max-width: 1200px) {
  .about-highlight__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-highlight__media {
    width: 100%;
    max-width: 760px;
    margin: 0;
  }
}

@media (max-width: 900px) {
  .about-highlight__title {
    font-size: clamp(36px, 8vw, 64px);
  }

  .about-highlight__text {
    font-size: clamp(16px, 2.4vw, 24px);
    line-height: 1.3;
  }
}

@media (max-width: 640px) {
  .about-highlight {
    padding-inline: 16px;
  }

  .about-highlight__title {
    font-size: clamp(30px, 11vw, 44px);
  }

  .about-highlight__text {
    margin-top: 16px;
    font-size: var(--fs-body);
  }

  .about-highlight__cta {
    min-height: 40px;
    padding-inline: 18px;
    font-size: var(--fs-sm);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-highlight__media.is-awaiting-reveal::after,
  .about-highlight__media.is-awaiting-reveal.is-revealed::after {
    transform: scaleY(0) !important;
    animation: none !important;
  }

  .featured-products.is-awaiting-reveal .featured-product-card,
  .featured-products.is-revealed .featured-product-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Featured products */
.featured-products {
  background: #fff;
  color: #2e6eb4;
  border-top: 1px solid rgba(43, 108, 190, 0.2);
}

.featured-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(16px, 2.4vw, 40px) 24px;
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.featured-products__title {
  margin: 0;
  font-size: var(--fs-fluid-featured-title);
  line-height: 0.95;
  font-weight: 200;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.featured-products__count {
  margin: 0;
  display: inline-grid;
  justify-items: end;
  gap: 6px;
  font-size: var(--fs-title-sm);
  line-height: 1;
  text-transform: uppercase;
}

.featured-products__count span {
  font-size: var(--fs-md);
  color: rgba(46, 110, 180, 0.85);
}

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

.featured-products.is-awaiting-reveal .featured-product-card {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  will-change: opacity, transform;
}

.featured-products.is-revealed .featured-product-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--featured-reveal-delay, 0ms) + 40ms),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--featured-reveal-delay, 0ms) + 40ms);
}

.featured-product-card {
  padding: 18px clamp(16px, 2.4vw, 40px) 26px;
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto auto auto;
  gap: 14px;
  border-right: 1px solid rgba(43, 108, 190, 0.2);
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.featured-product-card:nth-child(3n) {
  border-right: 0;
}

.featured-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: var(--fs-md);
  text-transform: uppercase;
  color: rgba(46, 110, 180, 0.92);
}

.featured-product-card__visual {
  display: grid;
  place-items: center;
  padding-block: 8px 4px;
}

.featured-product-card__image {
  width: min(82%, 320px);
  aspect-ratio: 0.72 / 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.featured-product-card__image span {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(46, 110, 180, 0.62);
}

.featured-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 12px;
  box-sizing: border-box;
  transition: opacity 360ms ease;
}

.featured-product-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 12px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.featured-product-card.is-video-active .featured-product-card__image img {
  opacity: 0;
}

.featured-product-card.is-video-active .featured-product-card__video {
  opacity: 1;
}

.featured-product-card__image--2 {
  width: min(74%, 300px);
}

.featured-product-card__image--3 {
  width: min(86%, 340px);
  aspect-ratio: 1.06 / 0.76;
}

.featured-product-card__image--4 {
  width: min(68%, 260px);
}

.featured-product-card__image--5 {
  width: min(86%, 340px);
  aspect-ratio: 1.12 / 0.72;
}

.featured-product-card__image--6 {
  width: min(86%, 340px);
  aspect-ratio: 1.12 / 0.72;
}

.featured-product-card__title {
  margin: 0;
  font-size: var(--fs-fluid-featured-card-title);
  line-height: 1.08;
  font-weight: 400;
  text-transform: uppercase;
}

.featured-product-card__price {
  margin: 0;
  font-size: var(--fs-ui);
  line-height: 1;
  font-weight: 400;
}

.featured-product-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-product-card__btn {
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  border: 1px solid rgba(43, 108, 190, 0.45);
  color: #2e6eb4;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
  font-weight: 400;
}

.featured-product-card__btn--soft {
  background: rgba(74, 133, 209, 0.16);
  border-color: rgba(74, 133, 209, 0.16);
}

.featured-product-card__btn:hover,
.featured-product-card__btn:focus-visible {
  border-color: rgba(43, 108, 190, 0.9);
  background: rgba(43, 108, 190, 0.1);
}

@media (max-width: 1180px) {
  .featured-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-product-card:nth-child(3n) {
    border-right: 1px solid rgba(43, 108, 190, 0.2);
  }

  .featured-product-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .featured-products__header {
    align-items: start;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    padding-bottom: 18px;
  }

  .featured-products__count {
    justify-items: start;
  }

  .featured-products__grid {
    grid-template-columns: 1fr;
  }

  .featured-product-card,
  .featured-product-card:nth-child(3n),
  .featured-product-card:nth-child(2n) {
    border-right: 0;
  }

  .featured-product-card {
    min-height: 0;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 20px;
  }

  .featured-product-card__title {
    font-size: var(--fs-title-lg);
  }

  .featured-product-card__price {
    font-size: var(--fs-ui);
  }
}

/* Catalog page */
.page-catalog .catalog-page {
  background: #fff;
  color: #2e6eb4;
  padding-top: 207px;
}

.catalog-toolbar {
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
  background: #fff;
}

.catalog-toolbar .product-hero__meta {
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.catalog-filter {
  padding: 30px clamp(16px, 2.4vw, 40px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.catalog-filter__right {
  margin-left: auto;
  display: grid;
  justify-items: end;
  gap: 16px;
}

.catalog-filter__title {
  margin: 0;
  font-size: var(--fs-fluid-featured-title);
  line-height: 0.88;
  font-weight: 200;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-filter__group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-filter__group--right {
  justify-content: flex-end;
}

.catalog-filter__btn {
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid rgba(43, 108, 190, 0.35);
  background: #fff;
  color: rgba(46, 110, 180, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}

.catalog-filter__btn:hover,
.catalog-filter__btn:focus-visible {
  border-color: rgba(43, 108, 190, 0.8);
}

.catalog-filter__btn.is-active {
  background: #2e6eb4;
  border-color: #2e6eb4;
  color: #fff;
}

.featured-products--catalog {
  border-top: 0;
}

.featured-products--catalog .featured-product-card.is-filtered-out {
  display: none;
}

@media (max-width: 1024px) {
  .page-catalog .catalog-page {
    padding-top: 92px;
  }

  .catalog-filter {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .catalog-filter__right {
    width: 100%;
    justify-items: start;
  }

  .catalog-filter__group--right {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .catalog-filter {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .catalog-filter__title {
    font-size: clamp(28px, 10vw, 42px);
  }

  .catalog-filter__btn {
    min-height: 38px;
    padding-inline: 14px;
    font-size: var(--fs-xs);
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 38%, rgba(113, 173, 255, 0.15) 0%, rgba(113, 173, 255, 0) 38%),
    linear-gradient(116deg, #0d3f8f 0%, #0a3072 44%, #072257 70%, #04163f 100%);
  border-top: 1px solid var(--line);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 72%, rgba(169, 211, 255, 0.12) 0%, rgba(169, 211, 255, 0) 48%);
  pointer-events: none;
}

.site-footer__top,
.site-footer__brand,
.site-footer__links,
.site-footer__bottom {
  position: relative;
  z-index: 1;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) auto minmax(140px, 1fr);
  border-bottom: 1px solid var(--line);
}

.site-footer__top-link,
.site-footer__top-center {
  min-height: 82px;
  padding: 0 clamp(16px, 2.4vw, 40px);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: var(--fs-ui);
  letter-spacing: 0.03em;
  line-height: 1;
}

.site-footer__top-link {
  transition: opacity var(--transition-fast), background-color var(--transition-fast);
}

.site-footer__top-link:hover,
.site-footer__top-link:focus-visible {
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__top-link--right {
  justify-content: flex-end;
}

.site-footer__top-center {
  justify-content: center;
  gap: 18px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.site-footer__lang {
  opacity: 0.86;
  transition: opacity var(--transition-fast);
}

.site-footer__lang:hover,
.site-footer__lang:focus-visible {
  opacity: 1;
}

.site-footer__cta {
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.site-footer__cta:hover,
.site-footer__cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
}

.site-footer__brand {
  min-height: clamp(180px, 30vh, 340px);
  padding: clamp(28px, 6vh, 62px) clamp(16px, 2.4vw, 40px);
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.footer-brand__logo {
  animation: none;
  opacity: 0.96;
}

.footer-brand__logo:hover {
  opacity: 0.82;
}

.footer-brand__logo svg {
  width: clamp(170px, 18vw, 280px);
  height: auto;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.site-footer__links a {
  min-height: 84px;
  padding: 0 clamp(16px, 2.1vw, 30px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: var(--fs-body);
  line-height: 1.05;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: opacity var(--transition-fast), background-color var(--transition-fast);
}

.site-footer__links a:last-child {
  border-right: 0;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  opacity: 0.82;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__bottom {
  padding: 26px clamp(16px, 2.4vw, 40px) 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__legal {
  margin: 0;
  max-width: 920px;
  font-size: var(--fs-md);
  line-height: 1.28;
  opacity: 0.84;
  text-transform: uppercase;
}

.site-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  text-transform: uppercase;
  font-size: var(--fs-body);
  white-space: nowrap;
}

.site-footer__social a {
  transition: opacity var(--transition-fast);
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  opacity: 0.78;
}

@media (max-width: 1160px) {
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__top-center {
    justify-content: flex-start;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .site-footer__top-link--right {
    justify-content: flex-start;
  }

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

  .site-footer__links a:nth-child(3n) {
    border-right: 0;
  }

  .site-footer__links a:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .site-footer__top-link,
  .site-footer__top-center {
    min-height: 68px;
    font-size: var(--fs-body);
  }

  .site-footer__top-center {
    gap: 10px;
    flex-wrap: wrap;
  }

  .site-footer__cta {
    min-height: 38px;
    padding: 0 18px;
  }

  .site-footer__links {
    grid-template-columns: 1fr;
  }

  .site-footer__links a {
    min-height: 62px;
    justify-content: flex-start;
    border-right: 0;
    border-top: 1px solid var(--line);
    font-size: var(--fs-md);
    text-align: left;
  }

  .site-footer__links a:first-child {
    border-top: 0;
  }

  .site-footer__legal {
    font-size: var(--fs-sm);
  }

  .site-footer__social {
    font-size: var(--fs-md);
    gap: 16px;
  }
}

/* ── Banner-header pages (product, checkout, success, …)
   Add .page-has-banner to <body> in header() for any page that needs
   the absolute header with background image + blur overlay.
   ─────────────────────────────────────────────────────────────────── */

.page-has-banner {
  background: #edf2fb;
}

.page-has-banner .site-header {
  position: absolute;
}

.page-has-banner .site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: url("../image/banner-caver.png") center top / cover no-repeat;
  height: 207px;
  transition:
    height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
}

.page-has-banner .site-header::before {
  z-index: 1;
  height: 207px;
  backdrop-filter: blur(25px);
  transition: height 520ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 420ms ease;
}

.page-has-banner .site-header.is-mega-open::after {
  height: 100%;
  opacity: 1;
}

.page-has-banner .site-header.is-desktop-menu-open::after {
  height: 100vh;
  opacity: 1;
}

.page-has-banner .site-header.is-mega-open::before {
  height: 100%;
  backdrop-filter: blur(25px);
}

.page-has-banner .site-header.is-desktop-menu-open::before {
  height: 100vh;
  backdrop-filter: blur(25px);
}

.page-has-banner .site-header.is-desktop-menu-open {
  height: auto;
  min-height: 0;
}

.page-has-banner .site-header > .site-header__top {
  position: relative;
  z-index: 3;
}

.page-has-banner .site-header > .site-header__nav-zone {
  z-index: 2;
}

.product-page {
  background: #fff;
  color: #2d6cb2;
  padding-top: 207px;
}

.product-hero {
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.product-hero__meta {
  min-height: 58px;
  padding: 0 clamp(16px, 2.4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: var(--fs-md);
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.product-hero__breadcrumbs {
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
  color: rgba(45, 108, 178, 0.78);
}

.product-hero__breadcrumb-link,
.product-hero__breadcrumb-current {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.product-hero__breadcrumb-link {
  color: rgba(45, 108, 178, 0.72);
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.product-hero__breadcrumb-link::after {
  content: "/";
  margin: 0 10px;
  color: rgba(45, 108, 178, 0.44);
}

.product-hero__breadcrumb-link:hover,
.product-hero__breadcrumb-link:focus-visible {
  color: rgba(45, 108, 178, 0.95);
}

.product-hero__breadcrumb-current {
  color: rgba(45, 108, 178, 0.96);
  padding: 5px 10px 4px;
  border: 1px solid rgba(45, 108, 178, 0.24);
  background: rgba(255, 255, 255, 0.42);
}

.product-hero__stock {
  color: rgba(45, 108, 178, 0.88);
  white-space: nowrap;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1fr);
}

/* ── Gallery: thumbs left + main viewer right ── */
.product-hero__gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-right: 1px solid rgba(43, 108, 190, 0.2);
  background: #fff;
}

/* Vertical thumbnail strip */
.product-hero__thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 8px;
  max-height: clamp(420px, 70vh, 760px);
  overflow-y: auto;
  overflow-x: hidden;
  border-right: 1px solid rgba(43, 108, 190, 0.1);
  scrollbar-width: thin;
  scrollbar-color: rgba(43, 108, 190, 0.2) transparent;
}

.product-hero__thumbs::-webkit-scrollbar {
  width: 3px;
}

.product-hero__thumbs::-webkit-scrollbar-thumb {
  background: rgba(43, 108, 190, 0.25);
  border-radius: 3px;
}

.product-hero__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #f4f7fc;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition-fast), opacity var(--transition-fast);
  opacity: 0.6;
}

.product-hero__thumb:hover {
  opacity: 0.85;
}

.product-hero__thumb.is-active {
  border-color: #2e6eb4;
  opacity: 1;
}

.product-hero__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 22, 63, 0.4);
  pointer-events: none;
}

/* Main viewer */
.product-hero__media {
  min-height: clamp(420px, 62vh, 760px);
  padding: 0;
  display: grid;
  place-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.product-hero__video {
  grid-area: 1 / 1;
  width: min(100%, 100%);
  max-height: min(70vh, 720px);
  object-fit: contain;
  display: block;
  filter: none;
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-hero__media-fallback {
  grid-area: 1 / 1;
  width: min(100%, 540px);
  max-height: min(70vh, 720px);
  object-fit: contain;
  display: block;
  opacity: 1;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.product-hero__main-photo {
  grid-area: 1 / 1;
  width: min(100%, 600px);
  max-height: min(70vh, 720px);
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.product-hero__main-photo.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.product-hero__media.is-video-ready .product-hero__video {
  opacity: 1;
}

.product-hero__media.is-video-ready .product-hero__media-fallback {
  opacity: 0;
}

/* When showing a photo, hide video */
.product-hero__media.is-photo-mode .product-hero__video,
.product-hero__media.is-photo-mode .product-hero__media-fallback {
  opacity: 0;
}

.product-hero__video-wrap {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: inherit;
}

.product-hero__video-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── Lightbox ── */
.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 18, 52, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s linear 0s;
}

.product-lightbox__img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.product-lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background-color var(--transition-fast);
}

.product-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.product-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background-color var(--transition-fast);
}

.product-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.16);
}

.product-lightbox__nav--prev {
  left: 24px;
}

.product-lightbox__nav--next {
  right: 24px;
}

/* ── Details (right column) ── */
.product-hero__details {
  padding: clamp(26px, 4.6vh, 56px) clamp(18px, 3vw, 66px);
  display: grid;
  align-content: start;
  gap: 16px;
}

.product-hero__title {
  margin: 0;
  font-size: var(--fs-product-title);
  line-height: 0.96;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.product-hero__price {
  margin: 0;
  font-size: var(--fs-fluid-product-price);
  line-height: 1;
  font-weight: 400;
}

.product-hero__info {
  margin: 2px 0 0;
  display: grid;
  gap: 2px;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(45, 108, 178, 0.9);
}

.product-hero__description {
  margin: 6px 0 0;
  max-width: 860px;
  font-size: var(--fs-body);
  line-height: 1.44;
  color: rgba(45, 108, 178, 0.86);
}

.product-hero__rating {
  margin: 4px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-ui-lg);
  letter-spacing: 0.05em;
}

.product-hero__rating a {
  font-size: var(--fs-md);
  text-transform: uppercase;
  color: rgba(45, 108, 178, 0.9);
  transition: opacity var(--transition-fast);
}

.product-hero__rating a:hover,
.product-hero__rating a:focus-visible {
  opacity: 0.75;
}

.product-hero__purchase {
  margin-top: 12px;
}

.product-hero__qty-label {
  margin: 0 0 10px;
  font-size: var(--fs-md);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-hero__qty {
  min-height: 52px;
  border: 1px solid rgba(43, 108, 190, 0.3);
  display: grid;
  grid-template-columns: 52px 1fr 52px;
}

.product-hero__qty button,
.product-hero__qty span,
.product-hero__qty input {
  border: 0;
  outline: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #2e6eb4;
  font-size: var(--fs-title-sm);
  -moz-appearance: textfield;
}

.product-hero__qty input::-webkit-outer-spin-button,
.product-hero__qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.product-hero__qty button {
  cursor: pointer;
  font-size: 20px;
}

.product-hero__actions {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.product-hero__btn {
  min-height: 54px;
  border: 1px solid rgba(43, 108, 190, 0.34);
  text-transform: uppercase;
  font-size: var(--fs-ui);
  font-weight: 300;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.product-hero__btn--primary {
  background: #2e6eb4;
  border-color: #2e6eb4;
  color: #fff;
}

.product-hero__btn--primary:hover,
.product-hero__btn--primary:focus-visible {
  background: #245c9a;
  border-color: #245c9a;
}

.product-hero__btn--soft {
  background: rgba(74, 133, 209, 0.18);
  color: #2e6eb4;
}

.product-hero__btn--soft:hover,
.product-hero__btn--soft:focus-visible {
  background: rgba(74, 133, 209, 0.28);
}

@media (max-width: 1024px) {
  .product-page {
    padding-top: 92px;
  }

  .product-hero__grid {
    grid-template-columns: 1fr;
  }

  .product-hero__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-right: 0;
    border-bottom: 1px solid rgba(43, 108, 190, 0.2);
  }

  .product-hero__thumbs {
    order: 1;
    flex-direction: row;
    max-height: none;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 10px 16px;
    gap: 8px;
    border-right: 0;
    border-top: 1px solid rgba(43, 108, 190, 0.1);
  }

  .product-hero__thumbs::-webkit-scrollbar {
    height: 3px;
    width: auto;
  }

  .product-hero__thumb {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 720px) {
  .product-hero__meta {
    min-height: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: var(--fs-xs);
  }

  .product-hero__breadcrumbs {
    row-gap: 6px;
  }

  .product-hero__breadcrumb-link::after {
    margin-inline: 8px;
  }

  .product-hero__breadcrumb-current {
    padding: 4px 8px 3px;
  }

  .product-hero__details {
    padding: 20px 16px 24px;
    gap: 12px;
  }

  .product-hero__title {
    font-size: var(--fs-product-title-mobile);
  }

  .product-hero__price {
    font-size: var(--fs-title-xl);
  }

  .product-hero__description {
    font-size: var(--fs-md);
    line-height: 1.4;
  }

  .product-hero__actions {
    grid-template-columns: 1fr;
  }

  .product-hero__btn {
    min-height: 48px;
    font-size: var(--fs-body);
  }
}

/* OpenCart inner pages — content offset for absolute header */

.page-product #common-home,
.page-product .container {
  padding-top: 0;
}

/* ── Product Tabs ── */

.product-tabs {
  background: #fff;
  border-top: 1px solid rgba(43, 108, 190, 0.15);
}

.product-tabs__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.product-tabs__nav {
  display: flex;
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
  margin-bottom: 36px;
  gap: 0;
}

.product-tabs__tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 16px 28px;
  font-size: var(--fs-md);
  font-weight: 400;
  color: #6b7a8d;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.product-tabs__tab:hover {
  color: #2e6eb4;
}

.product-tabs__tab.is-active {
  color: #2e6eb4;
  border-bottom-color: #2e6eb4;
  font-weight: 500;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel.is-active {
  display: block;
}

.product-tabs__description {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: #2c3e50;
  max-width: 100%;
}

.product-tabs__description p { margin: 0 0 1em; }
.product-tabs__description h2,
.product-tabs__description h3 { font-weight: 400; margin: 1.2em 0 0.5em; color: #0d2b6e; }

.product-attributes__group {
  margin-bottom: 28px;
}

.product-attributes__group-title {
  font-size: var(--fs-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d2b6e;
  margin: 0 0 12px;
}

.product-attributes__table {
  width: 100%;
  border-collapse: collapse;
}

.product-attributes__table tr {
  border-bottom: 1px solid rgba(43, 108, 190, 0.1);
}

.product-attributes__table tr:last-child {
  border-bottom: none;
}

.product-attributes__name,
.product-attributes__value {
  padding: 10px 0;
  font-size: var(--fs-md);
  vertical-align: top;
}

.product-attributes__name {
  color: #6b7a8d;
  width: 40%;
  padding-right: 20px;
}

.product-attributes__value {
  color: #2c3e50;
}

@media (max-width: 720px) {
  .product-tabs__inner {
    padding: 0 16px 40px;
  }

  .product-tabs__tab {
    padding: 12px 16px;
    font-size: var(--fs-sm);
  }

  .product-attributes__name {
    width: 50%;
  }
}

/* ── Product Review ── */

.product-review__list {
  margin-bottom: 32px;
}

.product-review__form-wrap {
  border-top: 1px solid rgba(43, 108, 190, 0.15);
  padding-top: 28px;
}

.product-review__form-title {
  font-size: var(--fs-title-sm);
  font-weight: 400;
  color: #0d2b6e;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-review__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.product-review__star-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.product-review__star-label {
  cursor: pointer;
  color: rgba(43, 108, 190, 0.3);
  transition: color 0.15s;
  line-height: 1;
}

.product-review__star-label.is-highlighted,
.product-review__star-label:hover {
  color: #2e6eb4;
}

.product-review__star-icon {
  display: block;
}

.product-review__star-hint {
  font-size: var(--fs-xs);
  color: #6b7a8d;
  margin-left: 8px;
}

.product-review__alert {
  padding: 12px 16px;
  border-radius: 0;
  font-size: var(--fs-md);
  margin-bottom: 16px;
}

.product-review__alert--success {
  background: rgba(46, 110, 180, 0.08);
  border: 1px solid rgba(46, 110, 180, 0.3);
  color: #2e6eb4;
}

.product-review__login {
  color: #6b7a8d;
  font-size: var(--fs-md);
}

/* ── Checkout Page ── */

.checkout-page {
  min-height: 100vh;
  background: #edf2fb;
  color: #2e6eb4;
  padding-top: 207px;
}

.checkout-page__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.checkout-page__head {
  margin-bottom: 32px;
}

.checkout-page__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(46, 110, 180, 0.6);
  margin-bottom: 12px;
}

.checkout-page__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.checkout-page__breadcrumbs a:hover {
  color: #2e6eb4;
}

.checkout-page__breadcrumbs span:last-child {
  color: #2e6eb4;
}

.checkout-page__breadcrumb-sep {
  opacity: 0.4;
}

.checkout-page__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2e6eb4;
  margin: 0;
}

.checkout-page__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}

/* Blocks */
.checkout-block {
  background: #fff;
  border: 1px solid rgba(43, 108, 190, 0.15);
  padding: 28px 28px 24px;
  margin-bottom: 20px;
}

.checkout-block--summary {
  background: rgba(95, 151, 222, 0.08);
}

/* Override Bootstrap inside checkout — reset grid, full-width flush fields */
.checkout-page fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 4px;
}

.checkout-page legend {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(46, 110, 180, 0.55);
  border-bottom: 1px solid rgba(43, 108, 190, 0.15);
  width: 100%;
  padding-bottom: 8px;
  margin-bottom: 0;
}

/* Collapse Bootstrap row/col so fields stack full-width */
.checkout-page .row {
  display: block;
  margin: 0;
}

.checkout-page .row > [class*="col"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0;
  flex: none;
}

/* Each field group: label above input, no bottom gap, borders merge */
.checkout-page .mb-3 {
  margin-bottom: 0 !important;
  position: relative;
}

.checkout-page .form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(46, 110, 180, 0.6);
  padding: 10px 14px 0;
  margin: 0;
  background: #fff;
  border: 1px solid rgba(43, 108, 190, 0.2);
  border-bottom: 0;
  margin-top: -1px;
}

.checkout-page .mb-3:first-child .form-label {
  margin-top: 0;
}

.checkout-page .form-control,
.checkout-page .form-select {
  display: block;
  width: 100%;
  height: 46px;
  border: 1px solid rgba(43, 108, 190, 0.2);
  border-top: 0;
  border-radius: 0;
  background: #fff;
  color: #2e6eb4;
  font-size: 14px;
  padding: 0 14px 8px;
  box-shadow: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-top: 0;
}

.checkout-page .form-control:focus,
.checkout-page .form-select:focus {
  border-color: #2e6eb4;
  background: rgba(95, 151, 222, 0.04);
  box-shadow: none;
  outline: none;
  z-index: 1;
  position: relative;
}

.checkout-page .form-control.is-invalid,
.checkout-page .form-select.is-invalid {
  border-color: #c0392b;
}

.checkout-page .invalid-feedback {
  font-size: 10px;
  color: #c0392b;
  padding: 3px 14px;
  background: rgba(192, 57, 43, 0.05);
  margin: 0;
}

.checkout-page .invalid-feedback.d-block {
  display: block !important;
}

/* Radio / guest account selector */
.checkout-page .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin: 0;
  border: 1px solid rgba(43, 108, 190, 0.2);
  margin-top: -1px;
  background: #fff;
  cursor: pointer;
}

.checkout-page .form-check:first-child {
  margin-top: 0;
}

.checkout-page .form-check:has(.form-check-input:checked) {
  background: rgba(95, 151, 222, 0.08);
  border-color: rgba(46, 110, 180, 0.4);
}

.checkout-page .form-check-input {
  border-color: rgba(43, 108, 190, 0.4);
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
}

.checkout-page .form-check-input:checked {
  background-color: #2e6eb4;
  border-color: #2e6eb4;
}

.checkout-page .form-check-label {
  font-size: 13px;
  color: #2e6eb4;
  cursor: pointer;
  margin: 0;
}

/* Inline form-check-inline (account type radios) */
.checkout-page .form-check-inline {
  display: inline-flex;
  margin-right: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  margin-top: 12px;
}

/* Select (account type) — standalone without label wrapper */
.checkout-page .mb-3 > select.form-select {
  border-top: 1px solid rgba(43, 108, 190, 0.2);
  margin-top: 8px;
  height: 46px;
  padding: 0 14px;
}

/* form-switch (newsletter, agree) */
.checkout-page .form-switch {
  border: 0;
  background: transparent;
  padding-left: 48px;
  margin-top: 12px;
}

.checkout-page .form-switch .form-check-input {
  border-radius: 20px;
}

.checkout-page .btn-primary {
  background: #2e6eb4;
  border: 0;
  border-radius: 0;
  height: 50px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.checkout-page .btn-primary:hover,
.checkout-page .btn-primary:focus {
  background: #1d5090;
  border: 0;
  box-shadow: none;
}

.checkout-page .btn-primary:disabled {
  background: rgba(46, 110, 180, 0.35);
}

.checkout-page p.text-muted,
.checkout-page .text-muted {
  font-size: 12px;
  color: rgba(46, 110, 180, 0.55) !important;
}

/* Order summary table */
.checkout-page .table {
  color: #2e6eb4;
  font-size: 13px;
  border-color: rgba(43, 108, 190, 0.15);
}

.checkout-page .table thead th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(46, 110, 180, 0.6);
  border-color: rgba(43, 108, 190, 0.2);
  background: transparent;
  padding: 10px 12px;
}

.checkout-page .table td {
  border-color: rgba(43, 108, 190, 0.1);
  padding: 10px 12px;
  vertical-align: middle;
}

.checkout-page .table tfoot td {
  font-size: 12px;
  border-top: 1px solid rgba(43, 108, 190, 0.2);
}

.checkout-page .table tfoot tr:last-child td {
  font-size: 16px;
  font-weight: 600;
  border-top: 2px solid rgba(43, 108, 190, 0.3);
}

.checkout-page .table a {
  color: #2e6eb4;
  text-decoration: none;
}

.checkout-page .table a:hover {
  text-decoration: underline;
}

/* Confirm / payment button */
.checkout-page #checkout-payment button[type="button"],
.checkout-page #checkout-payment .btn {
  width: 100%;
  height: 58px;
  background: #2e6eb4;
  border: 0;
  border-radius: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s ease;
}

.checkout-page #checkout-payment button[type="button"]:hover {
  background: #1d5090;
}

/* Radio/checkbox method selectors */
.checkout-page .form-check {
  padding: 10px 14px 10px 36px;
  margin: 0;
  border: 1px solid rgba(43, 108, 190, 0.15);
  margin-bottom: 4px;
  transition: border-color 0.2s ease;
}

.checkout-page .form-check:has(.form-check-input:checked) {
  border-color: #2e6eb4;
  background: rgba(95, 151, 222, 0.08);
}

@media (max-width: 900px) {
  .checkout-page__layout {
    grid-template-columns: 1fr;
  }
  .checkout-page__right {
    order: -1;
  }
  .checkout-block {
    padding: 20px 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   SINGLE-PAGE CHECKOUT  (.co-*)
   ═══════════════════════════════════════════════════════════════════════ */

.co-page {
  min-height: 100vh;
}

.co-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

/* Two-column layout */
.co-body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding-top: 32px;
}

.co-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Sections */
.co-section {
  background: #fff;
  padding: 24px 28px;
  border: 1px solid #cfe6ff;
}

.co-customer-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #f4f8ff;
  border: 1px solid #cfe6ff;
  border-radius: 10px;
}

.co-customer-card__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy, #0d2b6e);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.co-customer-card__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.co-customer-card__name {
  margin: 0;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--navy, #0d2b6e);
}

.co-customer-card__email,
.co-customer-card__phone {
  margin: 0;
  font-size: var(--fs-sm);
  opacity: 0.6;
  color: var(--navy, #0d2b6e);
}

.co-section__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin: 0 0 18px;
}

.co-section__optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #aaa;
  font-size: 12px;
}

/* Override Bootstrap grid inside sections */
.co-section .row,
.co-section .row.row-cols-1,
.co-section .row.row-cols-md-2 {
  display: block !important;
  margin: 0;
}

.co-section [class^="col"],
.co-section [class*=" col"] {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0;
  flex: none;
}

/* Flush fields */
.co-section .mb-3 {
  margin-bottom: 0 !important;
  margin-top: -1px;
}

.co-section .form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  border: 1px solid #d9d9d9;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  padding: 8px 14px 4px;
  background: #fafafa;
  margin: 0;
}

.co-section .form-control,
.co-section .form-select {
  border-radius: 0 0 6px 6px;
  border: 1px solid #d9d9d9;
  border-top: none;
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: none;
  background: #fff;
  width: 100%;
}

.co-section .form-control:focus,
.co-section .form-select:focus {
  border-color: #2e6eb4;
  box-shadow: none;
  outline: none;
}

.co-section fieldset {
  border: none;
  padding: 0;
  margin: 20px 0 0;
}

.co-section legend {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2e6eb4;
  margin-bottom: 12px;
  float: none;
  width: auto;
  padding: 0;
}

/* Hide OC's submit button — we use our own Place Order button */
.co-section #button-register,
#co-register-wrap .btn-primary {
  display: none !important;
}

/* Login info text */
.co-section > p:first-child,
#co-register-wrap > p:first-child {
  font-size: 13px;
  color: #777;
  margin-bottom: 16px;
}

/* Method options (shipping / payment) */
.co-method-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}

.co-method-option:hover {
  border-color: #2e6eb4;
}

.co-method-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #2e6eb4;
  flex-shrink: 0;
}

.co-method-option:has(input:checked) {
  border-color: #2e6eb4;
  background: rgba(46,110,180,.04);
}

.co-method-option__label {
  flex: 1;
  font-size: 14px;
  color: #222;
}

.co-method-option__price {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.co-loading {
  color: #aaa;
  font-size: 14px;
  padding: 8px 0;
}

.co-step__error {
  color: #c0392b;
  font-size: 13px;
  padding: 6px 0;
}

.co-step__error--retry p {
  margin: 0 0 10px;
}

.co-step__retry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  background: #fff;
  color: #1a1a1a;
  border: 1px solid rgba(26,26,26,.2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}

.co-step__retry:hover,
.co-step__retry:focus-visible {
  background: #f7f7f7;
  border-color: #1a1a1a;
}

.co-step__empty {
  color: #999;
  font-size: 14px;
}

/* Order notes textarea */
.co-textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  resize: vertical;
  box-shadow: none;
  outline: none;
  font-family: inherit;
  color: #333;
}

.co-textarea:focus {
  border-color: #2e6eb4;
}

/* Place order block */
.co-place-order {
  margin-top: 8px;
}

.co-errors {
  background: #fff3f3;
  border: 1px solid #f5c0c0;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #c0392b;
}

.co-btn-place-order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 0;
  background: #2e6eb4;
  color: #fff;
  font-size: var(--fs-ui-lg);
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.co-btn-place-order:disabled { opacity: .6; cursor: not-allowed; }

/* Sidebar */
.co-aside {
  position: sticky;
  top: 24px;
}

.co-summary {
  background: #fff;
  padding: 20px 24px;
  border: 1px solid #cfe6ff;
}

.co-summary__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #555;
  margin: 0 0 16px;
}

.co-sum-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}

.co-sum-item:last-child {
  border-bottom: none;
}

.co-sum-item__img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.co-sum-item__info {
  flex: 1;
  min-width: 0;
}

.co-sum-item__name {
  display: block;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.co-sum-item__qty {
  color: #999;
  font-size: 12px;
}

.co-sum-item__price {
  font-weight: 600;
  white-space: nowrap;
}

.co-summary__totals {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid #eee;
}

.co-sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 820px) {
  .co-body {
    grid-template-columns: 1fr;
    padding-top: 16px;
  }
  .co-aside {
    order: -1;
    position: static;
  }
  .co-section {
    padding: 20px 16px;
  }
  .co-btn-place-order {
    font-size: 14px;
    padding: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   CHECKOUT SUCCESS
   ═══════════════════════════════════════════════════════════════════════ */

/* ── success page content ────────────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  background: transparent;
}

.success-page__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 72px;
}

.success-page__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.success-page__status {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  color: #2e6eb4;
  text-transform: uppercase;
  white-space: nowrap;
}

.success-page__content {
  margin-bottom: 24px;
}

.success-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 70px 56px 64px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.success-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(46,110,180,.08), transparent 34%, transparent 66%, rgba(26,26,26,.04));
}

.success-hero > * {
  position: relative;
  z-index: 1;
}

.success-hero__mark {
  width: 78px;
  height: 78px;
  margin-bottom: 26px;
  color: #2e6eb4;
}

.success-hero__mark svg {
  display: block;
  width: 100%;
  height: 100%;
}

.success-hero__mark circle,
.success-hero__mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-hero__kicker {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2e6eb4;
}

.success-hero__title {
  max-width: 680px;
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
}

.success-hero__sub {
  max-width: 480px;
  margin: 20px 0 0;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.success-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.success-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, border-color .2s, color .2s;
}

.success-hero__btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  border: 0;
  background: #2e6eb4;
  color: #fff;
  font-size: var(--fs-ui-lg);
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.success-hero__btn--primary:hover,
.success-hero__btn--primary:focus-visible {
  color: #fff;
  background: #333;
  border-color: #333;
}

.success-hero__btn--ghost {
  color: #1a1a1a;
  background: transparent;
  border: 1px solid rgba(26,26,26,.2);
}

.success-hero__btn--ghost:hover,
.success-hero__btn--ghost:focus-visible {
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.success-next {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.success-next__item {
  min-height: 170px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.success-next__number {
  display: block;
  margin-bottom: 28px;
  color: #2e6eb4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.success-next__item h2 {
  margin: 0 0 10px;
  color: #333;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.success-next__item p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 860px) {
  .success-page__inner {
    padding: 20px 16px 48px;
  }

  .success-page__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .success-hero {
    padding: 46px 20px 40px;
  }

  .success-hero__title {
    font-size: 40px;
  }

  .success-hero__sub {
    font-size: 14px;
  }

  .success-hero__actions {
    width: 100%;
  }

  .success-hero__btn {
    width: 100%;
  }

  .success-next {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   ACCOUNT PAGES
   ═══════════════════════════════════════════════════════════════════════ */

.account-page {
  min-height: 100vh;
  background: transparent;
}

.account-page__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.account-page__inner--narrow {
  max-width: 640px;
}

.account-page__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.account-page__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 32px;
  letter-spacing: -0.02em;
}

.account-alert {
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 24px;
  font-size: var(--fs-md);
}

.account-alert--success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.account-alert--error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.account-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.account-card {
  background: #fff;
  padding: 36px 40px;
  border: 1px solid #cfe6ff;
}

.account-card--table {
  padding: 0;
  overflow: hidden;
}

.account-card--comment {
  padding: 24px 32px;
}

.account-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.account-card__sub {
  font-size: var(--fs-md);
  opacity: 0.6;
  margin: 0 0 24px;
}

.account-card__text {
  font-size: var(--fs-md);
  opacity: 0.75;
  margin: 0 0 28px;
  line-height: 1.6;
}

.account-card__empty {
  opacity: 0.55;
  text-align: center;
  padding: 16px 0;
  margin: 0;
}

.account-card__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.5;
  margin: 0 0 8px;
}

/* ── Fields ── */
.account-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.account-field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.account-field input,
.account-field select {
  height: 52px;
  padding: 0 16px;
  border: 1.5px solid rgba(10, 30, 80, 0.15);
  border-radius: 10px;
  background: #f7f9fc;
  font-size: var(--fs-md);
  color: var(--navy);
  transition: border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.account-field input:focus,
.account-field select:focus {
  outline: none;
  border-color: var(--accent, #5f97de);
  background: #fff;
}

.account-field__link {
  font-size: var(--fs-sm);
  color: var(--navy);
  opacity: 0.55;
  text-decoration: underline;
  align-self: flex-start;
  margin-top: 2px;
}

.account-field__error {
  font-size: var(--fs-sm);
  color: #b91c1c;
  display: none;
}

.account-field__error.d-block {
  display: block;
}

/* ── Buttons ── */
.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 32px;
  background: #2e6eb4;
  color: #fff !important;
  font-size: var(--fs-ui);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid #2e6eb4;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 8px;
}

.account-btn:hover {
  background: #245a96;
  border-color: #245a96;
  color: #fff !important;
}

.account-btn--outline {
  background: transparent;
  color: #2e6eb4 !important;
  border-color: #2e6eb4;
}

.account-btn--outline:hover {
  background: #2e6eb4;
  color: #fff !important;
}

.account-btn--ghost {
  background: transparent;
  color: var(--navy) !important;
  border-color: rgba(10, 30, 80, 0.25);
}

.account-btn--ghost:hover {
  background: rgba(10, 30, 80, 0.06);
  color: var(--navy) !important;
}

.account-btn--sm {
  height: 36px;
  padding: 0 16px;
  font-size: 11px;
  margin-top: 0;
}

.account-btn--danger {
  background: #e53e3e;
  border-color: #e53e3e;
  color: #fff !important;
}

.account-btn--danger:hover {
  background: #c53030;
  border-color: #c53030;
  color: #fff !important;
}

.account-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.account-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(10, 30, 80, 0.15);
  border-radius: 10px;
  background: #f7f9fc;
  font-size: var(--fs-md);
  color: var(--navy);
  resize: vertical;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.account-textarea:focus {
  outline: none;
  border-color: var(--accent, #5f97de);
  background: #fff;
}

.account-empty {
  color: var(--navy);
  opacity: 0.5;
  padding: 16px 0;
}

.contact-info__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info__value {
  font-size: var(--fs-md);
  color: var(--navy);
  line-height: 1.5;
}

.contact-info__value--link {
  color: var(--accent, #5f97de);
  text-decoration: none;
}

.contact-info__value--link:hover {
  text-decoration: underline;
}

.account-address-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.account-address-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1.5px solid rgba(10, 30, 80, 0.12);
  border-radius: 10px;
  background: #f7f9fc;
  flex-wrap: wrap;
}

.account-address-item--default {
  border-color: var(--accent, #5f97de);
  background: #f0f6ff;
}

.account-address-item__text {
  flex: 1;
  font-size: var(--fs-md);
  color: var(--navy);
  line-height: 1.5;
}

.account-address-item__badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent, #5f97de);
  white-space: nowrap;
}

.account-address-item__actions {
  display: flex;
  gap: 8px;
}

/* ── Nav links ── */
.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-nav li a {
  display: block;
  padding: 10px 0;
  font-size: var(--fs-md);
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 30, 80, 0.06);
  transition: opacity 0.15s;
}

.account-nav li:last-child a {
  border-bottom: none;
}

.account-nav li a:hover {
  opacity: 0.6;
}

/* ── Account Tables ── */

.account-table-wrap {
  overflow-x: auto;
  margin: 0 -4px;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-md);
}

.account-table th {
  padding: 10px 12px;
  text-align: left;
  font-weight: 500;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7a8d;
  border-bottom: 1px solid rgba(43, 108, 190, 0.2);
}

.account-table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(43, 108, 190, 0.08);
  color: #2c3e50;
  vertical-align: middle;
}

.account-table tr:last-child td {
  border-bottom: none;
}

.account-table a {
  color: #2e6eb4;
  text-decoration: none;
}

.account-table a:hover {
  text-decoration: underline;
}

.account-table__img {
  width: 72px;
}

.account-table__img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.account-table__num {
  text-align: right;
}

.account-table__actions {
  white-space: nowrap;
  text-align: right;
  display: flex;
  gap: 6px;
  justify-content: flex-end;
}

.account-table__empty {
  text-align: center;
  color: #6b7a8d;
  padding: 24px;
}

.account-table__price-special {
  color: #2e6eb4;
  font-weight: 500;
}

.account-table__price-old {
  color: #9aa5b4;
  font-size: var(--fs-sm);
}

.account-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: var(--fs-sm);
  color: #6b7a8d;
}

.account-summary {
  font-size: var(--fs-md);
  color: #6b7a8d;
  margin: 0 0 20px;
}

.account-summary strong {
  color: #0d2b6e;
}

.account-empty {
  color: #6b7a8d;
  font-size: var(--fs-md);
  padding: 16px 0;
}

.account-actions--right {
  justify-content: flex-end;
}

.account-section-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d2b6e;
  margin: 24px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(43, 108, 190, 0.15);
}

.account-description {
  font-size: var(--fs-md);
  color: #6b7a8d;
  margin: 0 0 20px;
}

.account-radios {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-md);
  color: #2c3e50;
  cursor: pointer;
}

.account-radio input[type="radio"] {
  accent-color: #2e6eb4;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ── Returns Info ── */

.returns-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(43, 108, 190, 0.1);
  border: 1px solid rgba(43, 108, 190, 0.1);
  margin-bottom: 8px;
}

.returns-info__item {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.returns-info__item--full {
  grid-column: 1 / -1;
}

.returns-info__label {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7a8d;
  font-weight: 500;
}

.returns-info__value {
  font-size: var(--fs-md);
  color: #2c3e50;
}

/* ── Information Page ── */

.information-content {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: #2c3e50;
}

.information-content p { margin: 0 0 1em; }
.information-content h2,
.information-content h3 { font-weight: 400; margin: 1.4em 0 0.5em; color: #0d2b6e; }
.information-content a { color: #2e6eb4; }
.information-content ul,
.information-content ol { padding-left: 1.4em; margin: 0 0 1em; }

/* ── Sitemap ── */

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sitemap-section__title {
  font-size: var(--fs-md);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0d2b6e;
  margin: 0 0 16px;
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.sitemap-list li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(43, 108, 190, 0.08);
  font-size: var(--fs-md);
}

.sitemap-list li:last-child { border-bottom: none; }

.sitemap-list a {
  color: #2e6eb4;
  text-decoration: none;
}

.sitemap-list a:hover { text-decoration: underline; }

.sitemap-list--sub {
  margin: 6px 0 0 16px;
}

.sitemap-list--sub li {
  border-bottom: none;
  padding: 3px 0;
  font-size: var(--fs-sm);
}

@media (max-width: 720px) {
  .sitemap-grid { grid-template-columns: 1fr; gap: 24px; }
  .returns-info__grid { grid-template-columns: 1fr; }
}

/* ── Actions row ── */
.account-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.account-page__back {
  margin-top: 32px;
}

/* ── Agree checkbox ── */
.account-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: var(--fs-md);
  color: var(--navy);
}

.account-agree input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
}

/* ── Order meta strip ── */
.account-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(10, 30, 80, 0.07);
}

.account-order-meta__item {
  flex: 1;
  min-width: 160px;
  padding: 20px 28px;
  border-right: 1px solid rgba(10, 30, 80, 0.08);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-order-meta__item:last-child {
  border-right: none;
}

.account-order-meta__label {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.45;
}

.account-order-meta__value {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--navy);
}

/* ── Table ── */
.account-table-wrap {
  overflow-x: auto;
}

.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-md);
}

.account-table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
  opacity: 0.5;
  border-bottom: 1px solid rgba(10, 30, 80, 0.1);
  white-space: nowrap;
}

.account-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(10, 30, 80, 0.06);
  color: var(--navy);
  vertical-align: top;
}

.account-table tbody tr:last-child td {
  border-bottom: none;
}

.account-table tbody tr:hover td {
  background: rgba(10, 30, 80, 0.02);
}

.account-table__total td {
  font-weight: 600;
}

.account-table__options {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: var(--fs-sm);
  opacity: 0.55;
}

.account-table__view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid rgba(10, 30, 80, 0.25);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.account-table__view:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.account-status {
  display: inline-block;
  padding: 3px 10px;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 20px;
  background: rgba(95, 151, 222, 0.15);
  color: var(--navy);
}

.account-pagination {
  padding: 20px 24px;
  border-top: 1px solid rgba(10, 30, 80, 0.08);
}

/* ── Account registration success ── */
.account-success {
  text-align: center;
  padding: 48px 40px 56px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(10, 30, 80, 0.07);
}

.account-success__icon svg {
  width: 64px;
  height: 64px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
}

.account-success__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 12px;
  letter-spacing: -0.02em;
}

.account-success__sub {
  font-size: var(--fs-md);
  color: var(--navy);
  opacity: 0.6;
  margin: 0 0 32px;
  line-height: 1.6;
}

.account-success__actions {
  display: flex;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 720px) {
  .co-sum-item {
    display: block;
  }
  .account-cards {
    grid-template-columns: 1fr;
  }

  .account-card {
    padding: 28px 24px;
  }

  .account-order-meta {
    flex-direction: column;
  }

  .account-order-meta__item {
    border-right: none;
    border-bottom: 1px solid rgba(10, 30, 80, 0.08);
    padding: 16px 20px;
  }

  .account-order-meta__item:last-child {
    border-bottom: none;
  }
}


/* ── Sticky Buy Bar ── */
.sticky-buy-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 20px));
  z-index: 999;
  width: calc(100% - 64px);
  max-width: 1100px;
  background: rgb(7 42 99 / 77%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sticky-buy-bar.is-visible {
  transform: translateX(-50%) translateY(0);
}

.sticky-buy-bar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
}

.sticky-buy-bar__img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex-shrink: 0;
}

.sticky-buy-bar__title {
  flex: 1;
  font-size: 1.1rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.sticky-buy-bar__price {
  font-size: 1.1rem;
  color: #fff;
  white-space: nowrap;
}

.sticky-buy-bar__btn {
  padding: 10px 28px;
  background: #fff;
  color: var(--navy);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.sticky-buy-bar__btn:hover {
  background:rgb(235, 235, 235);
}

@media (max-width: 600px) {
  .sticky-buy-bar {
    width: calc(100% - 24px);
    bottom: 12px;
  }
  .sticky-buy-bar__inner {
    padding: 10px 14px;
    gap: 10px;
  }
  .sticky-buy-bar__title {
    font-size: var(--fs-sm);
  }
}
