﻿/* ======================================================================
   CEVA Merchandise & Corporate Gear - styl główny
   Autor: PixelShark (https://www.pixelshark.eu)
   ====================================================================== */

:root {
  --color-brand: #264662;
  --color-brand-strong: #18334b;
  --color-brand-soft: #3d5f81;
  --color-brand-overlay: rgba(13, 29, 43, 0.9);
  --color-red: #e30613;
  --color-red-hover: #b80510;
  --color-white: #ffffff;
  --color-gray-50: #f7f9fc;
  --color-gray-100: #edf2f7;
  --color-gray-200: #d7e0ea;
  --color-gray-300: #b9c6d5;
  --color-gray-400: #8799ad;
  --color-gray-500: #62758b;
  --color-gray-600: #44586f;
  --color-gray-700: #2f4258;
  --color-gray-800: #1f2e42;
  --color-gray-900: #0c1726;
  --font-sans: 'Manrope', 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-soft: 0 12px 32px rgba(17, 36, 56, 0.13);
  --shadow-hover: 0 18px 42px rgba(17, 36, 56, 0.2);
  --shadow-heavy: 0 26px 54px rgba(9, 17, 33, 0.34);
  --transition-fast: 180ms ease;
  --transition-mid: 280ms ease;
  --top-bar-height: 32px;
  --nav-sticky-offset: 76px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-sans);
  color: var(--color-gray-800);
  background:
    radial-gradient(circle at 8% -10%, rgba(227, 6, 19, 0.1), transparent 38%),
    radial-gradient(circle at 100% 8%, rgba(38, 70, 98, 0.14), transparent 40%),
    linear-gradient(180deg, #f9fbfd 0%, #f2f6fb 62%, #ebf2f8 100%);
}

body.product-page {
  background:
    radial-gradient(circle at 100% 8%, rgba(38, 70, 98, 0.12), transparent 42%),
    linear-gradient(180deg, #f9fbfd 0%, #f1f6fb 64%, #eaf1f8 100%);
}

body.cart-page {
  background:
    radial-gradient(circle at 100% 8%, rgba(38, 70, 98, 0.12), transparent 42%),
    linear-gradient(180deg, #f9fbfd 0%, #f1f6fb 64%, #eaf1f8 100%);
}

body.page:not(.home):not(.product-page):not(.cart-page) {
  background:
    radial-gradient(circle at 100% 8%, rgba(38, 70, 98, 0.12), transparent 42%),
    linear-gradient(180deg, #f9fbfd 0%, #f1f6fb 64%, #eaf1f8 100%);
}

body.is-locked {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

hr,
.wp-block-separator {
  border: 0;
  height: 1px;
  width: min(100%, 860px);
  margin: 2.1rem auto;
  background: linear-gradient(
    90deg,
    rgba(38, 70, 98, 0) 0%,
    rgba(38, 70, 98, 0.2) 18%,
    rgba(38, 70, 98, 0.44) 50%,
    rgba(38, 70, 98, 0.2) 82%,
    rgba(38, 70, 98, 0) 100%
  );
}

.wp-block-separator.is-style-wide {
  width: 100%;
  max-width: none;
}

.wp-block-separator.is-style-dots {
  height: auto;
  text-align: center;
  background: none;
}

.wp-block-separator.is-style-dots::before {
  content: "\00b7 \00b7 \00b7";
  display: inline-block;
  color: rgba(38, 70, 98, 0.45);
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  line-height: 1;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(227, 6, 19, 0.44);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -46px;
  z-index: 200;
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-red);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: stretch;
  background: var(--color-white);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
}

.site-header-shell::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 100vw;
  background: var(--color-white);
}

.site-header-shell > * {
  position: relative;
  z-index: 1;
}

.site-header-shell__logo {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 292px;
  padding: 0 1.25rem;
  background: var(--color-white);
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.65);
}

.site-header-shell .top-bar,
.site-header-shell .nav-bar {
  grid-column: 2;
}

.top-bar {
  color: var(--color-white);
  background: linear-gradient(90deg, #213f5b 0%, #345b7d 100%);
  position: relative;
  border-bottom-left-radius: 20px;
}

.top-bar::after {
  content: '';
  position: absolute;
  left: calc(100% - 1px);
  top: 0;
  bottom: 0;
  width: calc(100vw + 1px);
  background: #345b7d;
  pointer-events: none;
}

.top-bar__inner {
  min-height: var(--top-bar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar__advisor {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.94;
}

.top-bar__advisor-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  font-size: 0.67rem;
  font-weight: 800;
}

.top-bar__advisor-label {
  letter-spacing: 0.015em;
}

.top-bar__advisor-phone {
  opacity: 0.92;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.top-bar__advisor-phone:hover,
.top-bar__advisor-phone:focus-visible {
  opacity: 1;
  color: #ffe7eb;
}

.top-bar__advisor-name {
  opacity: 0.88;
}

.top-bar__links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0;
}

.top-bar__links a,
.top-bar__signin {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  opacity: 0.88;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.top-bar__links a:hover,
.top-bar__links a:focus-visible,
.top-bar__signin:hover,
.top-bar__signin:focus-visible {
  opacity: 1;
  color: #ffe7eb;
}

.top-bar__signin {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 85;
  border-bottom: 1px solid rgba(38, 70, 98, 0.12);
  background: #fff;
}

.nav-bar::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 0;
  bottom: -1px;
  width: 100vw;
  border-bottom: 1px solid rgba(38, 70, 98, 0.12);
  background: #fff;
  pointer-events: none;
}

.nav-bar__inner {
  padding: 0.82rem 0;
}

.main-nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: stretch;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo--inline {
  display: none;
}

.logo--panel .logo__img {
  display: block;
  max-height: 56px;
  width: auto;
  height: auto;
}

.logo--panel {
  width: 100%;
  justify-content: center;
}

.logo__img {
  width: auto;
  height: auto;
  max-height: 40px;
}

.logo__fallback {
  display: none;
  color: var(--color-brand);
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo--fallback .logo__img {
  display: none;
}

.logo--fallback .logo__fallback {
  display: inline-block;
}

.main-nav__menu {
  display: flex;
  align-items: center;
  gap: 1.65rem;
  margin-left: 0;
  justify-self: center;
}

.main-nav__menu a {
  position: relative;
  font-weight: 700;
  color: var(--color-gray-700);
  transition: color var(--transition-fast);
}

.main-nav__menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.33rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--color-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-mid);
}

.main-nav__menu a:hover,
.main-nav__menu a:focus-visible,
.main-nav__menu a.is-active,
.main-nav__menu a[aria-current='page'],
.main-nav__menu .current-menu-item > a,
.main-nav__menu .current-menu-parent > a,
.main-nav__menu .current-menu-ancestor > a,
.main-nav__menu .current_page_parent > a,
.main-nav__menu .current_page_item > a {
  color: var(--color-brand);
}

.main-nav__menu a:hover::after,
.main-nav__menu a:focus-visible::after,
.main-nav__menu a.is-active::after,
.main-nav__menu a[aria-current='page']::after,
.main-nav__menu .current-menu-item > a::after,
.main-nav__menu .current-menu-parent > a::after,
.main-nav__menu .current-menu-ancestor > a::after,
.main-nav__menu .current_page_parent > a::after,
.main-nav__menu .current_page_item > a::after {
  transform: scaleX(1);
}

.main-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  justify-self: end;
}

@media (min-width: 901px) {
  .main-nav__actions .cart-link {
    margin-right: 10px;
  }
}

.search-form {
  display: flex;
}

.search-form__toggle,
.cart-link,
.signin-link,
.nav-toggle {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  color: var(--color-gray-700);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.search-form__toggle:hover,
.cart-link:hover,
.signin-link:hover,
.nav-toggle:hover {
  color: var(--color-brand);
  background: rgba(38, 70, 98, 0.09);
  transform: translateY(-1px);
}

.signin-link,
.nav-toggle {
  display: none;
}

.nav-toggle {
  position: relative;
}

.nav-toggle__box {
  position: relative;
  width: 18px;
  height: 14px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--transition-mid), opacity var(--transition-fast), background var(--transition-fast);
}

.main-nav.main-nav--menu-open .nav-toggle {
  color: var(--color-brand);
  background: rgba(38, 70, 98, 0.09);
}

.main-nav.main-nav--menu-open .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.main-nav.main-nav--menu-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.main-nav.main-nav--menu-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cart-link {
  position: relative;
}

.cart-link__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2rem;
  text-align: center;
  color: var(--color-white);
  background: var(--color-red);
  box-shadow: 0 0 0 2px var(--color-white);
  transform-origin: center;
}

.cart-link__badge.is-pulse {
  animation: cartBadgePulse 360ms ease;
}

@keyframes cartBadgePulse {
  0% { transform: scale(1); }
  45% { transform: scale(1.32); }
  100% { transform: scale(1); }
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4.8rem 1rem 1rem;
  background: rgba(12, 23, 38, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-mid), visibility var(--transition-mid);
}

.search-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.search-overlay__panel {
  width: min(760px, 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-heavy);
  transform: translateY(-14px);
  transition: transform var(--transition-mid);
}

.search-overlay.is-open .search-overlay__panel {
  transform: translateY(0);
}

.search-overlay__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.search-overlay__header .icon--search {
  flex-shrink: 0;
  color: var(--color-gray-500);
}

.search-overlay__input {
  flex: 1;
  border: none;
  font-size: 1.1rem;
  color: var(--color-gray-900);
  padding: 0.25rem 0;
}

.search-overlay__input:focus {
  outline: none;
}

.search-overlay__input::placeholder {
  color: var(--color-gray-400);
}

.search-overlay__close {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--color-gray-500);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.search-overlay__close:hover {
  color: var(--color-brand);
  background: var(--color-gray-100);
}

.search-overlay__suggestions {
  max-height: min(58vh, 370px);
  overflow-y: auto;
  padding: 0.25rem 0;
}

.search-overlay__suggestion {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--color-gray-800);
  text-align: left;
  text-decoration: none;
  padding: 0.78rem 1.2rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.search-overlay__suggestion:hover,
.search-overlay__suggestion:focus-visible,
.search-overlay__suggestion.is-active {
  color: var(--color-brand);
  background: var(--color-gray-100);
}

.search-overlay__no-suggestions {
  margin: 0;
  padding: 1rem 1.2rem 1.1rem;
  color: var(--color-gray-500);
}

.header-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #102133 0%, #17324a 48%, #234665 100%);
}

.hero-slider {
  position: relative;
}

.hero-slider--clickable {
  cursor: pointer;
}

.hero-slider__track {
  position: relative;
  display: grid;
}

.hero-slider__link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-slider__slide {
  position: relative;
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 560ms ease, visibility 0ms linear 560ms;
}

.hero-slider__slide--active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
  transition-delay: 0ms;
}

.hero-slide__bg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-slider__content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: clamp(1.2rem, 3.5vw, 3.6rem);
  padding-bottom: clamp(1.2rem, 3.8vw, 4rem);
  pointer-events: none;
}

.hero {
  max-width: 720px;
  color: var(--color-white);
}

.hero__eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.19em;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.84);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero__lead {
  margin: 1.05rem 0 0;
  max-width: 56ch;
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
  cursor: not-allowed;
}

.btn--cta {
  color: var(--color-white);
  background: var(--color-red);
}

.btn--cta:hover {
  background: var(--color-red-hover);
}

.btn--ghost {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.1);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.2);
}

.btn--ghost-dark {
  color: var(--color-brand);
  border-color: rgba(38, 70, 98, 0.35);
  background: rgba(38, 70, 98, 0.08);
}

.btn--ghost-dark:hover {
  color: var(--color-brand-strong);
  border-color: rgba(38, 70, 98, 0.52);
  background: rgba(38, 70, 98, 0.13);
}

.hero-slider__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  border: none;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width var(--transition-fast), background var(--transition-fast);
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  background: rgba(255, 255, 255, 0.88);
}

.hero-slider__dot--active {
  width: 24px;
  background: var(--color-white);
}

.hero-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(8, 17, 31, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.hero-slider__nav:hover,
.hero-slider__nav:focus-visible {
  background: var(--color-white);
  border-color: rgba(227, 6, 19, 0.48);
  color: var(--color-red);
  transform: translateY(calc(-50% - 1px));
  box-shadow: 0 18px 40px rgba(8, 17, 31, 0.28);
}

.hero-slider__nav[hidden] {
  display: none;
}

.hero-slider__nav--prev {
  left: 1.35rem;
}

.hero-slider__nav--next {
  right: 1.35rem;
}

.hero-slider__nav-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
  pointer-events: none;
}

.category-bar {
  position: sticky;
  top: var(--nav-sticky-offset);
  z-index: 70;
  overflow: visible;
  background: linear-gradient(120deg, #122335 0%, #1b3248 45%, #284c6d 100%);
  color: var(--color-white);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.category-bar__wrap {
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.category-bar__arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  border: none;
  color: var(--color-white);
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.category-bar__arrow:hover {
  background: rgba(255, 255, 255, 0.24);
}

.category-bar__arrow[hidden] {
  display: none !important;
}

.category-bar__scroll {
  flex: 1;
  overflow: visible;
  overflow-y: visible;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-bar__scroll::-webkit-scrollbar {
  display: none;
}

.category-menu {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  overflow: visible;
}

.category-menu__item {
  position: relative;
  flex-shrink: 0;
}

.category-menu__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 54px;
  padding: 0.75rem 1.08rem;
  border: none;
  background: transparent;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.category-menu__trigger::after {
  content: '';
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(3px);
}

.category-menu__trigger--single::after {
  display: none;
}

.category-menu__item:hover .category-menu__trigger,
.category-menu__item:focus-within .category-menu__trigger,
.category-menu__item.is-open .category-menu__trigger {
  background: rgba(255, 255, 255, 0.18);
}

.category-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  min-width: 250px;
  max-width: min(340px, calc(100vw - 24px));
  overflow: visible;
  padding: 0.44rem 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: var(--color-white);
  color: var(--color-gray-800);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 100;
}

.category-menu__item.is-align-left > .category-submenu {
  left: auto;
  right: 0;
}

.category-menu__item:hover .category-submenu,
.category-menu__item:focus-within .category-submenu,
.category-menu__item.is-open .category-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.category-submenu a {
  display: block;
  padding: 0.54rem 1rem;
  font-size: 0.89rem;
  color: var(--color-gray-700);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.category-submenu a:hover,
.category-submenu a:focus-visible {
  color: var(--color-brand);
  background: var(--color-gray-100);
}

.category-submenu__item {
  position: relative;
  list-style: none;
}

.category-submenu__link {
  position: relative;
  display: block;
  padding-left: calc(1rem + var(--submenu-depth, 0) * 0.8rem);
}

.category-submenu__link--has-children {
  padding-right: 1.7rem;
}

.category-submenu__link--has-children::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.88rem;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.55;
}

.category-submenu__branch {
  margin: 0;
  padding: 0;
  position: absolute;
  top: -0.3rem;
  left: calc(100% - 0.4rem);
  min-width: 230px;
  max-width: min(320px, calc(100vw - 24px));
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: 5;
}

.category-submenu__item.is-flip-left > .category-submenu__branch {
  left: auto;
  right: calc(100% - 0.4rem);
  transform: translateX(8px);
}

.category-submenu__item:hover > .category-submenu__branch,
.category-submenu__item:focus-within > .category-submenu__branch {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.main-content {
  padding: 2.4rem 0 3rem;
}

main {
  flex: 1 0 auto;
}

.products-section__head {
  margin-bottom: 1.3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.products-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--color-gray-900);
}

.home .products-section__title,
.shop-catalog-page .products-section__title {
  font-family: var(--font-sans);
}

.products-section__lead {
  margin: 0;
  color: var(--color-gray-600);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.12rem;
}

.shop-catalog-page .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: 1.25rem;
}

.shop-content {
  min-width: 0;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--nav-sticky-offset) + 0.9rem);
  align-self: start;
  display: grid;
  gap: 0.9rem;
}

.shop-sidebar__panel {
  border: 1px solid rgba(38, 70, 98, 0.12);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: 0.92rem;
}

.shop-sidebar__title {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-600);
}

.shop-category-tree,
.shop-category-tree__branch {
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-category-tree__branch {
  position: relative;
  margin-top: 0.18rem;
  margin-left: 0.55rem;
  padding-left: 0.82rem;
}

.shop-category-tree__branch::before {
  content: '';
  position: absolute;
  left: 0.2rem;
  top: 0.14rem;
  bottom: 0.14rem;
  width: 1px;
  background: rgba(38, 70, 98, 0.22);
}

.shop-category-tree__item {
  list-style: none;
}

.shop-category-tree__row {
  position: relative;
  margin: 0.12rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.16rem;
}

.shop-category-tree__branch > .shop-category-tree__item > .shop-category-tree__row::before {
  content: '';
  position: absolute;
  left: -0.76rem;
  top: 50%;
  width: 0.58rem;
  height: 1px;
  background: rgba(38, 70, 98, 0.26);
  transform: translateY(-50%);
}

.shop-category-tree__link {
  --depth-offset: calc(var(--tree-depth, 0) * 0.7rem);
  display: block;
  padding: 0.44rem 0.55rem;
  padding-left: calc(0.55rem + var(--depth-offset));
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.87rem;
  color: var(--color-gray-700);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.shop-category-tree__toggle {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--color-gray-500);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.shop-category-tree__toggle::before {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  transition: transform var(--transition-fast);
}

.shop-category-tree__toggle[aria-expanded='true']::before {
  transform: rotate(45deg);
}

.shop-category-tree__toggle:hover,
.shop-category-tree__toggle:focus-visible {
  color: var(--color-brand);
  background: var(--color-gray-100);
}

.shop-category-tree__item.has-children > .shop-category-tree__branch {
  margin-top: 0;
  margin-left: 0.35rem;
}

.shop-category-tree__branch[hidden] {
  display: none;
}

.shop-category-tree__link:hover,
.shop-category-tree__link:focus-visible {
  color: var(--color-brand);
  background: var(--color-gray-100);
}

.shop-category-tree__link.is-active {
  color: var(--color-red);
  background: rgba(227, 6, 19, 0.08);
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--color-red);
}

.shop-category-tree__link.is-branch-active {
  font-weight: 700;
  color: var(--color-brand);
  background: rgba(38, 70, 98, 0.06);
}

.shop-category-tree__item.is-open > .shop-category-tree__row > .shop-category-tree__link {
  color: var(--color-brand);
}

.shop-category-tree__item.is-open > .shop-category-tree__row > .shop-category-tree__link.is-active {
  color: var(--color-red);
}

.shop-sort {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.shop-sort label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-gray-600);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.shop-sort select {
  min-width: 200px;
  min-height: 38px;
  border: 1px solid rgba(38, 70, 98, 0.2);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 0.42rem 0.54rem;
  font: inherit;
  color: var(--color-gray-800);
}

.shop-price-filter {
  display: grid;
  gap: 0.5rem;
}

.shop-price-filter label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-gray-600);
}

.shop-price-filter input {
  width: 100%;
  min-height: 38px;
  border: 1px solid rgba(38, 70, 98, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.58rem;
  font: inherit;
  color: var(--color-gray-800);
  background: var(--color-white);
}

.shop-price-filter .btn {
  width: 100%;
  justify-content: center;
}

.shop-price-filter__clear {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: center;
}

.shop-breadcrumbs {
  margin: 0 0 0.78rem;
}

.shop-breadcrumbs .breadcrumbs__list {
  justify-content: flex-start;
}

.shop-subcategories {
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.shop-subcategories__chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.38rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(38, 70, 98, 0.2);
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.shop-subcategories__chip:hover,
.shop-subcategories__chip:focus-visible {
  color: var(--color-brand);
  border-color: rgba(38, 70, 98, 0.34);
  background: var(--color-gray-100);
}

.shop-subcategories__chip.is-active {
  color: var(--color-red);
  border-color: rgba(227, 6, 19, 0.34);
  background: rgba(227, 6, 19, 0.06);
}

.shop-pagination {
  margin-top: 1.35rem;
  display: flex;
  justify-content: center;
}

.shop-pagination__list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.shop-pagination__item a,
.shop-pagination__item span {
  min-width: 36px;
  min-height: 36px;
  border-radius: 999px;
  padding: 0.4rem 0.56rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 70, 98, 0.18);
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 0.84rem;
  font-weight: 700;
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.shop-pagination__item a:hover,
.shop-pagination__item a:focus-visible {
  color: var(--color-brand);
  border-color: rgba(38, 70, 98, 0.34);
  background: var(--color-gray-100);
  transform: translateY(-1px);
}

.shop-pagination__item .current,
.shop-pagination__item.is-current span {
  color: var(--color-white);
  border-color: var(--color-brand);
  background: var(--color-brand);
}

.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid rgba(38, 70, 98, 0.11);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.product-card__stretched-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(38, 70, 98, 0.24);
}

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-top: 1rem;
  background: #fff;
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  transform-origin: center;
  transition: opacity 520ms ease, transform 700ms cubic-bezier(0.21, 1, 0.23, 1);
}

.product-card__img--front {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.product-card__img--back {
  opacity: 0;
  transform: scale(1) rotate(0deg);
}

.product-card:hover .product-card__img--front {
  opacity: 0;
  transform: scale(1) rotate(0deg);
}

.product-card:hover .product-card__img--back {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 0.66rem;
  padding: 1rem;
  min-height: 198px;
}

.product-card__name {
  margin: 0;
  font-size: 1rem;
  color: var(--color-gray-900);
}

.product-card__desc {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 0.9rem;
}

.product-card__price {
  margin: 0;
  color: var(--color-brand-strong);
  font-size: 1.06rem;
  font-weight: 800;
}

.product-card__actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-card__unavailable-note,
.product-card__stock-warning {
  margin: 0;
  width: 100%;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--color-red);
  font-weight: 700;
}

.product-card__cart-control {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 4;
}

.product-card__quick-add {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-red);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.product-card__quick-add:hover {
  transform: translateY(-1px);
  background: var(--color-red-hover);
}

.product-card__qty {
  display: none;
  grid-template-columns: 34px auto 34px;
  align-items: center;
  gap: 0.25rem;
  padding: 2px;
  border-radius: 999px;
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}

.product-card.has-qty .product-card__quick-add {
  display: none;
}

.product-card.has-qty .product-card__qty {
  display: grid;
}

.product-card__qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-brand-strong);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.product-card__qty-btn:hover {
  background: rgba(227, 6, 19, 0.12);
  color: var(--color-red);
}

.product-card__qty-btn:disabled {
  opacity: 0.36;
  cursor: not-allowed;
}

.product-card__qty-center {
  min-width: 64px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: var(--color-brand-strong);
  background: var(--color-white);
  font-size: 0.85rem;
  font-weight: 800;
}

.product-card__qty-value {
  min-width: 1.1rem;
  text-align: center;
}

.contact-strip {
  margin-top: 2.6rem;
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 3.3vw, 1.9rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--color-white);
  background: linear-gradient(115deg, #14273a 0%, #264662 52%, #385f82 100%);
  box-shadow: var(--shadow-soft);
}

.contact-strip__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.58rem);
}

.contact-strip__text {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.anchor-section {
  height: 1px;
}

.product-main {
  padding: 0 0 2.4rem;
}

.product-page .product-main {
  flex: 1 0 auto;
}

.support-main {
  padding: 0 0 2.4rem;
}

.product-page .support-main {
  flex: 1 0 auto;
}

.product-subheader {
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(38, 70, 98, 0.12);
  background: linear-gradient(90deg, rgba(38, 70, 98, 0.06), rgba(38, 70, 98, 0));
}

.product-subheader .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.product-subheader__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.product-subheader__title {
  margin: 0.35rem 0 0;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  color: var(--color-gray-900);
}

.breadcrumbs {
  margin-bottom: 1rem;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  color: var(--color-gray-500);
}

.breadcrumbs__list li + li::before {
  content: '\203A';
  margin-right: 0.4rem;
  color: var(--color-gray-400);
}

.breadcrumbs__list a:hover {
  color: var(--color-brand);
}

body.help-page .product-subheader__eyebrow,
body.help-page .product-subheader__title,
body.help-page .breadcrumbs,
body.contact-page .product-subheader__eyebrow,
body.contact-page .product-subheader__title,
body.contact-page .breadcrumbs,
body.terms-page .product-subheader__eyebrow,
body.terms-page .product-subheader__title,
body.terms-page .breadcrumbs,
body.signin-page .product-subheader__eyebrow,
body.signin-page .product-subheader__title,
body.signin-page .breadcrumbs,
body.account-page .product-subheader__eyebrow,
body.account-page .product-subheader__title,
body.account-page .breadcrumbs,
body.instruction-page .product-subheader__eyebrow,
body.instruction-page .product-subheader__title,
body.instruction-page .breadcrumbs {
  padding-left: 0;
}

.product-subheader .product-subheader__eyebrow,
.product-subheader .product-subheader__title,
.product-subheader .breadcrumbs {
  text-align: center;
}

.product-subheader .breadcrumbs__list {
  justify-content: center;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.2rem;
}

.static-page-card {
  margin-top: 0.7rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(38, 70, 98, 0.12);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.static-page-card__content > * + * {
  margin-top: 0.8rem;
}

.static-page-card__content h1,
.static-page-card__content h2,
.static-page-card__content h3,
.static-page-card__content h4,
.static-page-card__content h5,
.static-page-card__content h6 {
  color: var(--color-gray-900);
}

.static-page-card__content p,
.static-page-card__content li {
  color: var(--color-gray-700);
  line-height: 1.65;
}

.product-side {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.product-gallery__main-wrap {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 15 / 16;
  overflow: hidden;
  border: 1px solid rgba(38, 70, 98, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
  isolation: isolate;
}

.product-gallery__main-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.product-gallery__zoom {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  border: none;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-white);
  background: rgba(12, 23, 38, 0.78);
  cursor: pointer;
  z-index: 3;
}

.product-gallery__thumbs {
  position: absolute;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 0.55rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: visible;
  gap: 0.55rem;
  width: min(calc(100% - 1.1rem), calc(5 * 72px + 4 * 0.55rem));
  max-width: calc(100% - 1.1rem);
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.product-gallery__thumb {
  padding: 0;
  border: 1px solid rgba(38, 70, 98, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-white);
  cursor: pointer;
  flex: 0 0 72px;
  width: 72px;
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}

.product-gallery__thumb:hover {
  border-color: var(--color-red);
  transform: translateY(-1px);
}

.product-gallery__thumb.is-active {
  border-color: var(--color-red);
}

.product-gallery__thumb img {
  width: 100%;
  height: 54px;
  object-fit: cover;
}

.product-fbt {
  margin-top: 0;
  border: 1px solid rgba(38, 70, 98, 0.12);
  border-radius: var(--radius-md);
  background: transparent;
  box-shadow: var(--shadow-soft);
  padding: 0.82rem;
}

.product-fbt__title {
  margin: 0;
  font-size: 0.96rem;
  color: var(--color-gray-900);
}

.product-fbt__list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  overflow: visible;
}

.product-fbt__item {
  list-style: none;
  border: 1px solid rgba(38, 70, 98, 0.14);
  border-radius: var(--radius-sm);
  background: #fbfcfe;
  padding: 0.42rem;
  display: grid;
  gap: 0.5rem;
}

.product-fbt__link {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr);
  align-items: center;
  gap: 0.58rem;
  border-radius: var(--radius-sm);
  padding: 0.32rem;
  transition: background var(--transition-fast);
}

.product-fbt__link:hover,
.product-fbt__link:focus-visible {
  background: var(--color-gray-100);
}

.product-fbt__image {
  width: 66px;
  height: 66px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.product-fbt__meta {
  min-width: 0;
  display: grid;
  gap: 0.16rem;
}

.product-fbt__name {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-gray-800);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-fbt__stats {
  margin: 0.16rem 0 0;
  font-size: 0.74rem;
  color: var(--color-gray-500);
}

.product-fbt__price {
  margin: 0.28rem 0 0;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-brand-strong);
}

.product-fbt__item .product-card__cart-control {
  width: 100%;
  justify-self: stretch;
  justify-content: flex-end;
}

.product-fbt__item.has-qty .product-card__quick-add {
  display: none;
}

.product-fbt__item.has-qty .product-card__cart-control {
  justify-content: stretch;
}

.product-fbt__item.has-qty .product-card__qty {
  display: grid;
  width: 100%;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
}

.product-fbt__item.has-qty .product-card__qty-center {
  min-width: 0;
  width: 100%;
}

.product-info {
  border: 1px solid rgba(38, 70, 98, 0.12);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.product-info__price {
  margin: 0;
  color: var(--color-brand-strong);
  font-size: 1.7rem;
  font-weight: 800;
}

.product-info__row {
  margin-top: 1rem;
  display: grid;
  gap: 0.45rem;
}

.product-info__row--purchase {
  margin-top: 0.58rem;
}

.product-info__row--topline {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 0.85rem;
}

.product-info__qty-cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  width: 100%;
  border: 1px solid var(--color-red);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
}

.product-info__label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gray-700);
}

.product-info__label--center {
  width: 100%;
  display: block;
  text-align: center;
}

.product-info__qty {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  column-gap: 0;
  width: 100%;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  max-width: none;
}

.product-info__qty-btn {
  border: none;
  background: transparent;
  width: 100%;
  height: 42px;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-brand-strong);
  cursor: pointer;
}

.product-info__qty-input {
  border: none;
  background: transparent;
  width: 100%;
  min-width: 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.product-info__price--inline {
  margin: 0;
  white-space: nowrap;
  font-size: 1.42rem;
}

.product-info__price-wrap {
  display: grid;
  justify-items: end;
  gap: 0.08rem;
}

.product-info__price-pln {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-red);
}

.product-info__row--price {
  margin-top: 0.62rem;
}

.product-info__price-line {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  justify-content: flex-end;
}

.product-info__price-pln-inline {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-gray-500);
}

.product-info__sku-line {
  margin: 0;
  min-width: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 0.32rem;
  font-size: 0.86rem;
  color: var(--color-gray-700);
}

.product-info__sku-label {
  font-weight: 700;
}

.product-info__sku-value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color-gray-900);
  font-weight: 700;
}

.product-info__price-sep {
  color: var(--color-gray-400);
  font-weight: 700;
}

.product-info__stock-level {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-gray-900);
  font-size: 0.95rem;
  font-weight: 700;
}

.product-info__stock-level-label {
  color: var(--color-gray-500);
}

.product-info__stock-level-value {
  color: var(--color-brand);
}

.product-info__unavailable-note,
.product-info__stock-warning {
  margin: 0;
  padding: 0.62rem 0.72rem;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-red);
  background: rgba(227, 6, 19, 0.06);
  color: var(--color-red);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.size-options--switch {
  width: 100%;
  flex-wrap: nowrap;
  justify-content: stretch;
  gap: 0.55rem;
}

.size-options__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  border: 1px solid rgba(38, 70, 98, 0.24);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.72rem;
  cursor: pointer;
}

.size-options__item-label {
  display: block;
  line-height: 1.2;
}

.size-options__item-price {
  display: block;
  margin-top: 0.12rem;
  color: var(--color-gray-500);
  font-size: 0.7rem;
  font-weight: 600;
}

.size-options__item.is-active {
  border-color: var(--color-red);
  color: var(--color-red);
  background: rgba(227, 6, 19, 0.08);
}

.size-options__item.is-active .size-options__item-price {
  color: inherit;
}

.size-options--switch .size-options__item {
  flex: 1 1 0;
  min-width: 0;
  min-height: 54px;
  padding: 0.65rem 0.7rem;
  border-radius: 16px;
  border-color: rgba(38, 70, 98, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 247, 251, 0.96) 100%);
  box-shadow: 0 10px 24px rgba(11, 35, 64, 0.05);
}

.size-options--switch .size-options__item:hover,
.size-options--switch .size-options__item:focus-visible {
  border-color: rgba(227, 6, 19, 0.3);
  transform: translateY(-1px);
}

.size-options--switch .size-options__item.is-active {
  background:
    linear-gradient(180deg, rgba(227, 6, 19, 0.12) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 14px 28px rgba(227, 6, 19, 0.12);
}

@media (max-width: 767px) {
  .size-options--switch {
    flex-wrap: wrap;
  }

  .size-options--switch .size-options__item {
    flex-basis: calc(50% - 0.3rem);
  }
}

.product-info__meta {
  margin-top: 1rem;
  font-size: 0.86rem;
  color: var(--color-gray-600);
}

.product-info__meta p {
  margin: 0.3rem 0;
}

.product-tag {
  display: inline-flex;
  margin-left: 0.25rem;
  border-radius: 999px;
  padding: 0.2rem 0.52rem;
  background: rgba(38, 70, 98, 0.09);
  color: var(--color-brand);
  font-size: 0.76rem;
  font-weight: 700;
}

.product-info__description {
  margin-top: 1rem;
}

.product-info__description h2 {
  margin: 0;
  font-size: 1rem;
}

.product-info__description > * + * {
  margin-top: 0.55rem;
}

.product-info__description p,
.product-info__description li,
.product-info__description td,
.product-info__description th {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 0.92rem;
  line-height: 1.55;
}

.product-info__description ul,
.product-info__description ol {
  margin: 0;
  padding-left: 1.2rem;
}

.product-info__description .product-info__spec-list {
  margin: 0;
  padding-left: 1.2rem;
}

.product-info__description .product-info__spec-list li + li {
  margin-top: 0.2rem;
}

.product-info__description .product-info__spec-label {
  color: var(--color-gray-800);
  font-weight: 700;
}

.product-info__description h3,
.product-info__description h4,
.product-info__description h5,
.product-info__description h6 {
  margin: 0;
  font-size: 0.96rem;
  color: var(--color-gray-800);
}

.product-info__description a {
  color: var(--color-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-info__description a:hover,
.product-info__description a:focus-visible {
  color: var(--color-red);
}

.product-info__description .product-info__note {
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
  padding: 0.5rem 0.62rem;
  border-left: 3px solid var(--color-red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(227, 6, 19, 0.06);
  color: var(--color-red);
  font-weight: 700;
}

.product-info__description .product-info__note * {
  color: inherit;
}

.product-info__cta {
  margin-top: 1rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
}

.product-info__cta--inline {
  margin-top: 0;
  width: 100%;
  border-radius: 0;
  min-height: 42px;
  border: none;
  border-left: 1px solid var(--color-red);
  color: var(--color-white);
  background: var(--color-red);
  transform: none;
}

.product-info__cta--inline:hover,
.product-info__cta--inline:focus-visible {
  color: var(--color-white);
  background: var(--color-red-hover);
  transform: none;
}

.product-info__cta-icon {
  animation: subtleCartPulse 1.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes subtleCartPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }
  50% {
    transform: scale(1.07);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-info__cta-icon {
    animation: none;
  }
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  background: rgba(7, 13, 23, 0.84);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-mid), visibility var(--transition-mid);
}

.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.image-lightbox__image {
  width: auto;
  height: auto;
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
}

.image-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 999px;
  font-size: 1.6rem;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 170;
  background: rgba(7, 13, 23, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.cart-drawer-overlay.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 92vw);
  height: 100vh;
  z-index: 180;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  box-shadow: -18px 0 40px rgba(11, 22, 35, 0.25);
  transform: translateX(102%);
  transition: transform 340ms cubic-bezier(0.21, 1, 0.23, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.05rem 1.2rem;
  border-bottom: 1px solid var(--color-gray-200);
}

.cart-drawer__title {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-gray-900);
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-gray-500);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-drawer__close:hover {
  color: var(--color-brand);
  background: var(--color-gray-100);
}

.cart-drawer__content {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.2rem;
}

.cart-drawer__empty {
  margin: 0;
  color: var(--color-gray-500);
}

.cart-drawer__items {
  display: grid;
  gap: 0.7rem;
}

.cart-drawer__item {
  padding: 0.74rem 0.8rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-gray-50);
}

.cart-drawer__item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.7rem;
}

.cart-drawer__item-name {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-gray-800);
  font-weight: 700;
}

.cart-drawer__item-variant {
  display: block;
  margin-top: 0.15rem;
  color: var(--color-gray-500);
  font-size: 0.76rem;
  font-weight: 600;
}

.cart-drawer__item-price {
  font-size: 0.9rem;
  color: var(--color-brand-strong);
  font-weight: 800;
}

.cart-drawer__item-meta {
  margin-top: 0.45rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.7rem;
}

.cart-drawer__qty-wrap {
  display: grid;
  gap: 0.25rem;
}

.cart-drawer__qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-gray-300);
  border-radius: 999px;
  background: var(--color-white);
  overflow: hidden;
}

.cart-drawer__qty-btn {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  color: var(--color-gray-700);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-drawer__qty-btn:hover {
  color: var(--color-brand);
  background: var(--color-gray-100);
}

.cart-drawer__qty-value {
  min-width: 34px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.cart-drawer__qty {
  color: var(--color-gray-600);
  font-size: 0.76rem;
}

.cart-drawer__remove {
  border: none;
  background: transparent;
  color: var(--color-red);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}

.cart-drawer__summary {
  border-top: 1px solid var(--color-gray-200);
  padding: 1rem 1.2rem 1.2rem;
}

.cart-drawer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--color-gray-700);
}

.cart-drawer__row strong {
  color: var(--color-gray-900);
  font-size: 1.07rem;
}

.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.checkout-b2b {
  margin-top: 2.2rem;
}

.checkout-b2b__signin-anchor {
  position: relative;
  top: calc(-1 * var(--nav-sticky-offset) - 0.6rem);
  display: block;
}

.checkout-b2b__card {
  border: 1px solid rgba(38, 70, 98, 0.13);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
}

.checkout-b2b__head {
  margin-bottom: 1.1rem;
}

.checkout-b2b__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.checkout-b2b__title {
  margin: 0.4rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  color: var(--color-gray-900);
}

.checkout-b2b__lead {
  margin: 0.5rem 0 0;
  color: var(--color-gray-600);
}

.checkout-b2b__steps {
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.checkout-b2b__steps.is-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-b2b__step {
  border: 1px solid rgba(38, 70, 98, 0.16);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.65rem;
  color: var(--color-gray-600);
}

.checkout-b2b__step.is-active {
  border-color: rgba(227, 6, 19, 0.45);
  background: rgba(227, 6, 19, 0.06);
  color: var(--color-gray-900);
}

.checkout-b2b__step.is-complete {
  border-color: rgba(11, 122, 53, 0.28);
  background: rgba(11, 122, 53, 0.06);
}

.checkout-b2b__step-index {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  background: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.checkout-b2b__step.is-active .checkout-b2b__step-index {
  background: var(--color-red);
}

.checkout-b2b__step.is-complete .checkout-b2b__step-index {
  background: #0b7a35;
}

.checkout-b2b__step-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.checkout-b2b__panel {
  display: none;
}

.checkout-b2b__panel.is-active {
  display: block;
}

.checkout-b2b__empty {
  margin: 0;
  color: var(--color-gray-500);
}

.checkout-b2b__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.checkout-b2b__item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.checkout-b2b__item-main {
  min-width: 0;
  flex: 1 1 auto;
}

.checkout-b2b__item-purchase {
  display: inline-flex;
  align-items: stretch;
  justify-self: end;
  margin-left: auto;
  border: 1px solid var(--color-red);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex: 0 0 auto;
}

.checkout-b2b__item-name {
  margin: 0;
  color: var(--color-gray-800);
  font-weight: 700;
  font-size: 0.92rem;
}

.checkout-b2b__item-meta {
  margin: 0.25rem 0 0;
  color: var(--color-gray-500);
  font-size: 0.8rem;
}

.checkout-b2b__item-variant {
  margin: 0.2rem 0 0;
  color: var(--color-brand-strong);
  font-size: 0.75rem;
  font-weight: 700;
}

.checkout-b2b__item-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
  padding: 0.18rem 0.26rem;
  background: var(--color-white);
}

.checkout-b2b__item-qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(38, 70, 98, 0.18);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-brand-strong);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.checkout-b2b__item-qty-value {
  min-width: 1.1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--color-gray-700);
}

.checkout-b2b__item-price {
  margin: 0;
  min-width: 88px;
  padding: 0 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  background: var(--color-red);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.checkout-b2b__item-remove {
  margin-top: 0.32rem;
  justify-self: start;
  border: none;
  background: transparent;
  color: var(--color-red);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.checkout-b2b__total-row {
  margin-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  text-align: center;
  color: var(--color-gray-700);
}

.checkout-b2b__total-row strong {
  color: var(--color-gray-900);
}

.checkout-b2b__total-row--compact {
  margin-top: 0.9rem;
}

.checkout-b2b__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.checkout-b2b__actions--split {
  justify-content: space-between;
  flex-wrap: wrap;
}

.checkout-b2b__stage {
  margin-top: 1rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 1rem;
}

.checkout-b2b__stage--summary {
  margin-top: 1.1rem;
}

.checkout-b2b__auth-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.25rem;
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  background: var(--color-gray-100);
  padding: 0.25rem;
}

.checkout-b2b__auth-tab {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 9px;
  padding: 0.6rem 0.86rem;
  background: transparent;
  color: var(--color-gray-600);
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.checkout-b2b__auth-tab.is-active {
  color: var(--color-white);
  background: var(--color-brand);
  border-color: var(--color-brand);
}

.checkout-b2b__auth-panel {
  margin-top: 1.1rem;
}

.checkout-b2b__form {
  display: grid;
  gap: 0.9rem;
}

.checkout-b2b__form--grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.8rem;
}

.checkout-b2b__field {
  display: grid;
  gap: 0.38rem;
}

.checkout-b2b__field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gray-700);
}

.checkout-b2b__field input,
.checkout-b2b__field textarea {
  min-height: 44px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.72rem;
  font-size: 0.95rem;
  color: var(--color-gray-800);
  background: var(--color-white);
}

.checkout-b2b__field textarea {
  min-height: 112px;
  resize: vertical;
}

.checkout-b2b__field input:focus-visible,
.checkout-b2b__field textarea:focus-visible {
  border-color: rgba(227, 6, 19, 0.5);
  outline: 3px solid rgba(227, 6, 19, 0.18);
  outline-offset: 0;
}

.checkout-b2b__message {
  margin: 0.8rem 0 0;
  min-height: 1.1rem;
  font-size: 0.84rem;
  color: var(--color-gray-600);
}

.checkout-b2b__message.is-error {
  color: var(--color-red);
}

.checkout-b2b__message.is-success {
  color: #0b7a35;
}

.checkout-b2b__panels {
  display: grid;
}

.checkout-b2b__summary-stack {
  margin-top: 0.2rem;
  display: grid;
  gap: 0.75rem;
}

.checkout-b2b__summary-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.checkout-b2b__summary-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 0.78rem 0.82rem;
}

.checkout-b2b__summary-card--wide {
  width: 100%;
}

.checkout-b2b__summary-card h3 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-gray-900);
}

.checkout-b2b__summary-subtitle {
  margin-top: 0.8rem !important;
}

.checkout-b2b__summary-items {
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.checkout-b2b__summary-items.is-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 0.85rem;
}

.checkout-b2b__summary-items li {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  color: var(--color-gray-700);
  font-size: 0.83rem;
}

.checkout-b2b__summary-items.is-columns li {
  padding-bottom: 0.35rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.35);
}

.checkout-b2b__summary-items strong {
  color: var(--color-gray-900);
  text-align: right;
}

.checkout-b2b__financial {
  margin-top: 0.85rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--color-gray-200);
  display: grid;
  gap: 0.42rem;
}

.checkout-b2b__financial-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--color-gray-700);
  font-size: 0.84rem;
}

.checkout-b2b__financial-row strong {
  color: var(--color-gray-900);
}

.checkout-b2b__financial-row--total {
  margin-top: 0.18rem;
  padding-top: 0.58rem;
  border-top: 1px solid var(--color-gray-200);
  font-size: 0.92rem;
  font-weight: 800;
}

.checkout-b2b__payment-methods {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.checkout-b2b__payment-option {
  position: relative;
  display: grid;
  gap: 0.28rem;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: rgba(245, 249, 254, 0.64);
  padding: 0.78rem 0.84rem;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.checkout-b2b__payment-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.checkout-b2b__payment-option.is-active {
  border-color: var(--color-brand);
  background: rgba(227, 6, 19, 0.05);
  box-shadow: inset 0 0 0 1px rgba(227, 6, 19, 0.12);
}

.checkout-b2b__payment-option.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.checkout-b2b__payment-option-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--color-gray-900);
}

.checkout-b2b__payment-option-text {
  display: block;
  color: var(--color-gray-600);
  font-size: 0.8rem;
  line-height: 1.45;
}

.checkout-b2b__payment-note {
  margin: 0.7rem 0 0;
  color: var(--color-gray-600);
  font-size: 0.82rem;
  line-height: 1.55;
}

.checkout-b2b__field--note {
  margin-top: 1rem;
}

.checkout-b2b__success {
  margin-top: 1rem;
}

.checkout-b2b__success-card {
  border: 1px solid rgba(227, 6, 19, 0.16);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(227, 6, 19, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 247, 247, 0.98) 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.15rem;
}

.checkout-b2b__success-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  color: var(--color-gray-900);
}

.checkout-b2b__success-lead {
  margin: 0.6rem 0 0;
  max-width: 68ch;
  color: var(--color-gray-600);
}

.checkout-b2b__success-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.checkout-b2b__success-items-card {
  margin-top: 0.75rem;
}

.checkout-b2b__consent {
  margin-top: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--color-gray-700);
  font-size: 0.84rem;
}

.checkout-b2b__consent input {
  margin-top: 0.15rem;
}

.checkout-b2b__consent a {
  color: var(--color-brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-b2b__consent a:hover,
.checkout-b2b__consent a:focus-visible {
  color: var(--color-red);
}

.checkout-b2b__actions .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.signin-panel {
  max-width: 920px;
  margin: 0 auto;
}

.signin-panel .checkout-b2b__card {
  padding: 1.2rem;
}

.signin-panel .checkout-b2b__auth-tabs {
  margin-top: 0.95rem;
}

.signin-panel .checkout-b2b__consent {
  margin-top: 0.82rem;
}

.support-hero {
  margin-bottom: 1.1rem;
  border: 1px solid rgba(38, 70, 98, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(110deg, rgba(38, 70, 98, 0.12) 0%, rgba(38, 70, 98, 0.03) 58%, rgba(227, 6, 19, 0.08) 100%);
  padding: 1.15rem 1.2rem;
}

.support-hero__eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.support-hero__title {
  margin: 0.38rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  color: var(--color-gray-900);
}

.support-hero__lead {
  margin: 0.58rem 0 0;
  color: var(--color-gray-600);
  max-width: 72ch;
}

.support-hero--premium {
  margin-top: 1rem;
  border-color: rgba(38, 70, 98, 0.16);
  background:
    radial-gradient(circle at 92% 12%, rgba(38, 70, 98, 0.16), transparent 38%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.94) 0%, rgba(243, 248, 253, 0.98) 64%, rgba(255, 241, 243, 0.94) 100%);
  box-shadow: var(--shadow-soft);
}

.support-hero--premium .support-hero__title {
  font-size: clamp(1.55rem, 2.9vw, 2.25rem);
}

.instruction-doc {
  display: grid;
  gap: 0.72rem;
}

.instruction-doc__section {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.instruction-doc__section h2 {
  margin: 0;
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  color: var(--color-gray-900);
}

.instruction-doc__section p {
  margin: 0.62rem 0 0;
  color: var(--color-gray-600);
}

.instruction-doc__section ul {
  margin: 0.62rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
  color: var(--color-gray-600);
}

.instruction-doc__section li + li {
  margin-top: 0.3rem;
}

.instruction-doc__section code {
  padding: 0.08rem 0.35rem;
  border-radius: 6px;
  background: rgba(38, 70, 98, 0.08);
  color: var(--color-brand-strong);
  font-family: 'Fira Code', Consolas, monospace;
  font-size: 0.86em;
}

.instruction-doc__section--cta {
  border-color: rgba(227, 6, 19, 0.3);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 241, 243, 0.95) 100%);
}

.instruction-doc__section--cta .btn {
  margin-top: 0.72rem;
}

.instruction-doc--legal {
  gap: 0.8rem;
}

.instruction-doc--legal .instruction-doc__section {
  border-color: rgba(38, 70, 98, 0.16);
}

.help-subheader__search {
  width: min(100%, 560px);
}

.help-subheader__headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.72rem;
}

.help-subheader__headline .product-subheader__title {
  margin: 0;
}

.help-subheader__search-wrap {
  position: relative;
}

.help-subheader__search-icon {
  position: absolute;
  top: 50%;
  left: 0.88rem;
  transform: translateY(-50%);
  color: var(--color-gray-500);
  pointer-events: none;
}

.help-subheader__search-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(38, 70, 98, 0.22);
  border-radius: 999px;
  padding: 0.7rem 2.7rem 0.7rem 2.55rem;
  color: var(--color-gray-800);
  background: rgba(255, 255, 255, 0.92);
}

.help-subheader__search-input::-webkit-search-cancel-button,
.help-subheader__search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.help-subheader__search-input:focus-visible {
  border-color: rgba(227, 6, 19, 0.5);
  outline: 3px solid rgba(227, 6, 19, 0.16);
  outline-offset: 0;
}

.help-subheader__search-clear {
  position: absolute;
  top: 50%;
  right: 0.45rem;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(38, 70, 98, 0.08);
  color: var(--color-gray-700);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.help-subheader__search-clear:hover,
.help-subheader__search-clear:focus-visible {
  background: rgba(227, 6, 19, 0.14);
  color: var(--color-red);
}

.help-faq__controls {
  margin-bottom: 0.78rem;
}

@media (max-width: 920px) {
  .help-subheader__search {
    width: 100%;
  }
}

.help-faq__tools {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 0.95rem;
}

.help-faq--premium .help-faq__tools {
  border-color: rgba(38, 70, 98, 0.16);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 254, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.help-faq__label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-gray-700);
}

.help-faq__search-wrap {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
}

.help-faq__search-input {
  min-height: 44px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.7rem;
  color: var(--color-gray-800);
  background: var(--color-white);
}

.help-faq__search-input:focus-visible {
  border-color: rgba(227, 6, 19, 0.5);
  outline: 3px solid rgba(227, 6, 19, 0.18);
  outline-offset: 0;
}

.help-faq__clear {
  min-height: 44px;
  border: 1px solid rgba(38, 70, 98, 0.2);
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.75rem;
  color: var(--color-gray-700);
  background: var(--color-white);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.help-faq__status {
  margin: 0;
  color: var(--color-gray-500);
  font-size: 0.82rem;
}

.help-faq__filters {
  margin-top: 0.72rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.help-faq__filter {
  border: 1px solid rgba(38, 70, 98, 0.23);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  color: var(--color-gray-700);
  background: var(--color-white);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.help-faq__filter.is-active {
  border-color: var(--color-brand);
  color: var(--color-white);
  background: var(--color-brand);
}

.help-faq__layout {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 0.78rem;
}

.help-faq__list {
  display: grid;
  gap: 0.55rem;
}

.help-faq__item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  overflow: hidden;
}

.help-faq--premium .help-faq__item,
.help-faq--premium .help-faq__aside-card {
  border-color: rgba(38, 70, 98, 0.16);
  box-shadow: 0 8px 20px rgba(17, 36, 56, 0.08);
}

.help-faq__item summary {
  list-style: none;
  position: relative;
  padding: 0.78rem 2rem 0.78rem 0.85rem;
  cursor: pointer;
  color: var(--color-gray-900);
  font-size: 0.93rem;
  font-weight: 700;
}

.help-faq__item summary::-webkit-details-marker {
  display: none;
}

.help-faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0.85rem;
  top: 0.72rem;
  font-size: 1.1rem;
  color: var(--color-brand);
}

.help-faq__item[open] summary::after {
  content: '−';
}

.help-faq__item p {
  margin: 0;
  padding: 0 0.85rem 0.85rem;
  color: var(--color-gray-600);
  font-size: 0.9rem;
}

.help-faq__empty {
  margin: 0;
  border: 1px dashed var(--color-gray-300);
  border-radius: var(--radius-sm);
  padding: 0.82rem;
  color: var(--color-gray-600);
  background: rgba(255, 255, 255, 0.68);
}

.help-faq__aside {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.help-faq__aside-card {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 0.82rem;
}

.help-faq__aside-card h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-gray-900);
}

.help-faq__aside-card p {
  margin: 0.52rem 0 0;
  color: var(--color-gray-600);
}

.help-faq__aside-card ul {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  list-style: disc;
}

.help-faq__aside-card li + li {
  margin-top: 0.3rem;
}

.help-faq__aside-card .btn {
  margin-top: 0.68rem;
  width: 100%;
}

.contact-panel {
  margin-top: 1rem;
}

.contact-panel__intro {
  margin: 0 0 1rem;
  max-width: 74ch;
}

.contact-panel__intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  color: var(--color-gray-900);
}

.contact-panel__intro p {
  margin: 0.58rem 0 0;
  color: var(--color-gray-600);
}

.contact-panel__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.12rem;
}

.contact-panel__info {
  display: grid;
  gap: 0.82rem;
}

.contact-panel__card,
.contact-panel__form-wrap {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 1.15rem;
}

.contact-panel--premium .contact-panel__card,
.contact-panel--premium .contact-panel__form-wrap {
  border-color: rgba(38, 70, 98, 0.16);
  box-shadow: var(--shadow-soft);
}

.contact-panel--premium .contact-panel__form-wrap {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 254, 0.98) 100%);
}

.contact-panel__card-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-panel__card-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-brand);
  background: rgba(38, 70, 98, 0.12);
}

.contact-panel__card h2,
.contact-panel__form-wrap h2 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-gray-900);
}

.contact-panel__card p,
.contact-panel__form-wrap p {
  margin: 0.55rem 0 0;
  color: var(--color-gray-600);
}

.contact-panel__card-head + p {
  margin-top: 0.48rem;
}

.contact-panel__card a,
.contact-panel__contact-line a {
  color: var(--color-brand);
  text-decoration: underline;
}

.contact-panel__contact-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.32rem;
}

.contact-panel__contact-line span {
  color: var(--color-gray-500);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-panel__form {
  margin-top: 0.92rem;
  display: grid;
  gap: 0.82rem;
}

.contact-panel__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.76rem;
}

.contact-panel__field {
  display: grid;
  gap: 0.42rem;
}

.contact-panel__field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-gray-700);
}

.contact-panel__field input,
.contact-panel__field select,
.contact-panel__field textarea {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 0.62rem 0.72rem;
  color: var(--color-gray-800);
  background: var(--color-white);
}

.contact-panel__field input,
.contact-panel__field select {
  min-height: 44px;
}

.contact-panel__field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-panel__field input:focus-visible,
.contact-panel__field select:focus-visible,
.contact-panel__field textarea:focus-visible {
  border-color: rgba(227, 6, 19, 0.5);
  outline: 3px solid rgba(227, 6, 19, 0.18);
  outline-offset: 0;
}

.contact-panel__message {
  margin: 0;
  min-height: 1.1rem;
  font-size: 0.84rem;
  color: var(--color-gray-600);
}

.contact-panel__message.is-error {
  color: var(--color-red);
}

.contact-panel__message.is-success {
  color: #0b7a35;
}

.account-hub {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 1rem;
}

.account-hub__menu,
.account-hub__content {
  border: 1px solid rgba(38, 70, 98, 0.16);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.account-hub__menu {
  padding: 0.85rem;
  display: grid;
  align-content: start;
  gap: 0.42rem;
}

.account-hub__menu-title {
  margin: 0 0 0.38rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-500);
}

.account-hub__menu-item {
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
  text-align: left;
  border: 1px solid rgba(38, 70, 98, 0.14);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 0.87rem;
  font-weight: 700;
  padding: 0.62rem 0.68rem;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.account-hub__menu-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.account-hub__menu-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.account-hub__menu-item.is-active {
  border-color: var(--color-brand);
  color: var(--color-white);
  background: var(--color-brand);
}

.account-hub__menu-item--danger {
  color: var(--color-red);
}

.account-hub__content {
  padding: 1rem;
}

.account-hub__panel {
  display: none;
}

.account-hub__panel.is-active {
  display: block;
}

.account-hub__panel h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--color-gray-900);
}

.account-hub__lead {
  margin: 0.55rem 0 0;
  color: var(--color-gray-600);
}

.account-hub__stats {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.68rem;
}

.account-hub__stat {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.78rem;
  background: rgba(245, 249, 254, 0.64);
}

.account-hub__stat-label {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-gray-500);
}

.account-hub__stat-value {
  margin-top: 0.3rem;
  display: block;
  font-size: 1rem;
  color: var(--color-gray-900);
}

.account-hub__details {
  margin: 0.95rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
}

.account-hub__details div {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 0.62rem 0.68rem;
}

.account-hub__details div:last-child {
  grid-column: 1 / -1;
}

.account-hub__details dt {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.account-hub__details dd {
  margin: 0.3rem 0 0;
  color: var(--color-gray-800);
  font-weight: 600;
}

.account-hub__empty {
  margin: 0.85rem 0 0;
  border: 1px dashed var(--color-gray-300);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.78rem;
  color: var(--color-gray-600);
}

.account-hub__order-list,
.account-hub__invoice-list {
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.account-hub__pagination {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.account-hub__pagination-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 0.85rem;
  border: 1px solid rgba(38, 70, 98, 0.16);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-gray-700);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.account-hub__pagination-btn:hover,
.account-hub__pagination-btn:focus-visible {
  border-color: var(--color-red);
  color: var(--color-red);
  outline: none;
}

.account-hub__pagination-btn.is-active {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: var(--color-white);
}

.account-hub__pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.account-hub__order-item,
.account-hub__invoice-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  background: var(--color-white);
  padding: 0.72rem 0.78rem;
}

.account-hub__invoice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.account-hub__order-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.72rem;
}

.account-hub__order-status {
  border-radius: 999px;
  padding: 0.18rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0b7a35;
  background: rgba(11, 122, 53, 0.14);
}

.account-hub__order-meta,
.account-hub__invoice-meta {
  margin: 0.45rem 0 0;
  color: var(--color-gray-600);
}

.account-hub__order-total {
  margin: 0.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--color-gray-600);
}

.account-hub__order-total strong {
  color: var(--color-gray-900);
  font-size: 1rem;
  font-weight: 800;
}

.account-hub__order-details {
  margin-top: 0.62rem;
  border-top: 1px dashed var(--color-gray-200);
  padding-top: 0.5rem;
}

.account-hub__order-details-summary {
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--color-brand);
  list-style: none;
}

.account-hub__order-details-summary::-webkit-details-marker {
  display: none;
}

.account-hub__order-details-summary::after {
  content: ' +';
}

.account-hub__order-details[open] .account-hub__order-details-summary::after {
  content: ' -';
}

.account-hub__order-details-body {
  margin-top: 0.45rem;
}

.account-hub__order-products {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.account-hub__order-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--color-gray-700);
  font-size: 0.82rem;
}

.account-hub__order-product strong {
  color: var(--color-gray-900);
}

.account-hub__order-details-empty,
.account-hub__order-details-note {
  margin: 0;
  color: var(--color-gray-600);
  font-size: 0.83rem;
}

.account-hub__order-details-note {
  margin-top: 0.45rem;
}

.account-hub__invoice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.78rem;
}

.account-hub__invoice-number {
  color: var(--color-gray-900);
}

.account-hub__invoice-btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.account-profile-tabs {
  margin-top: 0.85rem;
  margin-bottom: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-profile-section {
  display: none;
}

.account-profile-section.is-active {
  display: block;
}

.footer {
  margin-top: 2.45rem;
  color: var(--color-white);
  background:
    radial-gradient(circle at 90% 12%, rgba(57, 100, 140, 0.4), transparent 33%),
    linear-gradient(130deg, #0d1929 0%, #111f31 56%, #1a314b 100%);
}

.product-page .footer {
  margin-top: 0;
}

.product-page .anchor-section {
  height: 0;
}

.footer__inner {
  padding: 2.9rem 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.05rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.28rem;
}

.footer__links a {
  opacity: 0.9;
}

.footer__links a:hover {
  opacity: 1;
  color: #ffe7eb;
}

.footer__bottom {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy,
.footer__credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.footer__credit a {
  text-decoration: underline;
}

.footer__heart {
  color: var(--color-red);
}

@media (max-width: 1140px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1200px) {
  .category-bar__arrow {
    display: inline-flex;
  }

  .category-bar__scroll {
    overflow-x: auto;
    overflow-y: visible;
  }

  .category-menu {
    justify-content: flex-start;
    min-width: max-content;
    min-height: 46px;
  }

  .category-menu__trigger {
    min-height: 46px;
    padding: 0.62rem 0.8rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1080px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header-shell::before,
  .nav-bar::after {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .site-header-shell {
    display: block;
  }

  .site-header-shell .nav-bar .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-header-shell__logo {
    display: none;
  }

  .logo--inline {
    display: inline-flex;
  }

  .category-bar {
    display: none;
  }

  :root {
    --top-bar-height: 0px;
    --nav-sticky-offset: 66px;
  }

  .main-nav {
    display: flex;
    min-height: 54px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }

  .main-nav__menu {
    position: fixed;
    top: var(--nav-sticky-offset);
    left: 0;
    right: 0;
    z-index: 120;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.35rem 1.25rem 1.1rem;
    border-top: 1px solid rgba(38, 70, 98, 0.12);
    border-bottom: 1px solid rgba(38, 70, 98, 0.1);
    border-radius: 0 0 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 40px rgba(12, 23, 38, 0.14);
    backdrop-filter: blur(10px);
    max-height: calc(100dvh - var(--nav-sticky-offset));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity var(--transition-mid), transform var(--transition-mid), visibility var(--transition-mid);
  }

  .main-nav.main-nav--menu-open .main-nav__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav__menu > li {
    width: 100%;
  }

  .main-nav__menu a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 1rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(38, 70, 98, 0.1);
  }

  .main-nav__menu > li:last-child > a {
    border-bottom: none;
  }

  .main-nav__menu a::after {
    left: 0;
    bottom: 0.82rem;
    width: 52px;
  }

  .signin-link,
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav__actions {
    margin-left: auto;
    gap: 0.35rem;
  }

  .hero-slider__nav {
    width: 52px;
    height: 52px;
  }

  .hero-slider__nav--prev {
    left: 1rem;
  }

  .hero-slider__nav--next {
    right: 1rem;
  }

  .hero {
    text-align: center;
    max-width: 100%;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .products-section__head {
    align-items: flex-start;
  }

  .shop-sort {
    margin-left: 0;
    width: 100%;
    justify-content: flex-start;
  }

  .product-grid,
  .shop-catalog-page .product-grid {
    grid-template-columns: 1fr;
  }

  .contact-strip {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .product-gallery__thumbs {
    bottom: 0.42rem;
    width: min(calc(100% - 0.84rem), calc(5 * 64px + 4 * 0.55rem));
    max-width: calc(100% - 0.84rem);
  }

  .product-gallery__thumb {
    flex-basis: 64px;
    width: 64px;
  }

  .product-gallery__thumb img {
    height: 48px;
  }

  .product-fbt__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkout-b2b__steps {
    grid-template-columns: 1fr;
  }

  .checkout-b2b__summary-addresses,
  .checkout-b2b__success-grid,
  .checkout-b2b__payment-methods,
  .checkout-b2b__summary-items.is-columns {
    grid-template-columns: 1fr;
  }

  .help-faq__layout,
  .contact-panel__layout,
  .account-hub {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 1rem;
  }

  .site-header-shell .nav-bar .container {
    padding-left: 1.25rem;
    padding-right: 1rem;
  }

  .main-nav__menu {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.9rem;
    border-radius: 0 0 20px 20px;
  }

  .nav-bar__inner {
    padding: 0.75rem 0;
  }

  :root {
    --nav-sticky-offset: 62px;
  }

  .logo__img {
    height: auto;
    max-height: 35px;
  }

  .search-form__toggle,
  .cart-link,
  .signin-link,
  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .category-menu__trigger {
    font-size: 0.83rem;
    padding: 0.66rem 0.82rem;
  }

  .shop-sort {
    gap: 0.38rem;
    flex-wrap: wrap;
  }

  .shop-sort select {
    width: 100%;
    min-width: 0;
  }

  .hero-slider__nav {
    width: 46px;
    height: 46px;
  }

  .hero-slider__nav--prev {
    left: 0.7rem;
  }

  .hero-slider__nav--next {
    right: 0.7rem;
  }

  .hero-slider__nav-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
  }

  .hero-slider__content {
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
  }

  .search-overlay {
    padding-top: 3.8rem;
  }

  .search-overlay__header {
    padding: 0.9rem 0.85rem;
  }

  .search-overlay__input {
    font-size: 1rem;
  }

  .product-grid,
  .shop-catalog-page .product-grid {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .product-card__content {
    min-height: auto;
  }

  .product-subheader .container {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
  }

  .product-gallery__thumbs {
    bottom: 0.36rem;
    width: min(calc(100% - 0.72rem), calc(5 * 56px + 4 * 0.55rem));
    max-width: calc(100% - 0.72rem);
  }

  .product-gallery__thumb {
    flex-basis: 56px;
    width: 56px;
  }

  .product-gallery__thumb img {
    height: 42px;
  }

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

  .product-info {
    padding: 0.85rem;
  }

  .contact-strip {
    gap: 0.85rem;
  }

  .support-hero,
  .instruction-doc__section,
  .help-faq__tools,
  .contact-panel__card,
  .contact-panel__form-wrap {
    padding: 0.82rem;
  }

  .help-subheader__search {
    max-width: 100%;
    margin-top: 0;
  }

  .contact-panel__intro {
    margin-bottom: 0.82rem;
  }

  .contact-panel__card-head {
    gap: 0.52rem;
  }

  .contact-panel__card-icon {
    width: 34px;
    height: 34px;
  }

  .help-faq__search-wrap {
    grid-template-columns: 1fr;
  }

  .help-faq__clear {
    width: 100%;
  }

  .help-faq__filters {
    gap: 0.38rem;
  }

  .help-faq__filter {
    width: 100%;
  }

  .contact-panel__field-grid {
    grid-template-columns: 1fr;
  }

  .account-hub__content {
    padding: 0.82rem;
  }

  .account-hub__stats,
  .account-hub__details {
    grid-template-columns: 1fr;
  }

  .account-hub__invoice-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-profile-tabs {
    grid-template-columns: 1fr;
  }

  .checkout-b2b__card {
    padding: 0.9rem;
  }

  .checkout-b2b__item {
    flex-direction: column;
    align-items: stretch;
  }

  .checkout-b2b__item-purchase {
    margin-left: 0;
    align-self: flex-end;
  }

  .checkout-b2b__form--grid {
    grid-template-columns: 1fr;
  }

  .checkout-b2b__actions,
  .checkout-b2b__actions--split {
    justify-content: stretch;
  }

  .checkout-b2b__actions .btn {
    width: 100%;
  }

  .footer__top,
  .footer__bottom,
  .footer__links {
    justify-content: center;
    text-align: center;
  }

  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

@media (hover: none) {
  .product-card__img--back {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
