:root {
  --red: #c00000;
  --red-dark: #9d0000;
  --logo-red: #c00000;
  --logo-red-dark: #9d0000;
  --ink: #191919;
  --body: #4b5563;
  --muted: #737b86;
  --line: #e4e7eb;
  --surface: #ffffff;
  --soft: #f4f5f7;
  --soft-2: #fafafa;
  --shadow: 0 16px 42px rgba(17, 24, 39, 0.1);
  --radius: 4px;
  --h5-display-semibold-size: 30px;
  --h5-display-semibold-line-height: 36px;
  --h5-display-semibold-weight: 600;
  --h5-headline-medium-size: 24px;
  --h5-headline-medium-line-height: 30px;
  --h5-headline-medium-weight: 500;
  --h5-title-medium-size: 20px;
  --h5-title-medium-line-height: 26px;
  --h5-title-medium-weight: 500;
  --h5-body1-regular-size: 16px;
  --h5-body1-regular-line-height: 24px;
  --h5-body1-regular-weight: 400;
  --h5-body2-regular-size: 14px;
  --h5-body2-regular-line-height: 20px;
  --h5-body2-regular-weight: 400;
  --h5-caption-regular-size: 12px;
  --h5-caption-regular-line-height: 16px;
  --h5-caption-regular-weight: 400;
  --h5-tab-regular-size: 12px;
  --h5-tab-regular-weight: 400;
  --h5-button-medium-size: 16px;
  --h5-button-medium-weight: 500;
  --h5-light-weight: 300;
  --h5-regular-weight: 400;
  --h5-medium-weight: 500;
  --h5-semibold-weight: 600;
  --mobile-header-height: 52px;
  --mobile-header-offset: clamp(64px, 17.44vw, 72px);
  --mobile-bottom-nav-height: 72px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --mobile-bottom-safe-height: calc(var(--mobile-bottom-nav-height) + var(--safe-area-bottom));
  --mobile-floating-control-gap: 16px;
  --mobile-floating-control-bottom: calc(var(--mobile-bottom-safe-height) + var(--mobile-floating-control-gap));
  --chatwoot-bubble-bottom: 88px;
  --chatwoot-z-index: 9000;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  overflow-x: hidden;
  font-family:
    Inter,
    "SF Pro Display",
    "PingFang SC",
    "Microsoft YaHei",
    Arial,
    sans-serif;
}

#__nuxt {
  max-width: 100%;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.h5-display-semibold {
  font-size: var(--h5-display-semibold-size);
  font-weight: var(--h5-display-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.h5-headline-medium {
  font-size: var(--h5-headline-medium-size);
  font-weight: var(--h5-headline-medium-weight);
  line-height: var(--h5-headline-medium-line-height);
}

.h5-title-medium {
  font-size: var(--h5-title-medium-size);
  font-weight: var(--h5-title-medium-weight);
  line-height: var(--h5-title-medium-line-height);
}

.h5-body1-regular {
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-body1-regular-weight);
  line-height: var(--h5-body1-regular-line-height);
}

.h5-body2-regular {
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-body2-regular-weight);
  line-height: var(--h5-body2-regular-line-height);
}

.h5-caption-regular {
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-caption-regular-weight);
  line-height: var(--h5-caption-regular-line-height);
}

.h5-tab-regular {
  font-size: var(--h5-tab-regular-size);
  font-weight: var(--h5-tab-regular-weight);
}

.h5-button-medium {
  font-size: var(--h5-button-medium-size);
  font-weight: var(--h5-button-medium-weight);
}

input::placeholder,
textarea::placeholder {
  color: #d1d5db;
  font-weight: var(--h5-regular-weight);
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-layout-shell {
  min-height: 100vh;
}

.text-nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.products-page {
  background: #f5f7fa;
}

.product-page-hero,
.product-detail-hero {
  border-bottom: 1px solid #e5e8ed;
  background: #ffffff;
  padding: 24px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  color: #6b7280;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.breadcrumb a:hover {
  color: var(--red);
}

.breadcrumb a + a::before,
.breadcrumb a + span::before {
  content: "/";
  margin-right: 10px;
  color: #a1a9b5;
}

.product-page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.product-page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.nav-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 280px;
  min-height: 70px;
  align-items: center;
  gap: 28px;
}

.header-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  color: #111111;
  line-height: var(--h5-display-semibold-line-height);
}

.header-logo img {
  display: block;
  width: 239px;
  height: auto;
}

.global-search {
  position: relative;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.global-search:hover,
.global-search:focus-within {
  background: #f3f4f6;
}

.global-search svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.global-search input {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  padding: 0;
  outline: 0;
  opacity: 0;
  pointer-events: none;
}

.search-panel {
  position: fixed;
  top: 71px;
  right: 0;
  left: 0;
  z-index: 19;
  display: none;
  min-height: 0;
  border-top: 1px solid #eef1f5;
  background: #ffffff;
  box-shadow: 0 14px 24px rgba(17, 24, 39, 0.08);
}

.search-panel.is-open {
  display: block;
}

.search-panel-inner {
  position: relative;
  padding: 38px 0 42px;
}

.search-panel-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 128px;
  align-items: stretch;
  width: min(1240px, calc(100% - 72px));
}

.search-panel-input {
  height: 52px;
  border: 1px solid #e5e8ed;
  border-right: 0;
  border-radius: 4px 0 0 4px;
  background: #f7f7f9;
  padding: 0 18px;
  color: var(--ink);
  font-size: var(--h5-body1-regular-size);
  outline: 0;
}

.search-panel-submit {
  min-height: 52px;
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.search-panel-close {
  position: absolute;
  top: 47px;
  right: 0;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
}

.search-panel-close::before,
.search-panel-close::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 6px;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.search-panel-close::before {
  transform: rotate(45deg);
}

.search-panel-close::after {
  transform: rotate(-45deg);
}

.search-panel-section {
  margin-top: 30px;
}

.search-panel-title {
  margin: 0 0 16px;
  color: #202020;
  font-size: var(--h5-title-medium-size);
  font-weight: var(--h5-semibold-weight);
}

.search-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 980px;
}

.search-panel-tag {
  min-height: 38px;
  border: 1px solid #e5e8ed;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 16px;
  color: #2c2c2c;
  cursor: pointer;
  font-size: var(--h5-body2-regular-size);
}

.search-panel-tag:hover {
  border-color: rgba(192, 0, 0, 0.28);
  color: var(--red);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4.3vw, 48px);
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.main-nav a,
.main-nav button {
  position: relative;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.main-nav button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.main-nav a::after,
.main-nav button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: transparent;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-current,
.main-nav button:hover {
  color: var(--red);
}

.main-nav a:hover::after,
.main-nav a.is-current::after,
.main-nav button:hover::after {
  background: currentColor;
  transform: scaleX(1);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #111111;
}

.mobile-menu-toggle {
  display: none;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: #111111;
  cursor: pointer;
}

.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu-toggle {
  flex-direction: column;
  gap: 3px;
}

.cart-icon,
.user-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.cart-icon {
  position: relative;
}

.cart-icon::after {
  content: attr(data-cart-count);
  position: absolute;
  top: -11px;
  right: -12px;
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.cart-icon[data-cart-count="0"]::after,
.cart-icon:not([data-cart-count])::after {
  display: none;
}

.cart-icon svg,
.user-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-icon:hover,
.user-icon:hover,
.cart-icon.is-current,
.user-icon.is-current {
  color: var(--red);
}

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  padding: 0;
  background: #ffffff;
  color: #121212;
}

.hero::before {
  content: none;
  position: absolute;
  inset: auto 9% 0 29%;
  z-index: 0;
  height: 250px;
  background: radial-gradient(ellipse at center, rgba(168, 184, 216, 0.34), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-track {
  display: flex;
  width: 100%;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  background:
    url("b1.jpg") center / cover no-repeat,
    #ffffff;
}

.hero-slide:nth-child(2) {
  background:
    url("b2.jpg") center / cover no-repeat,
    #ffffff;
}

.hero-slide:nth-child(2) h1 {
  color: #ffffff;
}

.hero-slide:nth-child(2) .hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 44px;
  align-items: center;
  min-height: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 12px;
  color: #d70b2d;
  font-size: var(--h5-headline-medium-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.08em;
}

.hero h1,
.section-title h2,
.catalog-toolbar h2,
.shortlist-copy h2,
.quote-card h2 {
  margin: 0;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 720px;
  color: #111111;
  font-size: var(--h5-display-semibold-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow,
.hero-copy > h1,
.hero-copy > p:not(.eyebrow),
.hero-actions {
  display: none;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(17, 24, 39, 0.78);
  font-size: var(--h5-headline-medium-size);
  line-height: var(--h5-body1-regular-line-height);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 58px;
}

.hero .hero-actions {
  display: none;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 28px;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-transform: uppercase;
}

.primary-button {
  background: var(--red);
  color: #ffffff;
}

.primary-button:hover {
  background: var(--red-dark);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #ffffff;
}

.secondary-button:hover {
  border-color: #ffffff;
}

.hero-product-scene {
  display: none;
}

.scene-optics .server-rack-slim {
  right: 30%;
  bottom: 110px;
  width: min(430px, 58vw);
  height: 170px;
  transform: perspective(900px) rotateY(-18deg) rotateX(2deg);
}

.scene-optics .module-primary {
  right: 8%;
  bottom: 144px;
  transform: rotate(-14deg) scale(0.96);
}

.scene-optics .module-secondary {
  right: 26%;
  bottom: 70px;
  width: 220px;
  height: 92px;
  transform: rotate(11deg) scale(0.88);
}

.cable-line {
  position: absolute;
  z-index: 5;
  width: 260px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #d8dde5 12%, #242b35 50%, #d8dde5 88%, transparent);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
  transform-origin: right center;
}

.cable-line-a {
  right: 14%;
  bottom: 270px;
  transform: rotate(-30deg);
}

.cable-line-b {
  right: 17%;
  bottom: 248px;
  transform: rotate(-19deg);
}

.power-shelf {
  position: absolute;
  right: 5%;
  bottom: 118px;
  z-index: 4;
  width: 330px;
  height: 118px;
  border-radius: 18px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(180deg, #f1f2f5, #747c89 54%, #242a32);
  box-shadow:
    inset 0 -12px 24px rgba(0, 0, 0, 0.3),
    0 30px 54px rgba(0, 0, 0, 0.48);
  transform: rotate(-4deg);
}

.power-shelf::before {
  content: "";
  position: absolute;
  inset: 34px 30px;
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, #10161d 0 28px, #2d3742 28px 38px),
    #111820;
}

.scene-cooling .server-rack-tower {
  right: 31%;
  bottom: 82px;
  width: min(330px, 46vw);
  height: 300px;
  transform: perspective(900px) rotateY(-16deg) rotateX(2deg);
}

.scene-cooling .fan-mid {
  right: 18%;
  bottom: 58px;
  transform: scale(1.03);
}

.server-rack {
  position: absolute;
  right: 18%;
  bottom: 96px;
  z-index: 2;
  width: min(560px, 68vw);
  height: 220px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(180deg, #c9ced6, #5b636f 58%, #20252b);
  box-shadow:
    inset 0 -24px 40px rgba(0, 0, 0, 0.38),
    0 38px 70px rgba(0, 0, 0, 0.62);
  transform: perspective(900px) rotateY(-22deg) rotateX(2deg);
}

.server-rack::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 34px;
  top: 24px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, #11161b, #2f3844, #0d1013);
}

.server-rack::after {
  content: "RACKMOUNT AI";
  position: absolute;
  left: 50%;
  top: 52%;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.08em;
  transform: translate(-50%, -50%);
}

.server-rack span {
  position: absolute;
  left: 46px;
  right: 48px;
  height: 18px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #0b1014 0 16px, #1b242d 16px 20px),
    #111820;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.server-rack span:nth-child(1) {
  bottom: 42px;
}

.server-rack span:nth-child(2) {
  bottom: 70px;
}

.server-rack span:nth-child(3) {
  bottom: 98px;
}

.server-rack span:nth-child(4) {
  bottom: 126px;
}

.fiber-module {
  position: absolute;
  right: 3%;
  bottom: 105px;
  z-index: 4;
  width: 260px;
  height: 112px;
  border-radius: 18px;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(180deg, #eceff3, #9098a5 55%, #2a3038);
  box-shadow:
    inset 0 -12px 24px rgba(0, 0, 0, 0.24),
    0 28px 46px rgba(0, 0, 0, 0.48);
  transform: rotate(-8deg);
}

.fiber-module::before,
.fiber-module::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 28px;
  border-radius: 7px;
  background: #111720;
  box-shadow: inset 0 0 0 4px #3f4a58;
}

.fiber-module::before {
  left: 38px;
  top: 43px;
}

.fiber-module::after {
  right: 38px;
  top: 43px;
}

.cooling-fan {
  position: absolute;
  z-index: 5;
  width: 184px;
  height: 184px;
  border: 20px solid #171717;
  border-radius: 50%;
  background:
    conic-gradient(from 25deg, #20262d 0 12%, #07090c 12% 22%, #4b5869 22% 31%, #06080a 31% 47%, #1f2730 47% 61%, #050607 61% 78%, #69717c 78% 88%, #07090a 88% 100%);
  box-shadow:
    inset 0 0 0 12px #060606,
    inset 0 0 0 19px rgba(8, 177, 236, 0.42),
    0 30px 54px rgba(0, 0, 0, 0.58);
}

.cooling-fan::before {
  content: "";
  position: absolute;
  inset: 54px;
  border-radius: 50%;
  background: radial-gradient(circle, #d7d9dd 0 18%, #14171b 20% 100%);
  box-shadow: 0 0 0 9px #050607;
}

.fan-back {
  right: 16%;
  bottom: 70px;
  transform: scale(1.12);
}

.fan-front {
  right: 1%;
  bottom: 72px;
  transform: scale(1.06);
}

.hero-ground {
  position: absolute;
  right: 0;
  bottom: 44px;
  z-index: 1;
  width: 88%;
  height: 170px;
  background:
    linear-gradient(90deg, transparent, rgba(223, 233, 255, 0.18) 38%, transparent 78%),
    repeating-linear-gradient(8deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 34px);
  clip-path: polygon(12% 20%, 100% 0, 96% 100%, 0 84%);
  filter: blur(0.2px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #d9082a;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
}

.hero-arrow-left {
  left: 44px;
}

.hero-arrow-left::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.hero-arrow-right {
  right: 44px;
}

.hero-arrow-right::before {
  transform: rotate(45deg) translate(-1px, 1px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 6;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border: 1px solid #d9082a;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.hero-dots button.is-active {
  background: #d9082a;
}

.category-section,
.catalog-section,
.shortlist-section,
.quote-section {
  padding: 64px 0;
}

.category-section {
  background: #ffffff;
  content-visibility: auto;
  contain-intrinsic-size: auto 560px;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 44px;
}

.section-title::after {
  content: "";
  height: 1px;
  background: #d7d7d7;
}

.section-title h1,
.section-title h2,
.catalog-toolbar h2,
.shortlist-copy h2,
.quote-card h2 {
  color: var(--ink);
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.quote-card h2 {
  font-size: var(--h5-display-semibold-size);
}

.section-title h1,
.section-title h2 {
  font-size: var(--h5-display-semibold-size);
  letter-spacing: -0.03em;
}

.section-learn-more {
  display: inline-flex;
  width: 200px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid #0646a5;
  border-radius: 999px;
  color: #0646a5;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.section-learn-more:hover {
  background: #0646a5;
  color: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.category-card {
  position: relative;
  display: grid;
  min-height: 218px;
  place-items: center;
  border: 0;
  border-radius: 0;
  padding: 28px 34px;
  background: #10213a;
  color: #ffffff;
  isolation: isolate;
  overflow: hidden;
  text-align: center;
  cursor: default;
  box-shadow: none;
}

.category-card::before,
.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.category-card::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 12, 26, 0.12), rgba(5, 12, 26, 0.34)),
    rgba(0, 0, 0, 0.34);
}

.category-card strong {
  max-width: 260px;
  color: #ffffff;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.38);
}

.about-panel-optics::before {
  background:
    linear-gradient(100deg, rgba(4, 12, 28, 0.52), rgba(4, 12, 28, 0.22)),
    url("bg1.jpeg") center / cover no-repeat;
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.52), rgba(4, 12, 28, 0.22)),
    -webkit-image-set(url("bg1-1600.webp") 1x);
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.52), rgba(4, 12, 28, 0.22)),
    image-set(url("bg1-1600.webp") type("image/webp") 1x);
}

.about-panel-network::before {
  background:
    linear-gradient(100deg, rgba(4, 12, 28, 0.5), rgba(4, 12, 28, 0.24)),
    url("bg2.jpeg") center / cover no-repeat;
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.5), rgba(4, 12, 28, 0.24)),
    -webkit-image-set(url("bg2-900.webp") 1x);
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.5), rgba(4, 12, 28, 0.24)),
    image-set(url("bg2-900.webp") type("image/webp") 1x);
}

.about-panel-manufacturing::before {
  background:
    linear-gradient(100deg, rgba(4, 12, 28, 0.48), rgba(4, 12, 28, 0.24)),
    url("bg3.jpeg") center / cover no-repeat;
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.48), rgba(4, 12, 28, 0.24)),
    -webkit-image-set(url("bg3-1200.webp") 1x);
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.48), rgba(4, 12, 28, 0.24)),
    image-set(url("bg3-1200.webp") type("image/webp") 1x);
}

.about-panel-service::before {
  background:
    linear-gradient(100deg, rgba(4, 12, 28, 0.55), rgba(4, 12, 28, 0.28)),
    url("bg4.png") center / cover no-repeat;
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.55), rgba(4, 12, 28, 0.28)),
    -webkit-image-set(url("bg4-900.webp") 1x);
  background-image:
    linear-gradient(100deg, rgba(4, 12, 28, 0.55), rgba(4, 12, 28, 0.28)),
    image-set(url("bg4-900.webp") type("image/webp") 1x);
}

.about-window-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
  padding-top: 96px;
  border-top: 1px solid #d7d7d7;
}

.about-window-grid::before {
  content: "";
  position: absolute;
  top: 62px;
  left: 50%;
  width: 36px;
  height: 14px;
  border-radius: 999px;
  background: #818181;
  transform: translateX(-50%);
}

.about-window-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #ffffff;
  color: #1f2329;
}

.about-window-card img {
  display: block;
  width: 100%;
  height: 156px;
  border-bottom: 1px solid #e5e7eb;
  background: #f7f6f4;
  object-fit: contain;
  padding: 20px;
}

.about-window-card img.about-window-icon {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 32px !important;
  height: 32px !important;
  border-bottom: 0;
  background: transparent;
  object-fit: contain;
  padding: 0;
  transform: translateX(-50%);
}

.about-window-card:nth-child(-n + 4)::before {
  content: "";
  display: block;
  height: 156px;
  border-bottom: 1px solid #e5e7eb;
  background: #f7f6f4;
}

.about-window-card div {
  padding: 24px 22px 26px;
}

.about-window-card h3 {
  margin: 0 0 16px;
  color: #1f2329;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.about-window-card p {
  margin: 0;
  color: #6f7379;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-title-medium-line-height);
}

.about-window-card p + p {
  margin-top: 12px;
}

.catalog-section {
  background: #ffffff;
}

.fs-catalog-section {
  padding: 34px 0 46px;
  background: #ffffff;
}

.fs-category-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #d8d8d8;
}

.fs-category-tab {
  position: relative;
  display: grid;
  min-height: 82px;
  align-content: center;
  justify-items: center;
  gap: 0;
  border: 0;
  background: #ffffff;
  padding: 12px 14px 20px;
  color: #747474;
  font: inherit;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-title-medium-line-height);
  text-align: center;
  cursor: pointer;
}

.fs-category-tab > span:not(.fs-tab-icon) {
  display: none;
}

.fs-category-tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(100%, 128px);
  height: 3px;
  background: transparent;
  transform: translateX(-50%);
}

.fs-category-tab:hover,
.fs-category-tab.is-active {
  color: #222222;
}

.fs-category-tab.is-active::after {
  background: var(--red);
}

.fs-tab-icon {
  position: relative;
  display: block;
  width: 40px;
  height: 38px;
  color: #222222;
}

.fs-tab-icon::before,
.fs-tab-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.fs-icon-transceivers::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("t1-02.png") center / contain no-repeat;
}

.fs-icon-transceivers::after {
  content: none;
}

.fs-icon-networking::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("t2-02.png") center / contain no-repeat;
}

.fs-icon-networking::after {
  content: none;
}

.fs-icon-ssd::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("SSD.svg") center / contain no-repeat;
}

.fs-icon-ssd::after {
  content: none;
}

.fs-icon-storage::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("t3-02.png") center / contain no-repeat;
}

.fs-icon-storage::after {
  content: none;
}

.fs-icon-power::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("t4-02.png") center / contain no-repeat;
}

.fs-icon-power::after {
  content: none;
}

.fs-icon-racks::before {
  left: 13px;
  top: 6px;
  width: 26px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 2px;
  background:
    radial-gradient(circle at 8px 8px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 8px 18px, currentColor 0 2px, transparent 2.5px),
    radial-gradient(circle at 8px 28px, currentColor 0 2px, transparent 2.5px);
}

.fs-icon-racks::after {
  right: 8px;
  top: 11px;
  width: 8px;
  height: 26px;
  border: 2px solid currentColor;
  border-left: 0;
}

.fs-icon-b::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("b.svg") center / contain no-repeat;
}

.fs-icon-b::after {
  content: none;
}

.fs-icon-cooling::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("t4-02.png") center / contain no-repeat;
}

.fs-icon-cooling::after {
  content: none;
}

.fs-icon-copper::before {
  left: 18px;
  top: 10px;
  width: 26px;
  height: 26px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.fs-icon-copper::after {
  left: 6px;
  top: 15px;
  width: 16px;
  height: 18px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  box-shadow: 28px 8px 0 -6px var(--red);
}

.fs-icon-cables::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("cables.svg") center / contain no-repeat;
}

.fs-icon-cables::after {
  content: none;
}

.fs-icon-tools::before {
  left: 9px;
  top: 8px;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.fs-icon-tools::after {
  left: 24px;
  top: 11px;
  width: 4px;
  height: 20px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 14px 0 -1px var(--red);
  transform-origin: 50% 85%;
  transform: rotate(120deg);
}

.fs-icon-card::before {
  inset: 0;
  width: 40px;
  height: 38px;
  background: url("card-sim.svg") center / contain no-repeat;
}

.fs-icon-card::after {
  content: none;
}

.fs-category-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
  touch-action: pan-y;
  will-change: transform, opacity;
}

.fs-product-family-card {
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #ffffff;
  animation: fsCardIn 260ms ease both;
}

.fs-product-family-card:nth-child(2) {
  animation-delay: 40ms;
}

.fs-product-family-card:nth-child(3) {
  animation-delay: 80ms;
}

.fs-product-family-card:nth-child(4) {
  animation-delay: 120ms;
}

@keyframes fsCardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fs-family-visual {
  position: relative;
  display: grid;
  height: 156px;
  place-items: center;
  background: #fafafa;
  overflow: hidden;
}

.fs-family-visual::before,
.fs-family-visual::after,
.fs-family-visual span,
.fs-family-visual span::before,
.fs-family-visual span::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.fs-family-visual::before {
  width: 178px;
  height: 54px;
  border-radius: 5px;
  background: linear-gradient(180deg, #282828, #111111);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
  transform: perspective(380px) rotateX(56deg) rotateZ(-6deg);
}

.fs-family-visual::after {
  width: 126px;
  height: 20px;
  background: repeating-linear-gradient(90deg, #edf7fb 0 10px, #28a7d2 10px 15px, #edf7fb 15px 25px);
  transform: translateY(4px) perspective(380px) rotateX(56deg) rotateZ(-6deg);
}

.fs-family-visual-aoc::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("AOC.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-aoc::after,
.fs-family-visual-aoc span {
  display: none;
}

.fs-family-visual-mop::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("mop.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-mop::after,
.fs-family-visual-mop span {
  display: none;
}

.fs-family-visual-dac::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("DAC.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-dac::after,
.fs-family-visual-dac span {
  display: none;
}

.fs-family-visual-osfp::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("osfp.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-osfp::after,
.fs-family-visual-osfp span {
  display: none;
}

.fs-family-visual-dd::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("DD.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-dd::after,
.fs-family-visual-dd span {
  display: none;
}

.fs-family-visual-acc::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("ACC.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-acc::after,
.fs-family-visual-acc span {
  display: none;
}

.fs-family-visual-breakout::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("Breakout.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-breakout::after,
.fs-family-visual-breakout span {
  display: none;
}

.fs-family-visual-pcie::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("PCIe.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-pcie::after,
.fs-family-visual-pcie span {
  display: none;
}

.fs-family-visual-capacity::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("3.8t.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-capacity::after,
.fs-family-visual-capacity span {
  display: none;
}

.fs-family-visual-crps::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("CRPS.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-crps::after,
.fs-family-visual-crps span {
  display: none;
}

.fs-family-visual-m-crps::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("M-CRPS.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-m-crps::after,
.fs-family-visual-m-crps span {
  display: none;
}

.fs-family-visual-power-shelf::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("Power-Shelf.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-power-shelf::after,
.fs-family-visual-power-shelf span {
  display: none;
}

.fs-family-visual-pdu::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("PDU.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-pdu::after,
.fs-family-visual-pdu span {
  display: none;
}

.fs-family-visual-power-cords::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("Power-Cords.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-power-cords::after,
.fs-family-visual-power-cords span {
  display: none;
}

.fs-family-visual-panel::before,
.fs-family-visual-manager::before,
.fs-family-visual-rack::before {
  width: 206px;
  height: 32px;
}

.fs-family-visual-panel::after,
.fs-family-visual-manager::after {
  width: 170px;
  height: 18px;
  background: repeating-linear-gradient(90deg, #101010 0 8px, #ffffff 8px 13px, #179bd7 13px 20px);
}

.fs-family-visual-enclosure::before,
.fs-family-visual-power::before,
.fs-family-visual-pdu::before,
.fs-family-visual-ups::before {
  width: 164px;
  height: 78px;
  background: linear-gradient(180deg, #2b2b2b, #111111 68%, #9a244a 69% 100%);
  transform: perspective(420px) rotateX(50deg);
}

.fs-family-visual-enclosure::after,
.fs-family-visual-power::after,
.fs-family-visual-pdu::after,
.fs-family-visual-ups::after {
  width: 118px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px);
}

.fs-family-visual-copper::before,
.fs-family-visual-connector::before {
  width: 176px;
  height: 46px;
  border: 5px solid #222222;
  border-top-color: transparent;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-copper::after,
.fs-family-visual-connector::after {
  left: calc(50% - 92px);
  top: 58px;
  width: 18px;
  height: 12px;
  border: 2px solid #222222;
  background: rgba(192, 0, 0, 0.14);
  box-shadow: 166px 0 0 -2px rgba(192, 0, 0, 0.2), 166px 0 0 0 #222222;
}

.fs-family-visual-drive::before,
.fs-family-visual-memory::before,
.fs-family-visual-card::before,
.fs-family-visual-module::before,
.fs-family-visual-adapter::before {
  width: 150px;
  height: 58px;
  background: linear-gradient(180deg, #252525, #0f0f0f);
  transform: perspective(380px) rotateX(52deg);
}

.fs-family-visual-drive::after,
.fs-family-visual-memory::after,
.fs-family-visual-card::after,
.fs-family-visual-module::after,
.fs-family-visual-adapter::after {
  width: 104px;
  height: 24px;
  background: repeating-linear-gradient(90deg, #ecf8fb 0 9px, #22a7d5 9px 15px, #ecf8fb 15px 24px);
  transform: translateY(2px) perspective(380px) rotateX(52deg);
}

.fs-family-visual-cable::before {
  width: min(78%, 260px);
  height: 130px;
  border: 0;
  border-radius: 0;
  background: url("t1.webp") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-cable::after,
.fs-family-visual-cable span {
  content: none;
}

.fs-family-visual-module::before {
  width: min(78%, 260px);
  height: 120px;
  border-radius: 0;
  background: url("f1.png") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-family-visual-module::after,
.fs-family-visual-module span {
  content: none;
}

.fs-family-visual-cooling::before,
.fs-family-visual-plate::before,
.fs-family-visual-fan::before {
  width: 104px;
  height: 104px;
  border: 12px solid #202020;
  border-radius: 50%;
  background: conic-gradient(#111 0 18%, #5b6875 18% 28%, #111 28% 46%, #5b6875 46% 58%, #111 58% 78%, #5b6875 78% 88%, #111 88%);
  transform: none;
}

.fs-family-visual-cooling::after,
.fs-family-visual-plate::after,
.fs-family-visual-fan::after {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #d9dde2;
}

.fs-family-visual-tools::before,
.fs-family-visual-label::before,
.fs-family-visual-tray::before {
  width: 154px;
  height: 36px;
  border-radius: 18px;
  background: linear-gradient(90deg, #1d1d1d, #353535);
  transform: rotate(-12deg);
}

.fs-family-visual-tools::after,
.fs-family-visual-label::after,
.fs-family-visual-tray::after {
  width: 66px;
  height: 20px;
  border: 2px solid #222222;
  border-radius: 4px;
  background: rgba(192, 0, 0, 0.12);
  transform: translate(46px, 16px) rotate(10deg);
}

.fs-product-family-card .fs-family-visual-pdu::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("PDU.jpg") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-product-family-card .fs-family-visual-pdu::after,
.fs-product-family-card .fs-family-visual-pdu span {
  display: none;
}

.fs-product-family-card .fs-family-visual-power-cords::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: url("Power-Cords.jpg?v=2") center / contain no-repeat;
  box-shadow: none;
  transform: none;
}

.fs-product-family-card .fs-family-visual-power-cords::after,
.fs-product-family-card .fs-family-visual-power-cords span {
  display: none;
}

.fs-product-family-card .fs-family-visual-power-cords {
  background: #fafafa url("Power-Cords.jpg?v=2") center / contain no-repeat;
}

.fs-product-family-card .fs-family-visual-power-cords::before {
  content: none;
}

.fs-family-content {
  min-height: 210px;
  border-top: 1px solid #f0f0f0;
  padding: 25px 22px 24px;
}

.fs-family-content h3 {
  margin: 0 0 18px;
  color: #747474;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-regular-weight);
  line-height: var(--h5-headline-medium-line-height);
  text-align: center;
  white-space: pre-line;
  transition: color 0.18s ease;
}

.fs-product-family-card:hover .fs-family-content h3 {
  color: #000000;
}

.fs-family-content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #777777;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-title-medium-line-height);
  list-style: none;
}

.fs-family-content-muted h3 {
  margin-bottom: 12px;
}

.fs-product-family-card-title-only .fs-family-content {
  min-height: 108px;
}

.fs-product-family-card-gray,
.fs-product-family-card-gray .fs-family-content {
  background: #f5f5f5;
}

.fs-product-family-card-gray .fs-family-visual {
  background: #f5f5f5;
}

.fs-family-content-title-only h3 {
  margin-bottom: 0;
}

.fs-family-title-list {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.fs-family-title-link {
  color: #747474;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-regular-weight);
  line-height: var(--h5-headline-medium-line-height);
  text-decoration: none;
  transition: color 0.18s ease;
}

.fs-family-title-link:hover,
.fs-family-title-link:focus-visible {
  color: #000000;
}

.fs-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.fs-carousel-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c9c9c9;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.fs-carousel-dots button:hover {
  transform: scale(1.12);
}

.fs-carousel-dots button.is-active {
  width: 22px;
  background: #777777;
}

.featured-products-section {
  padding: 64px 0 72px;
  background: #ffffff;
}

.featured-products-section h2 {
  margin: 0 0 34px;
  color: #222222;
  font-size: var(--h5-display-semibold-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
  text-align: center;
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  touch-action: pan-y;
  will-change: transform, opacity;
}

.featured-product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid #eeeeee;
  border-radius: 6px;
  background: #fafafa;
}

.featured-product-visual {
  position: relative;
  display: grid;
  height: 210px;
  place-items: center;
  overflow: hidden;
  background: #fbfbfb;
}

.featured-product-visual img {
  width: min(72%, 260px);
  max-height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, 0.14));
}

.featured-product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 120px;
  padding: 24px 20px 26px;
}

.featured-product-copy h3 {
  margin: 0 0 12px;
  color: #282828;
  display: -webkit-box;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
  min-height: calc(var(--h5-headline-medium-line-height) * 2);
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-product-copy p {
  display: -webkit-box;
  flex: 0 0 auto;
  min-height: 3.4em;
  max-height: 3.4em;
  margin: 0 auto;
  color: #7a7a7a;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-learn-more {
  display: flex;
  width: 200px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: auto auto 0;
  border-radius: 999px;
  background: #333333;
  padding: 0 26px;
  color: #ffffff;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.featured-learn-more i {
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  opacity: 0.72;
  transform: rotate(45deg);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.featured-learn-more:hover {
  background: #2f6ed8;
  box-shadow: 0 16px 30px rgba(47, 110, 216, 0.28);
  transform: translateY(-2px);
}

.featured-learn-more:hover i {
  opacity: 1;
  transform: translateX(3px) rotate(45deg);
}

.featured-learn-more:active {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
  transform: translateY(0);
}

.featured-product-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.featured-product-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #c9c9c9;
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.featured-product-dots button:hover {
  transform: scale(1.12);
}

.featured-product-dots button.is-active {
  width: 22px;
  background: #777777;
}

.visual-om4lcDX::before {
  width: 170px;
  height: 74px;
  border: 12px solid #16c8d7;
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 6px rgba(255, 255, 255, 0.32),
    0 22px 28px rgba(0, 0, 0, 0.12);
}

.visual-om4lcDX::after {
  bottom: 68px;
  width: 190px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9dde0, #f4f7f8 18%, #16c8d7 20% 80%, #f4f7f8 82%, #d9dde0);
}

.visual-om4lcDX span::before,
.visual-om4lcDX span::after {
  bottom: 64px;
  width: 22px;
  height: 12px;
  border: 2px solid #c9cdd0;
  border-radius: 2px;
  background: #f7f7f7;
}

.visual-om4lcDX span::before {
  left: -104px;
}

.visual-om4lcDX span::after {
  right: -104px;
}

.visual-vel-ow31090::before {
  width: 128px;
  height: 128px;
  border: 24px solid #141414;
  border-radius: 50%;
  box-shadow: 0 20px 28px rgba(0, 0, 0, 0.18);
}

.visual-vel-ow31090::after {
  width: 148px;
  height: 16px;
  border-radius: 999px;
  background: #111111;
  transform: translate(-42px, 38px) rotate(-15deg);
}

.visual-vel-ow31090 span::before {
  width: 62px;
  height: 18px;
  border-radius: 999px;
  background: #1a1a1a;
  transform: translate(30px, -54px) rotate(80deg);
}

.visual-olt7810::before {
  width: 168px;
  height: 96px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #242424, #0f0f0f 28%, #d8dce0 29% 78%, #181818 79%),
    #1d1d1d;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
}

.visual-olt7810::after {
  width: 132px;
  height: 42px;
  background:
    repeating-linear-gradient(90deg, #222 0 8px, #e7ecef 8px 16px),
    #dce1e4;
  transform: translateY(12px);
}

.visual-c6asftp6pp::before,
.visual-pc14c13::before {
  width: 184px;
  height: 76px;
  border: 14px solid #111111;
  border-radius: 50%;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.14);
}

.visual-c6asftp6pp::after,
.visual-pc14c13::after {
  width: 212px;
  height: 10px;
  border-radius: 999px;
  background: #111111;
  transform: translateY(24px);
}

.visual-c6asftp6pp span::before,
.visual-c6asftp6pp span::after {
  width: 18px;
  height: 22px;
  border: 2px solid #cfd5da;
  background: #f7f7f7;
  transform: translateY(26px);
}

.visual-c6asftp6pp span::before {
  left: -112px;
}

.visual-c6asftp6pp span::after {
  right: -112px;
}

.visual-s3900::before,
.visual-s3150::before {
  width: 190px;
  height: 64px;
  border-radius: 5px;
  background: linear-gradient(180deg, #252525, #111111 72%, #cfd4d8 73%);
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.16);
  transform: perspective(420px) rotateX(50deg);
}

.visual-s3900::after {
  width: 158px;
  height: 18px;
  background: repeating-linear-gradient(90deg, #0e0e0e 0 8px, #eef3f5 8px 13px);
  transform: translateY(20px) perspective(420px) rotateX(50deg);
}

.visual-s3150::after {
  width: 102px;
  height: 22px;
  background:
    repeating-linear-gradient(90deg, #e9eef1 0 12px, #ffd145 12px 18px, #111 18px 26px),
    #e9eef1;
  transform: translate(24px, 17px) perspective(420px) rotateX(50deg);
}

.visual-pc14c13::before {
  width: 156px;
  height: 56px;
  border-width: 10px;
}

.visual-pc14c13::after {
  width: 128px;
  height: 11px;
  transform: translateY(0);
}

.visual-pc14c13 span::before,
.visual-pc14c13 span::after {
  width: 28px;
  height: 22px;
  border-radius: 5px;
  background: #1b1b1b;
  transform: translateY(2px);
}

.visual-pc14c13 span::before {
  left: -86px;
}

.visual-pc14c13 span::after {
  right: -86px;
}

.visual-sfp10gsr::before {
  width: 148px;
  height: 48px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #111 0 18%, #f2f3f4 18% 80%, #c9cdd2 80%),
    #eeeeee;
  box-shadow: 0 22px 30px rgba(0, 0, 0, 0.16);
  transform: perspective(360px) rotateX(34deg) rotateZ(-16deg);
}

.visual-sfp10gsr::after {
  width: 82px;
  height: 18px;
  background: linear-gradient(90deg, #f0f0f0, #d70808 32% 45%, #f0f0f0 46%);
  transform: translate(14px, -4px) rotate(-16deg);
}

.product-page-catalog {
  background: #f7f8fa;
  padding-top: 38px;
}

.product-page-catalog .result-line {
  display: none;
}

.catalog-toolbar {
  display: none;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.catalog-browser {
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  align-items: start;
  gap: 30px;
}

.catalog-sidebar {
  border: 1px solid var(--line);
  background: #ffffff;
  position: sticky;
  top: 94px;
}

.product-page-catalog .catalog-sidebar {
  border: 0;
  background: #ffffff;
}

.sidebar-block + .sidebar-block {
  border-top: 1px solid var(--line);
}

.sidebar-block h3 {
  margin: 0;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.catalog-category-nav,
.facet-list {
  display: grid;
}

.catalog-category-nav {
  padding: 12px;
}

.catalog-category-dropdown {
  position: relative;
}

.catalog-category-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 4px;
  background: #ffffff;
  padding: 0 14px;
  color: #404854;
  font: inherit;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-body1-regular-line-height);
  outline: 0;
  text-align: left;
  cursor: pointer;
}

.catalog-category-trigger:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(192, 0, 0, 0.08);
}

.catalog-category-trigger i {
  width: 9px;
  height: 9px;
  border-top: 2px solid #98a1ad;
  border-left: 2px solid #98a1ad;
  transform: translateY(2px) rotate(45deg);
}

.catalog-category-dropdown:not(.is-open) .catalog-category-trigger i {
  transform: translateY(-2px) rotate(225deg);
}

.catalog-category-menu {
  display: none;
  padding: 12px 4px 2px;
}

.catalog-category-dropdown.is-open .catalog-category-menu {
  display: grid;
  gap: 2px;
}

.catalog-category-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  padding: 0 6px;
  color: #555555;
  font: inherit;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-regular-weight);
  line-height: var(--h5-body2-regular-line-height);
  text-align: left;
  cursor: pointer;
}

.catalog-category-option:hover,
.catalog-category-option.is-active {
  background: rgba(192, 0, 0, 0.08);
  color: var(--red);
}

.catalog-category-option small {
  min-width: 34px;
  border: 1px solid #d7dde6;
  border-radius: 999px;
  padding: 1px 8px;
  color: #555555;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-regular-weight);
  line-height: var(--h5-caption-regular-line-height);
  text-align: center;
}

.catalog-category-button,
.facet-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid #edf0f3;
  background: #ffffff;
  padding: 0 20px;
  color: #404854;
  font: inherit;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-align: left;
  cursor: pointer;
}

.catalog-category-button:last-child,
.facet-option:last-child {
  border-bottom: 0;
}

.catalog-category-button:hover,
.catalog-category-button.is-active,
.facet-option:hover {
  background: #f6f8fb;
  color: var(--red);
}

.catalog-category-button.is-active {
  box-shadow: inset 4px 0 0 var(--red);
}

.catalog-category-button small,
.facet-option small {
  color: #98a1ad;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.facet-option {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.facet-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
}

.catalog-results {
  min-width: 0;
}

.store-toolbar {
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 20px 22px;
}

.store-toolbar h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
}

.store-toolbar p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.store-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px 24px;
}

.store-show,
.store-sort {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.store-show button {
  border: 0;
  background: transparent;
  color: #8c95a3;
  cursor: pointer;
  padding: 0 2px;
  font-weight: var(--h5-semibold-weight);
}

.store-show button:hover,
.store-show button.is-active {
  color: var(--red);
}

.store-sort select {
  min-height: 34px;
  border: 1px solid #dce2e8;
  background: #ffffff;
  color: #2b3340;
  padding: 0 32px 0 10px;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.result-line {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.result-line button {
  border: 0;
  background: none;
  color: var(--red);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-waterfall {
  display: none;
}

.product-waterfall > .empty-state {
  grid-column: 1 / -1;
}

.product-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #ffffff;
  padding: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.product-card:hover {
  border-color: rgba(28, 64, 120, 0.28);
  box-shadow: 0 14px 30px rgba(24, 35, 55, 0.09);
  transform: translateY(-2px);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 28px;
  color: var(--muted);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.product-visual {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  width: 100%;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: 3px 3px 0 0;
  background:
    linear-gradient(135deg, rgba(192, 0, 0, 0.08), transparent 42%),
    #f4f5f7;
}

.product-visual img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(17, 24, 39, 0.14));
}

.product-visual span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: var(--h5-headline-medium-size);
  font-weight: var(--h5-semibold-weight);
  box-shadow: 0 12px 26px rgba(192, 0, 0, 0.25);
}

.product-visual i,
.product-visual b {
  display: none;
  width: 80px;
  height: 8px;
  border-radius: 999px;
  background: rgba(25, 25, 25, 0.16);
}

.product-visual i {
  left: 34px;
  bottom: 28px;
}

.product-visual b {
  right: 34px;
  top: 30px;
}

.product-card h3 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: var(--h5-body1-regular-size);
  min-height: calc(var(--h5-display-semibold-line-height) * 2);
}

.product-card h3 a {
  display: -webkit-box;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 20px;
}

.product-summary {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 16px 18px;
}

.maker {
  display: flex;
  min-height: 1.55em;
  align-items: center;
  margin: 6px 0 10px;
  color: var(--red);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.product-brand {
  margin: 0 0 8px;
  color: #7f8896;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.product-description {
  display: -webkit-box;
  min-height: 3em;
  max-height: 3em;
  margin: 0;
  overflow: hidden;
  color: #8a94a3;
  font-size: var(--h5-caption-regular-size);
  line-height: 1.5;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  word-break: break-word;
}

.product-specs {
  display: none;
  margin: 0;
  color: var(--body);
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  align-items: flex-start;
}

.product-tags span {
  display: inline-flex;
  max-width: 100%;
  min-height: 26px;
  align-items: center;
  border: 1px solid #dce2e8;
  background: #f8fafc;
  overflow: visible;
  padding: 6px 10px;
  color: #5d6673;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: 1.35;
  text-align: left;
  white-space: normal;
  word-break: break-word;
}

.product-detail {
  margin-top: 16px;
  border-top: 1px solid #edf0f3;
  padding-top: 14px;
}

.spec-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.spec-list div {
  min-width: 0;
}

.spec-list dt {
  margin-bottom: 5px;
  color: #111827;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--body);
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid #edf0f3;
}

.cart-button,
.buy-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0 16px;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.cart-button {
  border: 0;
  border-right: 1px solid #edf0f3;
  background: #ffffff;
  color: #15458f;
}

.buy-button {
  border: 0;
  background: #ffffff;
  color: var(--red);
}

.cart-button:hover,
.buy-button:hover {
  transform: translateY(-1px);
}

.cart-button:hover {
  background: #15458f;
  color: #ffffff;
}

.buy-button:hover {
  background: #b50000;
  color: #ffffff;
}

.product-card .card-actions {
  display: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  border: 1px dashed #cfd5dd;
  color: var(--muted);
  text-align: center;
  font-weight: var(--h5-semibold-weight);
}

.view-more-row,
.catalog-pagination {
  display: flex;
  justify-content: center;
  padding: 28px 0 0;
}

.catalog-pagination {
  align-items: center;
  gap: 18px;
  min-height: 42px;
  color: #202020;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.catalog-pagination[hidden] {
  display: none;
}

.product-visual-link {
  display: block;
  color: inherit;
}

.product-detail-section {
  background: #f7f8fa;
  padding: 34px 0 64px;
}

body.product-detail-page {
  overflow-x: hidden;
}

.product-detail-page .product-detail-section .container {
  width: min(1200px, calc(100% - 40px));
}

.policy-section {
  background: #f5f7fa;
  padding: 42px 0 72px;
}

.policy-article {
  border: 1px solid #e1e5eb;
  background: #ffffff;
  padding: clamp(28px, 5vw, 58px);
}

.policy-article h1 {
  margin: 0 0 30px;
  color: var(--ink);
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.policy-article h2 {
  margin: 34px 0 12px;
  color: #111827;
  font-size: var(--h5-title-medium-size);
  line-height: var(--h5-headline-medium-line-height);
}

.policy-article p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.policy-article .policy-note {
  border-left: 3px solid var(--red);
  padding-left: 14px;
  color: #374151;
  font-weight: var(--h5-semibold-weight);
}

.contact-list-card {
  border: 1px solid #e1e5eb;
  background: #ffffff;
  padding: clamp(36px, 5vw, 58px) clamp(24px, 5vw, 56px);
}

.contact-list-card h2 {
  margin: 0 0 36px;
  text-align: center;
  color: #111827;
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-headline-medium-line-height);
  font-weight: var(--h5-semibold-weight);
}

.contact-list {
  display: grid;
  border-top: 1px solid #e5e7eb;
}

.contact-list-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  min-height: 60px;
  border-bottom: 1px solid #e5e7eb;
  gap: 24px;
}

.contact-list-label {
  color: #111827;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.contact-list-label::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 16px;
  vertical-align: -2px;
  background: currentColor;
}

.contact-list-label-email::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4.2-8 5-8-5V6l8 5 8-5v2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4.2-8 5-8-5V6l8 5 8-5v2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-list-label-telegram::before {
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.4 4.8 17.5 18.7c-.2 1-1 1.3-1.8.9l-4.5-3.3-2.2 2.1c-.2.2-.4.4-.8.4l.3-4.6 8.5-7.7c.4-.3-.1-.5-.6-.2l-10.5 6.6-4.5-1.4c-1-.3-1-1 .2-1.5l17.5-6.8c.8-.3 1.5.2 1.3 1.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.4 4.8 17.5 18.7c-.2 1-1 1.3-1.8.9l-4.5-3.3-2.2 2.1c-.2.2-.4.4-.8.4l.3-4.6 8.5-7.7c.4-.3-.1-.5-.6-.2l-10.5 6.6-4.5-1.4c-1-.3-1-1 .2-1.5l17.5-6.8c.8-.3 1.5.2 1.3 1.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-list-label-whatsapp::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.52 3.48A11.85 11.85 0 0 0 12.07 0C5.5 0 .14 5.35.14 11.92c0 2.1.55 4.15 1.6 5.96L0 24l6.28-1.65a11.9 11.9 0 0 0 5.79 1.48h.01c6.57 0 11.93-5.35 11.93-11.92 0-3.18-1.24-6.17-3.49-8.43ZM12.08 21.8h-.01c-1.74 0-3.45-.47-4.94-1.35l-.35-.21-3.73.98 1-3.64-.23-.37a9.85 9.85 0 0 1-1.51-5.29c0-5.43 4.42-9.85 9.86-9.85 2.63 0 5.1 1.03 6.96 2.89a9.78 9.78 0 0 1 2.88 6.96c0 5.43-4.42 9.85-9.85 9.85Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.64-2.04c-.17-.3-.02-.46.13-.6.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.5h-.57c-.2 0-.52.07-.8.37-.27.3-1.05 1.03-1.05 2.5s1.07 2.9 1.22 3.1c.15.2 2.1 3.22 5.1 4.51.71.3 1.27.49 1.7.63.71.23 1.36.2 1.88.12.57-.09 1.75-.72 2-1.41.25-.7.25-1.29.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.52 3.48A11.85 11.85 0 0 0 12.07 0C5.5 0 .14 5.35.14 11.92c0 2.1.55 4.15 1.6 5.96L0 24l6.28-1.65a11.9 11.9 0 0 0 5.79 1.48h.01c6.57 0 11.93-5.35 11.93-11.92 0-3.18-1.24-6.17-3.49-8.43ZM12.08 21.8h-.01c-1.74 0-3.45-.47-4.94-1.35l-.35-.21-3.73.98 1-3.64-.23-.37a9.85 9.85 0 0 1-1.51-5.29c0-5.43 4.42-9.85 9.86-9.85 2.63 0 5.1 1.03 6.96 2.89a9.78 9.78 0 0 1 2.88 6.96c0 5.43-4.42 9.85-9.85 9.85Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.64-2.04c-.17-.3-.02-.46.13-.6.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.5h-.57c-.2 0-.52.07-.8.37-.27.3-1.05 1.03-1.05 2.5s1.07 2.9 1.22 3.1c.15.2 2.1 3.22 5.1 4.51.71.3 1.27.49 1.7.63.71.23 1.36.2 1.88.12.57-.09 1.75-.72 2-1.41.25-.7.25-1.29.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.contact-list-value {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  color: #6f747b;
  font-size: var(--h5-body1-regular-size);
  text-align: right;
}

.contact-list-value a {
  color: inherit;
  text-decoration: none;
}

.contact-list-value a:hover {
  color: var(--red);
}

.about-content-section {
  background: #ffffff;
}

.about-company-article {
  max-width: 1080px;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.06);
}

.about-company-article h1 {
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.about-company-article h2 {
  margin-top: 34px;
  color: #111827;
  font-size: var(--h5-title-medium-size);
}

.about-company-article p {
  max-width: 920px;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.about-company-article strong {
  color: #111827;
  font-weight: var(--h5-semibold-weight);
}

.about-mining-hero {
  position: relative;
  display: grid;
  min-height: 318px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(14, 18, 16, 0.7), rgba(14, 18, 16, 0.7)),
    url("bg1.jpeg") center / cover no-repeat;
  background-image:
    linear-gradient(rgba(14, 18, 16, 0.7), rgba(14, 18, 16, 0.7)),
    -webkit-image-set(url("bg1-1600.webp") 1x);
  background-image:
    linear-gradient(rgba(14, 18, 16, 0.7), rgba(14, 18, 16, 0.7)),
    image-set(url("bg1-1600.webp") type("image/webp") 1x);
  color: #ffffff;
  text-align: center;
}

.about-mining-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.about-mining-hero h1 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: var(--h5-display-semibold-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.about-mining-hero p {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-body1-regular-line-height);
  text-align: center;
}

.about-hero-section {
  background: #ffffff;
  padding: clamp(52px, 6vw, 72px) 0;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: stretch;
  gap: clamp(36px, 5vw, 72px);
}

.about-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}

.about-eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-hero-copy h1,
.about-section-heading h2,
.about-closing-card h2 {
  margin: 0;
  color: #111827;
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0;
}

.about-hero-copy h1 {
  max-width: 720px;
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.about-hero-copy p:not(.about-eyebrow) {
  margin: 30px 0 0;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  text-align: left;
}

.about-hero-media {
  position: relative;
  display: flex;
  min-height: 420px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
  padding: 34px;
  background: url("pt.jpg") center / cover no-repeat;
  color: #ffffff;
}

.about-story-section,
.about-capability-section,
.about-image-band,
.about-closing-section {
  background: #ffffff;
  padding: clamp(52px, 6vw, 72px) 0;
}

.about-split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-story-card {
  border-top: 3px solid var(--red);
  background: #f7f8fa;
  padding: clamp(28px, 4vw, 44px);
}

.about-story-card span {
  display: block;
  margin-bottom: 22px;
  color: #9ca3af;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.about-story-card h2,
.about-capability-card h3 {
  margin: 0 0 16px;
  color: #111827;
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.about-story-card h2 {
  font-size: var(--h5-display-semibold-size);
}

.about-story-card p,
.about-capability-card p,
.about-closing-card p {
  margin: 0;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  text-align: left;
}

.about-section-heading {
  display: grid;
  max-width: 780px;
  gap: 10px;
  margin: 0 auto 34px;
  text-align: center;
}

.about-section-heading h2 {
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-capability-card {
  min-height: 280px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 28px 24px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.about-capability-card:hover {
  border-color: rgba(205, 0, 0, 0.35);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  transform: translateY(-3px);
}

.about-capability-card h3 {
  font-size: var(--h5-title-medium-size);
}

.about-image-band .category-grid {
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.08);
}

.about-closing-card {
  display: grid;
  gap: 18px;
  padding-top: clamp(0px, calc(4vw - 38px), 10px);
  justify-items: center;
  text-align: center;
}

.about-closing-card h2 {
  max-width: 840px;
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.about-closing-card p:not(.about-eyebrow) {
  width: min(980px, 100%);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  text-align: left;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0;
}

.detail-sidebar {
  position: sticky;
  top: 94px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.detail-sidebar h3 {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
  color: var(--ink);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.detail-category-list {
  display: grid;
}

.detail-category-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid #edf0f3;
  padding: 0 20px;
  color: #404854;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.detail-category-list a:last-child {
  border-bottom: 0;
}

.detail-category-list a:hover,
.detail-category-list a.is-active {
  background: #f6f8fb;
  color: var(--red);
}

.detail-category-list a.is-active {
  box-shadow: inset 4px 0 0 var(--red);
}

.detail-main {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.product-detail-panel,
.detail-related-section {
  border: 1px solid var(--line);
  background: #ffffff;
  min-width: 0;
}

.detail-product-hero {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: clamp(34px, 4.11vw, 58px);
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(34px, 4vw, 58px);
  box-sizing: border-box;
  overflow: visible;
}

.detail-product-gallery {
  display: grid;
  gap: 22px;
  min-width: 0;
  justify-items: start;
}

.detail-product-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  max-width: 720px;
  justify-self: start;
}

.detail-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-product-copy h1 {
  margin: 0;
  color: #151515;
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.detail-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 0;
  color: #7b7f86;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.detail-quote-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(400px, 100%);
  min-width: 0;
  margin-top: 22px;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 22px 26px;
}

.detail-quote-card strong {
  color: var(--red);
  font-size: var(--h5-headline-medium-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
  white-space: nowrap;
}

.detail-quote-card span {
  color: #777777;
  font-size: var(--h5-body2-regular-size);
  overflow-wrap: anywhere;
}

.detail-intro {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--body);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  overflow-wrap: break-word;
}

.detail-option-group {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.detail-option-label {
  color: #222222;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  font-weight: var(--h5-semibold-weight);
}

.detail-option-value {
  color: #666666;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  overflow-wrap: anywhere;
}

.detail-select-field {
  position: relative;
  display: flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  cursor: pointer;
}

.detail-select-text {
  width: 100%;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 42px 0 14px;
  color: #666666;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  text-align: left;
}

.detail-select-field i {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #98a2b3;
  border-bottom: 1.5px solid #98a2b3;
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

.detail-option-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(148px, 1fr));
  gap: 10px;
}

.detail-brand-list {
  display: flex;
  flex-wrap: wrap;
}

.detail-option-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e7eb;
  border-radius: 5px;
  background: #ffffff;
  padding: 0 14px;
  color: #333333;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-headline-medium-line-height);
  text-align: center;
}

.detail-option-list span.is-selected {
  border-color: #111111;
  box-shadow: inset 0 0 0 1px #111111;
}

.detail-service-list {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: #333333;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.detail-service-list p {
  margin: 0;
}

.detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin-top: 32px;
}

.detail-cart-button,
.detail-buy-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  padding: 0 28px;
  color: #ffffff;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
  cursor: pointer;
}

.detail-cart-button {
  background: #000000;
}

.detail-buy-button {
  background: var(--red);
}

.detail-cart-button:hover {
  background: #222222;
}

.detail-buy-button:hover {
  background: var(--red-dark);
}

.secondary-detail-button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid #15458f;
  border-radius: 10px;
  padding: 0 24px;
  color: #15458f;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.secondary-detail-button:hover {
  background: #15458f;
  color: #ffffff;
}

.cart-drawer-open {
  overflow: hidden;
}

.shopping-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 10020;
  pointer-events: none;
}

.shopping-cart-drawer.is-open {
  pointer-events: auto;
}

.cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(520px, 100%);
  height: 100%;
  flex-direction: column;
  background: #ffffff;
  box-shadow: -24px 0 56px rgba(15, 23, 42, 0.24);
  transform: translateX(0);
}

.cart-drawer-header {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 96px;
  min-height: 60px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #edf0f3;
  padding: 0 24px;
}

.cart-drawer-back {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  padding: 0;
  color: #5f6978;
  cursor: pointer;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.cart-drawer-back span[aria-hidden="true"] {
  font-size: var(--h5-headline-medium-size);
  line-height: var(--h5-display-semibold-line-height);
}

.cart-drawer-header h2 {
  margin: 0;
  color: #101318;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-align: center;
}

.cart-drawer-close {
  position: absolute;
  top: 30px;
  right: 24px;
  justify-self: end;
}

.cart-drawer-close,
.cart-delete-button {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #687280;
  cursor: pointer;
}

.cart-drawer-close svg,
.cart-delete-button svg,
.cart-clear-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-drawer-list {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px;
}

.cart-drawer-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px 72px minmax(0, 1fr) 34px;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid #edf0f3;
  padding: 28px 0;
}

.cart-check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.cart-drawer-item .cart-check {
  min-height: 72px;
}

.cart-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cart-check span {
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #cfd6df;
  border-radius: 2px;
  background: #ffffff;
}

.cart-check input:checked + span {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 3px #ffffff;
}

.cart-drawer-thumb {
  display: flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  background: #f7f9fb;
}

.cart-drawer-thumb img {
  max-width: 64px;
  max-height: 64px;
  object-fit: contain;
}

.cart-drawer-info h3 {
  margin: 0;
  color: #111827;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-title-medium-line-height);
}

.cart-drawer-info p {
  margin-top: 4px;
  color: #5f6875;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-title-medium-line-height);
}

.cart-drawer-info > span {
  display: block;
  margin-top: 4px;
  color: #7a8490;
  font-size: var(--h5-caption-regular-size);
}

.cart-drawer-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.cart-quantity-control {
  display: inline-flex;
  height: 32px;
  overflow: hidden;
  align-items: center;
  border: 1px solid #d8dee7;
  border-radius: 3px;
}

.cart-quantity-control button,
.cart-quantity-control span {
  display: inline-flex;
  width: 36px;
  height: 32px;
  flex: 0 0 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #ffffff;
  color: #4b5563;
}

.cart-quantity-control button {
  width: 30px;
  flex-basis: 30px;
  cursor: pointer;
}

.cart-quantity-control button:first-child {
  border-right: 1px solid #d8dee7;
}

.cart-quantity-control button:last-child {
  border-left: 1px solid #d8dee7;
}

.cart-quantity-control:hover,
.cart-quantity-control:focus-within {
  border-color: var(--red);
}

.cart-quantity-control:hover button:first-child,
.cart-quantity-control:focus-within button:first-child {
  border-right-color: #f3b6b6;
}

.cart-quantity-control:hover button:last-child,
.cart-quantity-control:focus-within button:last-child {
  border-left-color: #f3b6b6;
}

.cart-quantity-control button:hover,
.cart-quantity-control button:focus-visible {
  background: #fff1f1;
  color: var(--red);
}

.cart-line-price {
  color: var(--red);
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.cart-drawer-empty {
  display: grid;
  min-height: 260px;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 12px;
  border-bottom: 1px solid #edf0f3;
  color: #687280;
  font-weight: var(--h5-semibold-weight);
  text-align: center;
}

.cart-drawer-empty strong {
  display: block;
  color: #111827;
  font-size: var(--h5-body1-regular-size);
}

.cart-drawer-empty a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #c8cdd3;
  padding: 0 18px;
  color: #111111;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.cart-drawer-footer {
  border-top: 1px solid #edf0f3;
  padding: 18px 24px 24px;
}

.cart-drawer-select,
.cart-drawer-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-select {
  gap: 8px;
  color: #5f6875;
  font-size: var(--h5-body2-regular-size);
}

.cart-drawer-select > span {
  margin-right: auto;
}

.cart-drawer-select button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: #687280;
  cursor: pointer;
}

.cart-drawer-total {
  margin-top: 18px;
  color: #111827;
  font-size: var(--h5-body1-regular-size);
}

.cart-drawer-total span {
  color: var(--red);
  font-weight: var(--h5-semibold-weight);
}

.cart-checkout-button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 4px;
  background: var(--red);
  color: #ffffff;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.cart-checkout-button:hover {
  background: #d9dde2;
}

.cart-checkout-button.is-disabled {
  pointer-events: none;
  opacity: 0.55;
}

.cart-page-shell {
  padding: 58px 0 86px;
  background: #f5f7fa;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.cart-page-main,
.cart-page-summary {
  border: 1px solid #e4e7eb;
  background: #ffffff;
}

.cart-page-heading {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e4e7eb;
  padding: 0 24px;
}

.cart-page-heading h1,
.cart-page-summary h2 {
  margin: 0;
  color: #101318;
  font-size: var(--h5-title-medium-size);
  font-weight: var(--h5-semibold-weight);
}

.cart-page-back {
  display: none;
}

.cart-page-clear,
.cart-page-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #687280;
  cursor: pointer;
}

.cart-page-clear {
  gap: 7px;
  font-weight: var(--h5-semibold-weight);
}

.cart-page-clear svg,
.cart-page-delete svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-page-clear:hover,
.cart-page-delete:hover {
  color: var(--red);
}

.cart-page-table-head,
.cart-page-item {
  display: grid;
  grid-template-columns: minmax(320px, 1.5fr) 120px 110px 124px 110px 42px;
  gap: 18px;
  align-items: center;
}

.cart-page-table-head {
  border-bottom: 1px solid #edf0f3;
  padding: 15px 24px;
  color: #687280;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.cart-page-item {
  border-bottom: 1px solid #edf0f3;
  padding: 24px;
}

.cart-page-product {
  display: grid;
  grid-template-columns: 16px 82px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.cart-page-product .cart-check {
  min-height: 82px;
}

.cart-page-product img {
  width: 82px;
  height: 82px;
  background: #f7f9fb;
  object-fit: contain;
}

.cart-page-product h2 {
  margin: 0;
  color: #111827;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
}

.cart-page-product p {
  margin-top: 6px;
  color: #5f6875;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.cart-page-product small,
.cart-page-stock {
  color: #687280;
  font-size: var(--h5-caption-regular-size);
}

.cart-page-price {
  color: var(--red);
  font-weight: var(--h5-semibold-weight);
}

.cart-page-mobile-price {
  display: none;
}

.cart-page-quantity {
  width: max-content;
}

.cart-page-empty {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #687280;
  text-align: center;
}

.cart-page-empty strong {
  color: #111827;
  font-size: var(--h5-title-medium-size);
}

.cart-page-empty a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red);
  padding: 0 22px;
  color: #ffffff;
  font-weight: var(--h5-semibold-weight);
}

.cart-page-summary {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.cart-page-summary h2 {
  font-size: var(--h5-title-medium-size);
}

.cart-page-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf0f3;
  padding: 18px 0;
  color: #5f6875;
}

.cart-page-summary-row strong {
  color: #111827;
}

.cart-page-summary-row:last-of-type strong {
  color: var(--red);
  font-size: var(--h5-title-medium-size);
}

.cart-page-checkout,
.cart-page-continue {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border-radius: 4px;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.cart-page-checkout {
  background: var(--red);
  color: #ffffff;
  border: none;
}

.cart-page-checkout:hover {
  background: var(--red-dark);
}

.cart-page-checkout.is-disabled,
.cart-page-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.cart-page-continue {
  display: none;
}

.cart-page-continue:hover {
  background: #15458f;
  color: #ffffff;
}

.checkout-hero {
  padding: 54px 0 42px;
  background: #ffffff;
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 860px;
  align-items: start;
}

.checkout-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #74777d;
  text-align: center;
}

.checkout-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 1px;
  background: #d5d8de;
}

.checkout-step span {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d8de;
  border-radius: 50%;
  background: #ffffff;
  color: #999da5;
  font-size: var(--h5-body2-regular-size);
}

.checkout-step strong {
  color: inherit;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-step.is-active span {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.checkout-step.is-active strong {
  color: #111111;
  font-weight: var(--h5-semibold-weight);
}

.checkout-shell {
  padding: 44px 0 76px;
  background: #f5f5f5;
}

.checkout-container {
  max-width: 1120px;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
}

.checkout-card {
  border-radius: 0;
  background: #ffffff;
  padding: 34px 74px 44px;
}

.checkout-stage-card {
  padding: 42px 74px 48px;
}

.checkout-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(211, 0, 0, 0.25);
  border-radius: 4px;
}

.checkout-tabs button {
  min-height: 44px;
  border: 0;
  border-right: 1px solid rgba(211, 0, 0, 0.25);
  background: #fff5f5;
  color: var(--red);
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
}

.checkout-tabs button:last-child {
  border-right: 0;
}

.checkout-tabs button.is-active {
  background: var(--red);
  color: #ffffff;
}

.checkout-section {
  margin-top: 42px;
}

.checkout-section-first {
  margin-top: 0;
}

.checkout-section h2 {
  margin: 0 0 20px;
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-products {
  border-top: 1px solid #eeeeee;
}

.checkout-pickup-products {
  border-top: 1px solid #eeeeee;
}

.checkout-product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 118px 18px 116px 28px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  padding: 18px 0;
}

.checkout-product img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #f7f9fb;
}

.checkout-product-info h3 {
  margin: 0;
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
}

.checkout-product-info span {
  display: block;
  margin-top: 4px;
  color: #6d7178;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-title-medium-line-height);
}

.checkout-quantity {
  width: 96px;
}

.checkout-multiply {
  color: #8d9299;
  font-weight: var(--h5-semibold-weight);
  text-align: center;
}

.checkout-product strong {
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-delete {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #737982;
  cursor: pointer;
}

.checkout-delete svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.checkout-delete:hover {
  color: var(--red);
}

.checkout-pickup-product {
  border-bottom: 1px solid #eeeeee;
  padding: 16px 0 0;
}

.checkout-pickup-row {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 118px 18px 116px 28px;
  gap: 18px;
  align-items: center;
}

.checkout-pickup-row img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #f7f9fb;
}

.checkout-pickup-row strong {
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  white-space: nowrap;
}

.checkout-pickup-location {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  margin: 14px 28px 0 74px;
  border-top: 1px dashed #dfe3ea;
  padding: 14px 0 18px;
  color: #666666;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.checkout-pickup-location-compact {
  grid-template-columns: minmax(0, 1fr);
}

.checkout-pickup-location span:first-child::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 2px solid var(--red);
  border-radius: 50%;
  vertical-align: -1px;
}

.checkout-pickup-location span:nth-child(2)::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border: 1.5px solid #777777;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  vertical-align: -1px;
}

.checkout-personal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 18px;
}

.checkout-personal-grid label {
  display: grid;
  gap: 8px;
  color: #666666;
  font-size: var(--h5-caption-regular-size);
}

.checkout-personal-grid b {
  color: var(--red);
}

.checkout-personal-grid input {
  width: 100%;
  min-height: 34px;
  border: 1px solid #d8dde6;
  border-radius: 3px;
  padding: 0 12px;
  color: #111827;
  font: inherit;
  font-size: var(--h5-caption-regular-size);
  outline: 0;
}

.checkout-personal-grid input::placeholder {
  color: #9ca3af;
}

.checkout-personal-grid input:focus {
  border-color: var(--red);
}

.checkout-personal-wide {
  grid-column: 1 / -1;
}

.checkout-payment-card {
  padding-top: 38px;
}

.checkout-payment-products {
  border-top: 1px solid #eeeeee;
}

.checkout-payment-product {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 118px 18px 108px 28px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  padding: 16px 0;
}

.checkout-payment-product img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #f7f9fb;
}

.checkout-payment-product-info {
  display: grid;
  gap: 4px;
}

.checkout-payment-product-info strong {
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-medium-weight);
  line-height: var(--h5-headline-medium-line-height);
}

.checkout-payment-product-info span {
  color: #666666;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-headline-medium-line-height);
}

.checkout-payment-product-price {
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-align: right;
  white-space: nowrap;
}

.checkout-payment-details {
  border-top: 1px solid #eeeeee;
}

.checkout-payment-details div {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
  color: #111111;
  font-size: var(--h5-body2-regular-size);
}

.checkout-payment-details strong {
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-payment-details div:first-child strong,
.checkout-payment-details div:nth-child(2) strong {
  color: var(--red);
}

.checkout-payment-hint {
  margin: -6px 0 20px;
  color: #666666;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.checkout-payment-hint::before {
  content: "i";
  display: inline-flex;
  width: 12px;
  height: 12px;
  margin-right: 7px;
  align-items: center;
  justify-content: center;
  border: 1px solid #9da3ad;
  border-radius: 50%;
  color: #6d7178;
  font-size: var(--h5-caption-regular-size);
  font-style: normal;
}

.checkout-region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.checkout-region-tabs button {
  min-width: 88px;
  min-height: 28px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #ffffff;
  color: #666666;
  font-size: var(--h5-caption-regular-size);
  cursor: pointer;
}

.checkout-region-tabs button.is-active {
  border-color: var(--red);
  color: var(--red);
}

.checkout-method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkout-method-grid label {
  position: relative;
  display: grid;
  width: 150px;
  min-height: 60px;
  place-items: center;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  overflow: hidden;
}

.checkout-method-grid label.is-selected {
  border-color: #111111;
  box-shadow: none;
}

.checkout-method-grid label.is-selected::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-style: solid;
  border-width: 0 0 24px 24px;
  border-color: transparent transparent #3f3f3f transparent;
}

.checkout-method-grid label.is-selected::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 9px;
  height: 5px;
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.checkout-method-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-method-grid span {
  color: #111111;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
  text-align: center;
}

.checkout-method-grid small {
  margin-top: -8px;
  color: #58a55c;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-method-grid em {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 0 8px 0;
  background: #eeeeee;
  padding: 2px 7px;
  color: #111111;
  font-size: var(--h5-caption-regular-size);
  font-style: normal;
  font-weight: var(--h5-semibold-weight);
}

.checkout-payment-total-row {
  border-top: 1px solid #eeeeee;
  padding-top: 24px;
}

.checkout-payment-final-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 28px;
  color: #111111;
  font-size: var(--h5-body2-regular-size);
}

.checkout-payment-final-total {
  border-bottom: 1px solid #eeeeee;
  padding-top: 18px;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-payment-total-row strong {
  color: var(--red);
  font-size: var(--h5-title-medium-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-payment-final-line:first-child strong {
  color: #111111;
  font-size: var(--h5-body2-regular-size);
}

.checkout-terms-panel {
  margin: 32px -46px -46px;
  background: transparent;
  padding: 44px 46px;
  text-align: center;
}

.checkout-terms-panel label {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  color: #666666;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-body1-regular-line-height);
}

.checkout-terms-panel input {
  position: relative;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin: 0;
  margin-top: 3px;
  appearance: none;
  border: 1.5px solid var(--red);
  border-radius: 2px;
  background: #ffffff;
}

.checkout-terms-panel input:checked {
  background: var(--red);
}

.checkout-terms-panel input:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkout-terms-panel strong {
  color: #111111;
  font-weight: var(--h5-semibold-weight);
}

.checkout-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 16px;
}

.checkout-address-grid[hidden] {
  display: none;
}

.checkout-address-card {
  position: relative;
  min-height: 132px;
  border: 1px dashed #d6dce5;
  border-radius: 3px;
  background: #ffffff;
  padding: 18px 22px;
  color: #111111;
  text-align: left;
  cursor: pointer;
}

.checkout-address-card.is-selected {
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    repeating-linear-gradient(-45deg, #ff7777 0 14px, #ffffff 14px 26px, #5a8cff 26px 40px, #ffffff 40px 52px) border-box;
  border: 5px solid transparent;
}

.checkout-address-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-address-card span {
  color: #30343a;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.checkout-address-card i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  background: var(--red);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.checkout-address-card i::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 5px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.checkout-address-add {
  display: grid;
  place-items: center;
  color: #999da5;
  font-size: var(--h5-headline-medium-size);
  text-align: center;
}

.checkout-billing-section {
  display: flex;
  flex-wrap: wrap;
  column-gap: 22px;
  row-gap: 20px;
  align-items: center;
}

.checkout-billing-section h2 {
  flex-basis: 100%;
  margin-bottom: 0;
}

.checkout-billing-address-grid {
  flex: 0 0 100%;
  margin-top: 8px;
}

.checkout-billing-section label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-billing-section input {
  accent-color: var(--red);
}

.checkout-payment-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.checkout-payment-methods label {
  display: grid;
  min-height: 104px;
  align-content: center;
  gap: 10px;
  border: 1px solid #d8dde6;
  border-radius: 4px;
  background: #ffffff;
  padding: 24px 24px 24px 58px;
  position: relative;
  cursor: pointer;
}

.checkout-payment-methods label.is-selected {
  border-color: var(--red);
  background: #fff7f7;
}

.checkout-payment-methods input {
  position: absolute;
  top: 31px;
  left: 28px;
  accent-color: var(--red);
}

.checkout-payment-methods span {
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-payment-methods small {
  color: #6d7178;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.checkout-order-note {
  width: 100%;
  min-height: 142px;
  resize: vertical;
  border: 1px solid #d8dde6;
  border-radius: 4px;
  padding: 20px 22px;
  color: #111827;
  font: inherit;
  font-size: var(--h5-body1-regular-size);
  outline: 0;
}

.checkout-order-note::placeholder {
  color: #c5ccd6;
}

.checkout-order-note:focus {
  border-color: var(--red);
}

.checkout-summary {
  border: 1px solid #e6e9ef;
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
}

.checkout-summary-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) 124px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid #edf0f4;
  padding: 18px 22px;
}

.checkout-summary-row:last-child {
  border-bottom: 0;
}

.checkout-summary-row img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #f7f9fb;
}

.checkout-summary-row strong {
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-summary-row span {
  display: block;
  margin-top: 6px;
  color: #6d7178;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-title-medium-line-height);
}

.checkout-summary-price {
  color: var(--red);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-align: right;
  white-space: nowrap;
}

.checkout-cost-table,
.checkout-detail-table {
  display: grid;
  border: 1px solid #e6e9ef;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 16px;
}

.checkout-cost-table div,
.checkout-detail-table div {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  border-bottom: 1px solid #edf0f4;
  min-height: 64px;
}

.checkout-cost-table div:last-child,
.checkout-detail-table div:last-child {
  border-bottom: 0;
}

.checkout-cost-table span,
.checkout-detail-table span {
  height: 100%;
  display: flex;
  align-items: center;
  background: #f6f7fa;
  padding: 16px 22px;
  color: #111827;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-cost-table strong,
.checkout-detail-table strong {
  padding: 16px 22px;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  white-space: pre-line;
}

.checkout-cost-table .checkout-cost-total strong,
.checkout-detail-table div:last-child strong {
  color: var(--red);
  font-size: var(--h5-title-medium-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-notice {
  border: 1px solid #f0d7d7;
  border-radius: 4px;
  background: #fff7f7;
  padding: 18px 22px;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.checkout-confirmation-box {
  display: grid;
  gap: 8px;
  border: 1px solid #f0d7d7;
  border-radius: 4px;
  background: #fff7f7;
  padding: 18px;
}

.checkout-confirmation-box strong {
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-confirmation-box span,
.checkout-confirm-address {
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.checkout-confirmation-box.is-complete {
  border-color: rgba(19, 146, 76, 0.28);
  background: #f3fbf6;
}

.checkout-confirmation-box.is-complete strong {
  color: #117a42;
}

.checkout-confirm-address {
  border: 1px solid #e6e9ef;
  border-radius: 4px;
  padding: 16px 18px;
  white-space: pre-line;
}

.checkout-submit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  max-width: 420px;
  align-items: center;
  margin: 0 auto;
  padding: 34px 0 46px;
}

.checkout-submit-row span {
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-submit-row strong {
  color: var(--red);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.checkout-submit-row button {
  grid-column: 1 / -1;
  justify-self: center;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #ffffff;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
}

.checkout-submit-row.has-back button {
  grid-column: auto;
}

.checkout-submit-row.has-back {
  grid-template-columns: 191px 191px;
}

.checkout-submit-row.has-back button,
.checkout-submit-row button {
  width: 191px;
}

.checkout-submit-row .checkout-back-button {
  border: 1px solid #d8dde6;
  background: #ffffff;
  color: #111111;
}

.checkout-submit-row button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.checkout-crypto-active .site-header,
.checkout-crypto-active .checkout-hero,
.checkout-crypto-active .site-footer {
  display: none;
}

.checkout-crypto-active .checkout-shell {
  background: #ffffff;
  padding: 0;
}

.checkout-crypto-active .checkout-container {
  width: 100%;
  max-width: none;
  padding: 0;
  border-radius: 0;
}

.checkout-crypto-stage {
  padding: 0;
}

.crypto-pay-page {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 100vh;
  background: #ffffff;
}

.crypto-pay-summary {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #111111;
  color: #ffffff;
  padding: 24px 86px 28px;
}

.crypto-pay-back {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
}

.crypto-pay-summary-inner {
  max-width: 430px;
  margin-top: 78px;
}

.crypto-pay-total {
  display: flex;
  align-items: center;
  gap: 18px;
}

.crypto-pay-logo {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.crypto-pay-total strong {
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
}

.crypto-pay-summary-inner p {
  margin: 18px 0 36px;
  color: #858585;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.crypto-pay-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 430px;
  min-height: 56px;
  border-radius: 8px;
  background: #292929;
  padding: 0 18px;
}

.crypto-pay-method span {
  font-size: var(--h5-headline-medium-size);
}

.crypto-pay-method strong {
  font-size: var(--h5-body1-regular-size);
}

.crypto-pay-method i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  font-style: normal;
  font-size: var(--h5-caption-regular-size);
}

.crypto-pay-summary small {
  align-self: center;
  color: #6f6f6f;
  font-weight: var(--h5-semibold-weight);
}

.crypto-pay-panel {
  position: relative;
  padding: 68px 0 80px;
}

.crypto-language {
  position: absolute;
  top: 22px;
  right: 28px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f4f4f4;
  color: #111111;
  font-size: var(--h5-title-medium-size);
}

.crypto-pay-form {
  width: 430px;
  margin: 0 auto;
}

.crypto-select-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.crypto-select-row label {
  display: grid;
  gap: 8px;
  color: #777777;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.crypto-select-row button,
.crypto-wallet-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  border: 0;
  border-radius: 10px;
  background: #f5f6f8;
  padding: 0 14px;
  color: #111111;
  font-weight: var(--h5-semibold-weight);
}

.crypto-select-row b {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 6px;
  border-radius: 50%;
  background: #10a7a7;
  color: #ffffff;
}

.crypto-select-row label:nth-child(2) b {
  background: #f0b90b;
}

.crypto-wallet-button {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}

.crypto-or {
  margin: 18px 0;
  color: #777777;
  text-align: center;
  font-size: var(--h5-body2-regular-size);
}

.crypto-pay-heading {
  display: flex;
  justify-content: space-between;
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.crypto-pay-heading span,
.crypto-warning {
  color: #ff8a1f;
}

.crypto-qr {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  margin: 22px auto 26px;
}

.crypto-qr svg {
  width: 120px;
  height: 120px;
}

.crypto-pay-detail {
  position: relative;
  display: grid;
  gap: 6px;
  margin: 14px 0;
  padding-right: 42px;
}

.crypto-pay-detail span {
  color: #777777;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.crypto-pay-detail strong {
  color: #111111;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  word-break: break-all;
}

.crypto-pay-detail button {
  position: absolute;
  top: 4px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: #f5f6f8;
  color: #111111;
}

.crypto-warning {
  margin: 20px 0 14px;
  text-align: center;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.crypto-transferred-button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: #000000;
  color: #ffffff;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.crypto-checking {
  margin-top: 22px;
  color: #8f8f8f;
  text-align: center;
  font-size: var(--h5-caption-regular-size);
}

.checkout-empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border-bottom: 1px solid #eeeeee;
  color: #6d7178;
  text-align: center;
}

.checkout-empty strong {
  color: #111111;
  font-size: var(--h5-body1-regular-size);
}

.checkout-empty a {
  color: var(--red);
  font-weight: var(--h5-semibold-weight);
}

.detail-product-visual {
  position: relative;
}

.detail-product-visual .product-visual {
  width: min(100%, 520px);
  min-height: clamp(320px, 34vw, 500px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
  justify-self: start;
}

.detail-product-visual .product-visual img {
  width: 68.64%;
  height: 68.64%;
  filter: drop-shadow(0 22px 30px rgba(17, 24, 39, 0.12));
  transform: translateX(-20%);
}

.detail-gallery-carousel {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.detail-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease;
  will-change: transform;
}

.detail-gallery-slide {
  display: grid;
  min-width: 100%;
  height: 100%;
  place-items: center;
}

.detail-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
  cursor: pointer;
  transform: translateY(-50%);
}

.detail-gallery-arrow span {
  width: 10px;
  height: 10px;
  border-top: 2px solid #111111;
  border-right: 2px solid #111111;
}

.detail-gallery-arrow-prev {
  left: 12px;
}

.detail-gallery-arrow-prev span {
  transform: rotate(-135deg);
}

.detail-gallery-arrow-next {
  right: 12px;
}

.detail-gallery-arrow-next span {
  transform: rotate(45deg);
}

.detail-content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.detail-info-card {
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-info-card:nth-child(2) {
  border-right: 0;
}

.detail-info-wide {
  grid-column: 1 / -1;
  border-right: 0;
  border-bottom: 0;
}

.detail-info-card h2,
.detail-section-heading h2,
.detail-inquiry-panel h2 {
  margin: 0;
  color: #151515;
  font-size: var(--h5-headline-medium-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
}

.detail-rich-copy {
  min-width: 0;
  max-width: 100%;
  margin-top: 18px;
  color: var(--body);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  overflow-wrap: anywhere;
}

.detail-rich-copy * {
  box-sizing: border-box;
  max-width: 100%;
}

.detail-rich-copy > :first-child {
  margin-top: 0;
}

.detail-rich-copy > :last-child {
  margin-bottom: 0;
}

.detail-rich-copy p,
.detail-rich-copy div,
.detail-rich-copy ul,
.detail-rich-copy ol {
  max-width: 100%;
}

.detail-rich-copy p,
.detail-rich-copy ul,
.detail-rich-copy ol {
  margin: 0 0 16px;
}

.detail-rich-copy img,
.detail-rich-copy video,
.detail-rich-copy iframe {
  display: block;
  max-width: 100% !important;
  height: auto !important;
}

.detail-rich-copy img {
  width: auto;
  aspect-ratio: auto 16 / 9;
}

.detail-rich-copy table {
  display: block;
  width: 100% !important;
  max-width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.detail-rich-copy th,
.detail-rich-copy td {
  padding: 10px 12px;
  border: 1px solid #edf0f3;
  vertical-align: top;
}

.detail-info-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 0;
  color: var(--body);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  list-style: none;
  text-align: left;
}

.detail-info-card li {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.detail-info-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.76em;
  border-radius: 50%;
  background: currentColor;
}

.detail-spec-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 0;
  border: 1px solid #edf0f3;
}

.detail-info-wide .detail-spec-table {
  margin-right: -30px;
  margin-left: -30px;
}

.detail-spec-table div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  border-bottom: 1px solid #edf0f3;
}

.detail-spec-table div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.detail-spec-table.is-odd div:nth-last-child(2) {
  border-bottom: 1px solid #edf0f3;
}

.detail-spec-table.is-odd div:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}

.detail-spec-table div:nth-child(odd) {
  border-right: 1px solid #edf0f3;
}

.detail-spec-table dt,
.detail-spec-table dd {
  margin: 0;
  padding: 14px 16px;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.detail-spec-table dt {
  background: #f6f8fb;
  color: #111827;
  font-weight: var(--h5-semibold-weight);
}

.detail-spec-table dd {
  color: var(--body);
}

.detail-inquiry-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 30px 30px;
  border: 1px solid #edf0f3;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(192, 0, 0, 0.07), transparent 50%),
    #ffffff;
}

.detail-inquiry-panel p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--body);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.detail-related-section {
  padding: 28px;
}

.detail-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.detail-section-heading a {
  color: var(--red);
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.detail-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.detail-related-card {
  display: grid;
  border: 1px solid var(--line);
  background: #ffffff;
  color: inherit;
}

.detail-related-card .product-visual {
  border-radius: 0;
}

.detail-related-card strong,
.detail-related-card span,
.detail-related-card p {
  margin: 0;
  padding: 0 16px;
}

.detail-related-card strong {
  margin-top: 16px;
  color: var(--ink);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.detail-related-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.detail-related-card p {
  margin-top: 10px;
  padding-bottom: 18px;
  color: var(--body);
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.pagination-page,
.pagination-arrow {
  display: inline-flex;
  width: 22px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: #202020;
  font: inherit;
  cursor: pointer;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.pagination-page:hover,
.pagination-arrow:hover {
  color: #ff7a00;
  transform: translateY(-1px);
}

.pagination-page.is-active {
  color: #ff7a00;
  font-weight: var(--h5-semibold-weight);
}

.pagination-arrow {
  color: #aeb7c2;
  font-size: var(--h5-title-medium-size);
  line-height: var(--h5-display-semibold-line-height);
}

.pagination-arrow:disabled {
  color: #cfd5dd;
  cursor: default;
  transform: none;
}

.pagination-ellipsis {
  color: #202020;
  font-weight: var(--h5-semibold-weight);
}

.view-more-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #9aa3af;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.view-more-button i {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.view-more-button:hover {
  color: #1f2937;
  transform: translateY(1px);
}

.view-more-button[hidden] {
  display: none;
}

.shortlist-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 30%, rgba(17, 24, 39, 0.05), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(17, 24, 39, 0.05), transparent 28%),
    #f7f7f7;
}

.news-section-inner {
  display: grid;
  gap: 46px;
}

.news-heading {
  display: grid;
  justify-items: center;
  gap: 22px;
  text-align: center;
}

.news-heading h2 {
  margin: 0;
  color: #050505;
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
}

.news-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
}

.news-tabs button {
  border: 0;
  background: transparent;
  color: rgba(25, 25, 25, 0.45);
  cursor: pointer;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.02em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.news-tabs button:hover,
.news-tabs button.is-active {
  color: #111111;
  transform: translateY(-1px);
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 46px;
}

.news-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.75);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.news-card:hover,
.news-card.is-open {
  border-color: rgba(192, 0, 0, 0.18);
  box-shadow: 0 28px 60px rgba(17, 24, 39, 0.14);
  transform: translateY(-6px);
}

.news-card-media {
  aspect-ratio: 1.82 / 1;
  background:
    linear-gradient(135deg, rgba(0, 75, 146, 0.1), rgba(192, 0, 0, 0.08)),
    #eef2f7;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.news-card-date {
  color: #232323;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-display-semibold-line-height);
}

.news-card h3 {
  margin: 0;
  color: #121212;
  font-size: var(--h5-title-medium-size);
  line-height: var(--h5-headline-medium-line-height);
  font-weight: var(--h5-semibold-weight);
}

.news-card p {
  margin: 0;
  color: rgba(25, 25, 25, 0.43);
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.news-card-detail {
  display: none;
}

.news-card.is-open .news-card-detail {
  display: block;
}

.news-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  padding-top: 20px;
}

.news-card-action button {
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  padding: 0;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  transition: color 0.2s ease;
}

.news-card-action button:hover {
  color: var(--red);
}

.news-card-action i,
.news-promo i {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.news-card.is-open .news-card-action i,
.news-card-action button:hover + i,
.news-promo:hover i {
  transform: translateX(4px) rotate(45deg);
}

.news-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.news-promo {
  position: relative;
  overflow: hidden;
  min-height: 110px;
  border-radius: 10px;
  padding: 28px 34px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(48, 66, 84, 0.9), rgba(105, 123, 139, 0.72)),
    #6b7c8d;
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.1);
}

.news-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 48%, rgba(255, 255, 255, 0.12) 48% 52%, transparent 52%),
    radial-gradient(circle at 78% 45%, rgba(255, 255, 255, 0.28), transparent 26%);
  pointer-events: none;
}

.news-promo strong,
.news-promo span,
.news-promo i {
  position: relative;
  z-index: 1;
}

.news-promo strong,
.news-promo span {
  display: block;
}

.news-promo strong {
  font-size: var(--h5-title-medium-size);
  line-height: var(--h5-display-semibold-line-height);
}

.news-promo span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--h5-body1-regular-size);
}

.news-promo i {
  position: absolute;
  right: 34px;
  top: 50%;
  color: rgba(255, 255, 255, 0.9);
}

.benefits-panel {
  display: grid;
  gap: 30px;
  border: 1px solid rgba(21, 69, 143, 0.12);
  border-radius: 18px;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 18% 8%, rgba(21, 69, 143, 0.08), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(221, 32, 39, 0.07), transparent 24%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.benefits-heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.benefits-heading h2 {
  margin: 0;
  color: #111111;
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
}

.benefits-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--body);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.6fr));
  grid-template-rows: repeat(2, minmax(190px, auto));
  gap: 18px;
}

.benefit-card {
  position: relative;
  display: grid;
  place-items: center;
  gap: 16px;
  overflow: hidden;
  border: 1px solid rgba(21, 69, 143, 0.12);
  border-radius: 14px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: default;
  pointer-events: none;
  text-align: center;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.06);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(21, 69, 143, 0.06), transparent 46%),
    linear-gradient(315deg, rgba(221, 32, 39, 0.06), transparent 44%);
  opacity: 0;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.benefit-card strong {
  max-width: 270px;
  color: #202020;
  font-size: var(--h5-title-medium-size);
  line-height: var(--h5-display-semibold-line-height);
  font-weight: var(--h5-semibold-weight);
}

.benefit-card small {
  display: none;
  color: var(--muted);
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.benefit-card-large {
  grid-row: span 2;
  grid-template-columns: minmax(230px, 0.86fr) minmax(220px, 1fr);
  place-items: center;
  min-height: 398px;
  padding: clamp(30px, 4vw, 50px);
  text-align: left;
}

.benefit-card-large .benefit-copy {
  display: grid;
  gap: 14px;
}

.benefit-card-large strong {
  max-width: 430px;
  font-size: var(--h5-display-semibold-size);
}

.benefit-card-large small {
  display: block;
  max-width: 390px;
  color: var(--body);
  font-size: var(--h5-body1-regular-size);
}

.benefit-visual {
  position: relative;
  width: min(100%, 270px);
  aspect-ratio: 1.1;
}

.benefit-visual-rewards::before {
  content: "%";
  position: absolute;
  left: 18%;
  bottom: 12%;
  display: grid;
  place-items: center;
  width: 150px;
  height: 112px;
  border: 2px solid rgba(21, 69, 143, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(21, 69, 143, 0.08), rgba(221, 32, 39, 0.08)),
    #ffffff;
  color: #15458f;
  font-size: var(--h5-display-semibold-size);
  font-weight: var(--h5-semibold-weight);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.12);
  transform: rotate(-10deg);
}

.benefit-visual-rewards::after {
  content: "";
  position: absolute;
  right: 12%;
  bottom: 16%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 38%, rgba(255, 255, 255, 0.95) 0 18%, transparent 19%),
    linear-gradient(135deg, #15458f, #dd2027);
  box-shadow: 0 18px 32px rgba(21, 69, 143, 0.22);
}

.benefit-visual-rewards i {
  position: absolute;
  right: 18%;
  top: 14%;
  width: 110px;
  height: 78px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 248, 255, 0.98)),
    #ffffff;
  border: 2px solid rgba(21, 69, 143, 0.16);
  box-shadow: 0 18px 34px rgba(17, 24, 39, 0.14);
  transform: rotate(13deg);
}

.benefit-visual-rewards i::after {
  content: "AI";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #dd2027;
  font-size: var(--h5-headline-medium-size);
  font-style: normal;
  font-weight: var(--h5-semibold-weight);
}

.benefit-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;
}

.quote-card p {
  color: var(--body);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.quote-section {
  background: #ffffff;
}

.quote-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background:
    linear-gradient(90deg, rgba(192, 0, 0, 0.07), transparent 42%),
    #ffffff;
  box-shadow: var(--shadow);
}

.quote-card > div {
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(150px, 0.55fr) minmax(190px, 0.65fr) minmax(320px, 1fr);
  min-height: 310px;
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand-panel,
.footer-menu-panel,
.footer-support-panel,
.footer-newsletter-panel {
  padding: 76px 0 58px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 34px;
}

.footer-logo img {
  width: 198px;
  filter: brightness(0) invert(1);
}

.footer-contact {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: var(--h5-body1-regular-line-height);
}

.footer-contact p {
  margin: 0;
}

.footer-contact span,
.footer-menu-panel > span,
.footer-support-panel > span {
  color: #ffffff;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.footer-contact span:not(:first-child) {
  margin-top: 12px;
}

.footer-contact a,
.footer-contact p,
.footer-menu-panel a,
.footer-support-panel a,
.footer-socials a {
  color: rgba(255, 255, 255, 0.66);
  font-size: var(--h5-body2-regular-size);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-contact a:hover,
.footer-menu-panel a:hover,
.footer-support-panel a:hover,
.footer-socials a:hover {
  color: #ffffff;
}

.footer-menu-panel,
.footer-support-panel {
  display: grid;
  align-content: start;
  gap: 17px;
}

.footer-menu-panel > span,
.footer-support-panel > span {
  margin-bottom: 12px;
}

.footer-newsletter-panel {
  display: grid;
  align-content: start;
  justify-items: start;
}

.footer-accordion-toggle {
  display: none;
}

.footer-newsletter-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
  letter-spacing: 0;
}

.footer-newsletter-panel p {
  max-width: 330px;
  margin: 20px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-body1-regular-line-height);
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 260px);
  min-height: 50px;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  padding: 0;
  background: #ffffff;
}

.footer-newsletter input {
  min-height: 50px;
  min-width: 0;
  border: 0;
  outline: 0;
  background: #ffffff;
  padding: 0 16px;
  color: #111111;
  font: inherit;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.footer-newsletter input::placeholder {
  color: #9ca3af;
}

.footer-newsletter button {
  min-height: 50px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  padding: 0 18px;
  color: #ffffff;
  font: inherit;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: 50px;
  cursor: pointer;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.footer-newsletter button:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  font-size: var(--h5-caption-regular-size);
}

.footer-socials a {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  font-size: var(--h5-caption-regular-size);
}

.footer-socials img {
  display: block;
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-bottom {
  display: grid;
  min-height: 72px;
  align-items: center;
  padding: 20px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: var(--h5-caption-regular-size);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-account-footer {
  display: none;
}

.woot-widget-bubble,
[class*="woot-widget-bubble"] {
  bottom: var(--chatwoot-bubble-bottom) !important;
  z-index: var(--chatwoot-z-index) !important;
}

.woot-widget-holder,
[class*="woot-widget-holder"] {
  z-index: var(--chatwoot-z-index) !important;
}

@media (max-width: 1040px) {
  .cart-page-layout {
    grid-template-columns: 1fr;
  }

  .cart-page-summary {
    position: static;
  }

  .cart-page-table-head {
    display: none;
  }

  .cart-page-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cart-page-product {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .cart-page-product img {
    width: 112px;
    height: 112px;
  }

  .cart-page-product .cart-check {
    width: 28px;
    height: 28px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    align-self: start;
  }

  .cart-page-stock,
  .cart-page-price,
  .cart-page-quantity,
  .cart-page-delete {
    justify-self: start;
  }

  .cart-page-delete {
    grid-row: 1;
    align-self: start;
    width: 28px;
    height: 28px;
  }

  .catalog-toolbar,
  .quote-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-row {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 12px;
  }

  .header-logo img {
    width: 227px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 18px 28px;
  }

  .nav-actions {
    align-self: flex-end;
  }

  .search-panel {
    top: 0;
    z-index: 25;
  }

  .hero-grid,
  .shortlist-grid {
    grid-template-columns: 1fr;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-promo-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .benefit-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .hero {
    min-height: 780px;
  }

  .hero-grid {
    min-height: 780px;
    align-content: center;
  }

  .hero-product-scene {
    min-height: 340px;
  }

  .server-rack {
    right: 22%;
    bottom: 70px;
    width: min(500px, 78vw);
  }

  .fiber-module {
    right: 4%;
    bottom: 78px;
    width: 220px;
  }

  .cooling-fan {
    width: 145px;
    height: 145px;
    border-width: 16px;
  }

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

  .about-hero-inner,
  .about-split-grid,
  .about-capability-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-media {
    min-height: 320px;
  }

  .about-capability-card {
    min-height: auto;
  }

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

  .category-card {
    min-height: 196px;
  }

  .fs-category-tab {
    min-height: 82px;
  }

  .fs-category-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .catalog-browser {
    grid-template-columns: 1fr;
  }

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

  .detail-product-gallery {
    order: -1;
  }

  .detail-option-group {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 12px;
  }

  .detail-sidebar {
    position: static;
  }

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

  .catalog-sidebar {
    position: static;
  }

  .store-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-controls {
    justify-content: flex-start;
  }

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

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

.footer-newsletter-panel {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

  .footer-menu-panel {
    border-right: 0;
  }

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

  .sidebar-block + .sidebar-block {
    border-top: 0;
    border-left: 1px solid var(--line);
  }

}

@media (max-width: 680px) {
  :root {
    --chatwoot-bubble-bottom: var(--mobile-floating-control-bottom);
  }

  body {
    overflow-x: hidden;
  }

  .about-panel-optics::before {
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.52), rgba(4, 12, 28, 0.22)),
      -webkit-image-set(url("bg1-760.webp") 1x);
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.52), rgba(4, 12, 28, 0.22)),
      image-set(url("bg1-760.webp") type("image/webp") 1x);
  }

  .about-panel-network::before {
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.5), rgba(4, 12, 28, 0.24)),
      -webkit-image-set(url("bg2-680.webp") 1x);
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.5), rgba(4, 12, 28, 0.24)),
      image-set(url("bg2-680.webp") type("image/webp") 1x);
  }

  .about-panel-manufacturing::before {
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.48), rgba(4, 12, 28, 0.24)),
      -webkit-image-set(url("bg3-760.webp") 1x);
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.48), rgba(4, 12, 28, 0.24)),
      image-set(url("bg3-760.webp") type("image/webp") 1x);
    background-position: 58% center;
  }

  .about-panel-service::before {
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.55), rgba(4, 12, 28, 0.28)),
      -webkit-image-set(url("bg4-560.webp") 1x);
    background-image:
      linear-gradient(100deg, rgba(4, 12, 28, 0.55), rgba(4, 12, 28, 0.28)),
      image-set(url("bg4-560.webp") type("image/webp") 1x);
    background-position: center 68%;
  }

  .about-mining-hero {
    background-image:
      linear-gradient(rgba(14, 18, 16, 0.7), rgba(14, 18, 16, 0.7)),
      -webkit-image-set(url("bg1-760.webp") 1x);
    background-image:
      linear-gradient(rgba(14, 18, 16, 0.7), rgba(14, 18, 16, 0.7)),
      image-set(url("bg1-760.webp") type("image/webp") 1x);
  }

  .category-section {
    contain-intrinsic-size: auto 980px;
  }

  .site-layout-shell {
    min-height: 100vh;
    padding-top: calc(var(--mobile-header-offset) + env(safe-area-inset-top));
    padding-bottom: var(--mobile-bottom-safe-height);
  }

  .site-footer {
    display: none;
  }

  .product-page-hero,
  .product-detail-hero {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: var(--mobile-bottom-safe-height);
    align-items: end;
    border: 1px solid #d8dce3;
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -5px 18px rgba(17, 24, 39, 0.12);
    padding: 6px 6px calc(6px + var(--safe-area-bottom));
    backdrop-filter: blur(10px);
  }

  .mobile-bottom-link {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 52px;
    border: 0;
    background: transparent;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding: 0;
    color: #3f4247;
    font-size: var(--h5-caption-regular-size);
    line-height: var(--h5-caption-regular-line-height);
    text-decoration: none;
    cursor: pointer;
  }

  .mobile-bottom-link svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-bottom-link span {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-bottom-link.is-active {
    color: #15458f;
  }

  .mobile-account-footer {
    display: block;
  }

  .mobile-floating-chat {
    position: fixed;
    right: 18px;
    bottom: var(--mobile-floating-control-bottom);
    z-index: 90;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border-radius: 50%;
    background: #2f91ff;
    box-shadow: 0 8px 18px rgba(47, 145, 255, 0.38);
  }

  .mobile-floating-chat i {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ffffff;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 70% 78%, 56% 100%, 48% 78%, 0 78%);
  }

  .woot-widget-holder,
  [class*="woot-widget-holder"] {
    bottom: var(--mobile-floating-control-bottom) !important;
    max-height: calc(100dvh - var(--mobile-floating-control-bottom) - var(--mobile-header-offset) - 16px) !important;
  }

  .detail-product-hero {
    justify-items: center;
    gap: 12px;
    padding: 14px 16px 22px;
    text-align: center;
  }

  .detail-product-gallery {
    width: 100%;
    justify-items: center;
  }

  .detail-product-copy {
    justify-self: center;
    max-width: 520px;
    text-align: left;
  }

  .detail-product-visual .product-visual {
    justify-self: center;
    width: min(100%, 448px);
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    place-items: center;
  }

  .detail-product-visual .product-visual img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    transform: none;
  }

  .detail-product-copy h1 {
    margin: 0;
    font-size: var(--h5-title-medium-size);
    line-height: var(--h5-headline-medium-line-height);
  }

  .detail-meta-line {
    justify-content: center;
  }

  .detail-intro {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-body1-regular-line-height);
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .detail-quote-card {
    width: 100%;
    margin-top: 10px;
    padding: 12px 14px;
  }

  .detail-quote-card strong {
    font-size: var(--h5-title-medium-size);
    line-height: var(--h5-headline-medium-line-height);
  }

  .detail-option-group {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
    margin-top: 12px;
  }

  .detail-select-field,
  .detail-select-text {
    min-height: 36px;
  }

  .detail-option-list {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
  }

  .cart-page-shell {
    padding: 12px 0 56px;
    background: #f6f7fb;
  }

  .cart-page-shell > .container > .breadcrumb {
    display: none;
  }

  .cart-page-heading {
    min-height: auto;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
    padding: 20px 12px 20px 20px;
  }

  .cart-page-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 14px;
    align-items: start;
    margin: 0 0 14px;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    padding: 12px;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
  }

  .cart-page-product {
    grid-template-columns: 22px 44px minmax(0, 1fr);
    grid-column: 1 / 2;
    gap: 10px;
    align-items: start;
    justify-items: stretch;
    min-width: 0;
  }

  .cart-page-product img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f7f8fa;
  }

  .cart-page-product .cart-check {
    position: static;
    width: 28px;
    height: 28px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    align-self: start;
    opacity: 1;
  }

  .cart-page-product .cart-check span {
    width: 17px;
    height: 17px;
  }

  .cart-page-product h2 {
    font-size: var(--h5-body1-regular-size);
    line-height: var(--h5-headline-medium-line-height);
  }

  .cart-page-product p {
    margin-top: 5px;
    overflow: visible;
    color: #6d7480;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-title-medium-line-height);
    text-overflow: clip;
  }

  .cart-page-product small,
  .cart-page-stock,
  .cart-page-unit-price {
    display: none;
  }

  .cart-page-line-price {
    display: none;
  }

  .cart-page-mobile-price {
    display: block;
    margin-top: 8px;
    color: var(--red);
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .cart-page-quantity {
    grid-column: 1 / 2;
    grid-row: 2;
    justify-self: start;
    margin-left: 76px;
    transform: scale(0.86);
    transform-origin: left center;
    width: auto;
    height: 32px;
    overflow: hidden;
    gap: 0;
    border: 1px solid #d8dee7;
    border-radius: 4px;
  }

  .cart-page-quantity button,
  .cart-page-quantity span {
    width: 36px;
    height: 32px;
    min-height: 32px;
    flex: 0 0 36px;
    border-radius: 0;
    background: #ffffff;
    color: #4b5563;
    font-size: var(--h5-body2-regular-size);
  }

  .cart-page-quantity button:first-child {
    border: 0;
    border-right: 1px solid #d8dee7;
  }

  .cart-page-quantity button:last-child {
    border: 0;
    border-left: 1px solid #d8dee7;
  }

  .cart-page-delete {
    grid-column: 2 / 3;
    grid-row: 1;
    align-self: start;
    justify-self: end;
    width: 28px;
    height: 28px;
  }

  .cart-page-summary {
    padding: 20px;
  }

  .cart-page-summary h2 {
    display: none;
  }

  .cart-page-summary-row:first-of-type {
    display: none;
  }

  .cart-page-summary-row:last-of-type {
    color: #111827;
    font-size: var(--h5-title-medium-size);
    font-weight: var(--h5-semibold-weight);
  }

  .cart-drawer-panel {
    width: 100%;
  }

  .cart-drawer-header,
  .cart-drawer-list,
  .cart-drawer-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .cart-drawer-item {
    grid-template-columns: 18px 56px minmax(0, 1fr) 28px;
    gap: 10px;
  }

  .cart-drawer-item .cart-check {
    min-height: 56px;
  }

  .cart-drawer-thumb {
    width: 56px;
    height: 56px;
  }

  .cart-drawer-thumb img {
    max-width: 50px;
    max-height: 50px;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 120;
    width: 100%;
    padding-top: env(safe-area-inset-top);
    background: #ffffff;
  }

  .nav-row {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--mobile-header-height);
    align-items: center;
    gap: 14px;
    padding: 18px 12px;
  }

  .main-nav {
    position: fixed;
    top: calc(var(--mobile-header-offset) + env(safe-area-inset-top));
    right: 0;
    left: 0;
    z-index: 110;
    display: none;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    border-top: 1px solid #e5e8ed;
    border-bottom: 1px solid #e5e8ed;
    background: #ffffff;
    box-shadow: 0 14px 26px rgba(17, 24, 39, 0.12);
    font-size: var(--h5-caption-regular-size);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    border-bottom: 1px solid #eef1f5;
    padding: 0 16px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after,
  .main-nav button::after {
    content: none;
  }

  .header-logo img {
    width: min(196px, 53vw);
  }

  .nav-actions {
    height: 100%;
    width: auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .cart-icon,
  .user-icon {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 32px;
    height: 32px;
    border-left: 0;
  }

  .search-panel {
    top: 0;
    z-index: 130;
    display: block;
    min-height: 100vh;
    border-top: 0;
    background: rgba(17, 24, 39, 0.72);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .search-panel.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .search-panel-inner {
    display: flex;
    width: min(86vw, 360px) !important;
    height: 100dvh;
    flex-direction: column;
    margin: 0 0 0 auto;
    border-radius: 18px 0 0 18px;
    background: #ffffff;
    padding: 72px 22px 22px;
    box-shadow: -16px 0 36px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 260ms ease;
  }

  .search-panel.is-open .search-panel-inner {
    transform: translateX(0);
  }

  .nav-search {
    width: 32px;
    height: 32px;
    border-left: 0;
    border-right: 0;
    border: 0;
    border-radius: 0;
  }

  .nav-search:hover,
  .nav-search:focus-within,
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus-visible {
    background: transparent;
  }

  .search-panel-inner::before {
    content: "Search";
    position: absolute;
    top: 24px;
    left: 64px;
    right: 64px;
    color: #111827;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    text-align: center;
  }

  .search-panel-form {
    order: 1;
    grid-template-columns: minmax(0, 1fr) 92px;
    width: 100%;
    gap: 10px;
    margin: 0 0 24px;
    padding-right: 0;
  }

  .search-panel-input {
    height: 46px;
    border: 1px solid #111827;
    border-radius: 10px;
    background: #ffffff;
    padding: 0 12px;
    font-size: var(--h5-body1-regular-size);
  }

  .search-panel-submit {
    min-height: 46px;
    border-radius: 10px;
    background: #050816;
    font-size: var(--h5-caption-regular-size);
  }

  .search-panel-close {
    top: 22px;
    left: 22px;
    right: auto;
    z-index: 1;
    width: 28px;
    height: 28px;
    color: #111827;
  }

  .search-panel-close::before,
  .search-panel-close::after {
    top: 13px;
    left: 7px;
    width: 14px;
    height: 1.5px;
  }

  .search-panel-section {
    order: 2;
    margin-top: 0;
    overflow-y: auto;
    padding-bottom: 22px;
  }

  .search-panel-title {
    margin-bottom: 14px;
    color: #8a8f99;
    font-size: var(--h5-caption-regular-size);
  }

  .search-panel-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .search-panel-tag {
    min-height: 32px;
    border-color: #e5e7eb;
    border-radius: 9px;
    background: #f3f4f6;
    padding: 0 10px;
    color: #8a8f99;
    font-size: var(--h5-caption-regular-size);
  }

  .hero,
  .category-section,
  .catalog-section,
  .shortlist-section,
  .quote-section {
    padding: 42px 0;
  }

  .product-page-catalog {
    padding-top: 12px;
  }

  .news-section-inner {
    gap: 30px;
  }

  .news-tabs {
    gap: 18px;
  }

  .news-tabs button {
    font-size: var(--h5-body1-regular-size);
  }

  .news-card-body {
    padding: 20px;
  }

  .news-promo {
    padding: 24px;
  }

  .benefits-panel {
    padding: 24px;
  }

  .benefits-grid,
  .benefit-card-large {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 112px;
    align-items: center;
    justify-items: start;
    gap: 16px;
    padding: 20px;
    text-align: left;
  }

  .benefit-card:not(.benefit-card-large) strong {
    grid-column: 2;
    grid-row: 1;
  }

  .benefit-card:not(.benefit-card-large) .benefit-icon {
    grid-column: 1;
    grid-row: 1;
  }

  .benefit-card .benefit-copy {
    display: grid;
    gap: 4px;
  }

  .benefit-card strong {
    max-width: none;
    font-size: var(--h5-body1-regular-size);
    line-height: var(--h5-display-semibold-line-height);
  }

  .benefit-card-large {
    grid-template-columns: 1fr;
    min-height: auto;
    justify-items: center;
    text-align: center;
  }

  .benefit-card-large strong {
    font-size: var(--h5-title-medium-size);
    line-height: var(--h5-display-semibold-line-height);
  }

  .benefit-visual {
    width: 78px;
    height: 78px;
  }

  .benefit-icon {
    width: 78px;
    height: 78px;
  }

  .benefit-card-large .benefit-visual {
    width: min(82vw, 240px);
    height: auto;
  }

  .hero h1 {
    font-size: var(--h5-display-semibold-size);
  }

  .hero {
    min-height: 0;
    aspect-ratio: 1200 / 380;
    padding: 0;
  }

  .hero-viewport,
  .hero-track,
  .hero-slide {
    height: 100%;
  }

  .hero-grid {
    min-height: 0;
    height: 100%;
    gap: 16px;
  }

  .hero .eyebrow {
    font-size: var(--h5-body1-regular-size);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: var(--h5-body1-regular-size);
  }

  .hero-actions {
    margin-top: 34px;
  }

  .hero-product-scene {
    min-height: 260px;
  }

  .server-rack {
    right: 14%;
    bottom: 58px;
    width: 360px;
    max-width: 76vw;
    height: 154px;
  }

  .fiber-module {
    right: 4%;
    bottom: 62px;
    width: 156px;
    height: 74px;
  }

  .cooling-fan {
    width: 104px;
    height: 104px;
    border-width: 12px;
  }

  .cooling-fan::before {
    inset: 30px;
  }

  .fan-back {
    right: 22%;
    bottom: 48px;
  }

  .fan-front {
    right: 2%;
    bottom: 50px;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    display: none;
  }

  .hero-arrow-left {
    left: 14px;
  }

  .hero-arrow-right {
    right: 14px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .category-grid,
  .about-window-grid {
    grid-template-columns: 1fr;
  }

  .product-grid-desktop {
    display: none;
  }

  .product-waterfall {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: start;
  }

  .product-waterfall-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .product-summary {
    padding: 10px 10px 12px;
  }

  .product-card h3 {
    margin-top: 6px;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-headline-medium-line-height);
  }

  .maker {
    margin: 5px 0 8px;
    font-size: var(--h5-caption-regular-size);
  }

  .product-brand {
    margin-bottom: 6px;
  }

  .product-description {
    max-height: 2.8em;
    font-size: var(--h5-caption-regular-size);
    line-height: 1.4;
  }

  .product-tags {
    margin-top: 10px;
    padding-top: 0;
  }

  .product-waterfall .maker,
  .product-waterfall .product-card h3,
  .product-waterfall .product-description {
    min-height: 0;
  }

  .product-tags span {
    min-height: 24px;
    padding: 5px 7px;
    font-size: var(--h5-caption-regular-size);
    line-height: 1.3;
  }

  .about-mining-hero {
    min-height: 280px;
  }

  .about-mining-hero p {
    font-size: var(--h5-body1-regular-size);
  }

  .about-hero-section {
    padding: 30px 0 40px;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-hero-copy {
    align-items: center;
    max-width: none;
    text-align: center;
  }

  .about-hero-copy h1 {
    margin-inline: auto;
    font-size: var(--h5-display-semibold-size);
  }

  .about-hero-copy p:not(.about-eyebrow) {
    align-self: stretch;
    margin-inline: auto;
    text-align: left;
  }

  .about-hero-copy p:not(.about-eyebrow),
  .about-closing-card p:not(.about-eyebrow) {
    font-size: var(--h5-body1-regular-size);
    line-height: var(--h5-body1-regular-line-height);
  }

  .about-hero-media {
    min-height: 260px;
    padding: 24px;
  }

  .about-hero-media strong {
    font-size: var(--h5-headline-medium-size);
  }

  .about-story-section,
  .about-capability-section,
  .about-image-band,
  .about-closing-section {
    padding: 38px 0;
  }

  .about-story-card,
  .about-capability-card {
    padding: 24px;
  }

  .about-story-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px 14px;
    align-items: baseline;
  }

  .about-story-card span {
    margin: 0;
  }

  .about-story-card h2 {
    margin: 0;
    font-size: var(--h5-display-semibold-size);
  }

  .about-story-card p {
    grid-column: 1 / -1;
  }

  .about-window-grid {
    padding-top: 72px;
  }

  .about-window-grid::before {
    top: 44px;
  }

  .store-controls,
  .store-show,
  .store-sort {
    width: 100%;
  }

  .store-show {
    justify-content: space-between;
  }

  .store-sort select {
    flex: 1;
  }

  .detail-content-grid,
  .detail-spec-table,
  .detail-related-grid {
    grid-template-columns: 1fr;
  }

  .detail-content-grid {
    width: min(100% - 32px, 620px);
    margin-right: auto;
    margin-left: auto;
  }

  .detail-info-card {
    padding: 20px 16px;
  }

  .detail-info-card h2 {
    font-size: var(--h5-title-medium-size);
    line-height: var(--h5-headline-medium-line-height);
  }

  .detail-info-card ul {
    gap: 8px;
    margin-top: 12px;
    font-size: var(--h5-body2-regular-size);
  }

  .detail-info-wide .detail-spec-table {
    margin: 14px -16px 0;
  }

  .detail-info-card,
  .detail-info-card:nth-child(2),
  .detail-spec-table div,
  .detail-spec-table div:nth-child(odd) {
    border-right: 0;
  }

  .detail-spec-table div,
  .detail-spec-table div:nth-last-child(-n + 2) {
    grid-template-columns: minmax(132px, 46%) minmax(0, 1fr);
    border-bottom: 1px solid #edf0f3;
  }

  .detail-spec-table dt,
  .detail-spec-table dd {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 12px 14px;
    font-size: var(--h5-caption-regular-size);
  }

  .detail-spec-table dt {
    background: #f8fafc;
    color: #8a93a3;
    font-weight: var(--h5-semibold-weight);
  }

  .detail-spec-table dd {
    color: #172033;
    font-weight: var(--h5-semibold-weight);
  }

  .detail-spec-table div:last-child {
    border-bottom: 0;
  }

  .detail-inquiry-panel {
    align-items: flex-start;
    flex-direction: column;
    width: min(100% - 40px, 620px);
    margin: 0 auto 20px;
    padding: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0;
  }

  .site-footer {
    background: #202527;
  }

  .site-footer .container {
    width: 100%;
  }

  .footer-brand-panel,
  .footer-menu-panel,
  .footer-support-panel,
  .footer-newsletter-panel {
    padding: 0;
  }

  .footer-brand-panel {
    display: none;
  }

  .footer-menu-panel,
  .footer-support-panel,
  .footer-newsletter-panel {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-logo img {
    width: 34px;
    max-height: 34px;
    object-fit: contain;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-menu-panel > span,
  .footer-support-panel > span,
  .footer-newsletter-panel > h2 {
    display: none;
  }

  .footer-accordion-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    border: 0;
    background: transparent;
    padding: 0 16px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-body1-regular-line-height);
    text-align: left;
  }

  .footer-accordion-toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1.5px solid rgba(255, 255, 255, 0.72);
    border-right: 1.5px solid rgba(255, 255, 255, 0.72);
    transform: rotate(135deg);
    transition: transform 160ms ease;
  }

  .footer-accordion-section.is-open .footer-accordion-toggle::after {
    transform: rotate(-45deg);
  }

  .footer-newsletter-panel .footer-accordion-toggle {
    cursor: default;
  }

  .footer-newsletter-panel .footer-accordion-toggle::after {
    content: none;
  }

  .footer-menu-panel a,
  .footer-support-panel a,
  .footer-newsletter-panel p,
  .footer-newsletter,
  .footer-socials {
    display: none;
  }

  .footer-accordion-section.is-open a {
    display: block;
    min-height: 50px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.78);
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: 50px;
  }

  .footer-accordion-section.is-open .footer-newsletter,
  .footer-accordion-section.is-open .footer-socials {
    display: flex;
  }

  .footer-newsletter-panel.is-open .footer-newsletter {
    display: grid;
  }

  .footer-newsletter-panel.is-open p {
    display: block;
    max-width: none;
    margin: 0;
    padding: 0 16px 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--h5-body1-regular-size);
    line-height: var(--h5-body1-regular-line-height);
  }

.footer-newsletter {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 41px;
  width: calc(100% - 32px);
  margin: 0 16px 16px;
}

.footer-newsletter input {
  padding: 0 16px;
  font-size: var(--h5-body2-regular-size);
}

.footer-newsletter button {
  min-height: 41px;
  padding: 0 18px;
  font-size: var(--h5-body2-regular-size);
}

  .footer-socials {
    display: grid;
    grid-template-columns: repeat(6, auto);
    justify-content: center;
    gap: 18px;
    margin: 0 auto;
    padding: 0 16px 18px;
  }

  .footer-bottom {
    min-height: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px;
    font-size: var(--h5-caption-regular-size);
  }

  .section-title {
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-title::after {
    display: none;
  }

  .section-learn-more {
    display: none;
  }

  .category-card {
    cursor: pointer;
    min-height: 156px;
    padding: 24px;
  }

  .fs-catalog-section {
    display: none;
  }

  .fs-category-tabs {
    display: none;
  }

  .fs-carousel-dots {
    display: none;
  }

  .fs-category-tab {
    min-width: 0;
    min-height: 86px;
    font-size: var(--h5-caption-regular-size);
  }

  .fs-tab-icon {
    width: 46px;
    height: 42px;
  }

  .fs-category-panel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }

  .fs-family-visual {
    height: 118px;
  }

  .fs-family-content {
    min-height: 128px;
    padding: 18px 12px 20px;
  }

  .fs-product-family-card-title-only .fs-family-content {
    display: grid;
    min-height: 124px;
    align-items: stretch;
  }

  .fs-family-title-list {
    width: 100%;
    height: 100%;
    gap: 8px;
    grid-auto-rows: 1fr;
    justify-items: stretch;
  }

  .fs-family-title-link {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #fafafa;
    padding: 9px 28px 9px 12px;
    color: #333333;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    text-align: left;
  }

  .fs-family-title-link::after {
    content: ">";
    position: absolute;
    right: 12px;
    color: #8a8a8a;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-display-semibold-line-height);
  }

  .fs-family-content h3 {
    font-size: var(--h5-body1-regular-size);
  }

  .fs-family-visual {
    height: 118px;
  }

  .fs-family-content {
    min-height: 128px;
    padding: 18px 12px 20px;
  }

  .featured-products-section {
    padding: 44px 0 52px;
  }

  .featured-products-section h2 {
    margin-bottom: 22px;
  }

  .featured-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .featured-product-visual {
    height: 124px;
  }

  .featured-product-copy {
    min-height: 132px;
    padding: 16px 12px 18px;
  }

  .featured-product-copy h3 {
    margin-bottom: 8px;
    font-size: var(--h5-caption-regular-size);
    min-height: calc(var(--h5-body1-regular-line-height) * 2);
  }

  .featured-product-copy p {
    min-height: 2.8em;
    max-height: 2.8em;
    font-size: var(--h5-caption-regular-size);
    line-height: var(--h5-body1-regular-line-height);
    -webkit-line-clamp: 2;
  }

  .featured-learn-more {
    width: 100%;
    min-height: 38px;
    gap: 8px;
    margin-top: 16px;
    padding: 0 12px;
    font-size: var(--h5-caption-regular-size);
  }

  .featured-learn-more i {
    width: 8px;
    height: 8px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  .about-window-card img {
    height: 138px;
  }

  .about-window-card img.about-window-icon {
    top: 53px;
    width: 32px !important;
    height: 32px !important;
  }

  .about-window-card:nth-child(-n + 4)::before {
    height: 138px;
  }

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

  .catalog-category-nav {
    padding: 10px;
  }

  .catalog-category-button {
    min-height: 42px;
    border: 1px solid #edf0f3;
    padding: 0 10px;
    gap: 6px;
    font-size: var(--h5-caption-regular-size);
    line-height: var(--h5-headline-medium-line-height);
  }

  .catalog-category-button:last-child {
    border-bottom: 1px solid #edf0f3;
  }

  .catalog-category-button small {
    font-size: var(--h5-caption-regular-size);
  }

  .sidebar-block + .sidebar-block {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }
}

.account-page {
  background: #f5f7fa;
}

.account-shell {
  padding: 42px 0 72px;
}

.account-layout {
  display: grid;
  grid-template-columns: 282px minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.account-sidebar,
.account-card,
.account-welcome {
  border: 1px solid #e1e5eb;
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.06);
}

.account-sidebar {
  position: sticky;
  top: 94px;
}

.account-profile {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #e5e8ed;
  padding: 22px;
}

.account-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: #174a97;
  color: #ffffff;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.account-profile strong,
.account-profile span {
  display: block;
}

.account-profile strong {
  color: var(--ink);
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-headline-medium-line-height);
}

.account-profile span {
  margin-top: 4px;
  overflow: hidden;
  color: #6b7280;
  font-size: var(--h5-caption-regular-size);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-menu {
  display: grid;
  padding: 10px;
}

.account-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-left: 3px solid transparent;
  padding: 0 16px;
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.account-menu a:hover,
.account-menu a.is-active {
  border-color: var(--red);
  background: #fff1f1;
  color: var(--red);
}

.account-main {
  min-width: 0;
}

.account-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 22px;
  padding: clamp(28px, 4vw, 42px);
}

.account-welcome h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
  letter-spacing: 0;
}

.account-welcome p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.account-stats article {
  border: 1px solid #e1e5eb;
  background: #ffffff;
  padding: 22px;
}

.account-stats span,
.account-stats strong {
  display: block;
}

.account-stats span {
  color: #6b7280;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-transform: uppercase;
}

.account-stats strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.account-card {
  min-height: 214px;
  padding: 26px;
}

.account-card-wide {
  grid-column: 1 / -1;
}

.account-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.account-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: var(--h5-title-medium-size);
  line-height: var(--h5-headline-medium-line-height);
}

.account-card-head a {
  color: #174a97;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.account-card-head a:hover {
  color: var(--red);
}

.account-card p {
  margin: 0;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.account-addresses-panel {
  display: grid;
  gap: 30px;
  padding: 30px;
}

.account-addresses-panel[hidden] {
  display: none;
}

.address-section h2 {
  margin: 0 0 18px;
  border-radius: 4px;
  background: #f7f7f7;
  padding: 10px 20px;
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
}

.address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.address-card,
.address-add-card {
  position: relative;
  min-height: 188px;
  border: 1px solid #dfe5ee;
  border-radius: 6px;
  background: #ffffff;
}

.address-card {
  padding: 36px 44px 34px 18px;
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.address-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-medium-weight);
}

.address-card p {
  margin: 0;
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.address-card p:nth-of-type(3) {
  margin-top: 18px;
}

.address-default {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 6px;
  background: #e5e7eb;
  padding: 4px 6px;
  color: #111111;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.address-edit {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
}

.address-edit::before {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 9px;
  height: 9px;
  border: 1.5px solid currentColor;
}

.address-edit::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 9px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.address-add-card {
  display: grid;
  place-items: center;
  color: #9ca3af;
  cursor: pointer;
  font-size: var(--h5-body1-regular-size);
}

.address-add-card:hover {
  border-color: #174a97;
  color: #174a97;
}

.address-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  overflow-y: auto;
  display: grid;
  place-items: center;
  background: rgba(17, 24, 39, 0.48);
  padding: 36px 20px;
}

.address-modal[hidden] {
  display: none;
}

.address-modal-panel {
  position: relative;
  width: min(1274px, calc(100vw - 80px));
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  border-radius: 4px;
  background: #ffffff;
  padding: 20px 20px 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
}

.address-modal-panel h2 {
  margin: 0 0 18px;
  color: #20242a;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-medium-weight);
}

.address-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #8b929d;
  cursor: pointer;
}

.address-modal-close::before,
.address-modal-close::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 1px;
  background: currentColor;
}

.address-modal-close::before {
  transform: rotate(45deg);
}

.address-modal-close::after {
  transform: rotate(-45deg);
}

.address-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.address-form label {
  display: grid;
  gap: 8px;
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-medium-weight);
}

.address-form em {
  color: var(--red);
  font-style: normal;
}

.address-form input,
.address-form select {
  width: 100%;
  min-width: 0;
  height: 32px;
  border: 1px solid #d7dde6;
  border-radius: 4px;
  background: #ffffff;
  padding: 0 10px;
  color: #111827;
  font-size: var(--h5-body2-regular-size);
  outline: 0;
}

.address-form input::placeholder {
  color: #9ca3af;
}

.address-form input:focus,
.address-form select:focus {
  border-color: #174a97;
}

.address-form .is-invalid,
.address-form .phone-field:has(.is-invalid) select {
  border-color: #ff4d4f;
}

.address-form-error {
  margin-top: -4px;
  color: #ff4d4f;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-headline-medium-line-height);
}

.address-form-wide {
  grid-column: 1 / -1;
}

.phone-field {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
}

.phone-field select {
  border-radius: 4px 0 0 4px;
  background: #f8fafc;
}

.phone-field input {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.address-form-footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.address-form .address-form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: var(--h5-caption-regular-size);
  white-space: nowrap;
}

.address-form .address-form-check input {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  accent-color: #174a97;
}

.address-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.address-form-actions button {
  width: clamp(128px, 34%, 180px);
  min-height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.address-form-cancel {
  border: 1px solid #d7dde6;
  background: #ffffff;
  color: #555b66;
}

.address-form-save {
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
}

.account-table {
  display: grid;
  border: 1px solid #e5e8ed;
}

.account-table div {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 130px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #e5e8ed;
  padding: 16px 18px;
  color: #4b5563;
  font-size: var(--h5-body1-regular-size);
}

.account-table div:last-child {
  border-bottom: 0;
}

.account-table span:first-child,
.account-table span:last-child {
  color: var(--ink);
  font-weight: var(--h5-semibold-weight);
}

.account-table span:last-child {
  justify-self: start;
  border-radius: 999px;
  background: #f2f4f7;
  padding: 6px 12px;
  color: #174a97;
  font-size: var(--h5-caption-regular-size);
}

.account-progress {
  height: 8px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8ecf2;
}

.account-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #174a97, var(--red));
}

.saved-product-list {
  display: grid;
  gap: 10px;
}

.saved-product-list a {
  border: 1px solid #e1e5eb;
  padding: 13px 14px;
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.saved-product-list a:hover {
  border-color: #174a97;
  color: #174a97;
  transform: translateX(3px);
}

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

  .account-sidebar {
    position: static;
  }

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

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

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

  .address-grid {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .account-shell {
    padding: 28px 0 calc(150px + env(safe-area-inset-bottom));
  }

  .account-profile,
  .account-card,
  .account-welcome {
    padding: 20px;
  }

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

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

  .account-table div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .account-addresses-panel {
    padding: 20px;
  }

  .account-profile-panel {
    overflow: hidden;
    padding-bottom: calc(150px + env(safe-area-inset-bottom));
  }

  .account-profile-section h2 {
    min-width: 0;
    padding: 0 16px;
    overflow-wrap: anywhere;
  }

  .account-details-form {
    width: 100%;
    margin: 0;
    gap: 22px;
    justify-items: stretch;
  }

  .account-details-field,
  .account-email-row {
    min-width: 0;
  }

  .account-email-row {
    align-items: stretch;
    flex-direction: column;
  }

  .account-details-field input,
  .account-details-field input:disabled {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .account-email-row button {
    align-self: flex-start;
  }

  .account-save-button {
    justify-self: flex-start;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }

  .address-card,
  .address-add-card {
    min-height: 164px;
  }

  .address-form {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .address-modal {
    align-items: start;
    padding: 18px 12px;
  }

  .address-modal-panel {
    width: 100%;
    max-height: calc(100vh - 36px);
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
    scroll-padding-bottom: calc(132px + env(safe-area-inset-bottom));
  }

  .address-form-footer {
    align-items: stretch;
    flex-direction: column;
  }
}

.account-orders-panel {
  padding: 28px 30px 24px;
}

.order-tabs {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  overflow-x: auto;
  border-bottom: 1px solid transparent;
  padding: 0 0 22px;
  scrollbar-width: none;
}

.order-tabs::-webkit-scrollbar {
  display: none;
}

.order-tabs button {
  position: relative;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  padding: 0 0 9px;
  color: #111827;
  cursor: pointer;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.order-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: transparent;
  transition: background 160ms ease;
}

.order-tabs button:hover,
.order-tabs button.is-active {
  color: #f97316;
}

.order-tabs button.is-active::after {
  background: #f97316;
}

.orders-table {
  min-width: 760px;
  border: 0;
}

.orders-table-head,
.orders-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 0.9fr 0.7fr 0.9fr;
  align-items: center;
  gap: 18px;
}

.orders-table-head {
  border-bottom: 1px solid #e5e8ed;
  padding: 0 12px 14px;
  color: #111827;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.orders-table-body {
  border-bottom: 1px solid #e5e8ed;
}

.orders-row {
  min-height: 58px;
  border-bottom: 1px solid #eef1f5;
  padding: 0 12px;
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
}

.orders-row:last-of-type {
  border-bottom: 0;
}

.orders-row span:first-child {
  color: var(--ink);
  font-weight: var(--h5-semibold-weight);
}

.orders-row mark {
  border-radius: 999px;
  background: #f3f4f6;
  padding: 6px 12px;
  color: #174a97;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  white-space: nowrap;
}

.orders-row a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  border-radius: 999px;
  background: #f3f4f6;
  padding: 6px 14px;
  color: #174a97;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
  white-space: nowrap;
}

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

.orders-empty {
  display: grid;
  min-height: 72px;
  place-items: center;
  border-bottom: 1px solid #e5e8ed;
  color: #8a9099;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.orders-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding-top: 22px;
  color: #f97316;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.orders-pagination button {
  position: relative;
  width: 18px;
  height: 18px;
  border: 0;
  background: transparent;
  color: #c7ccd4;
}

.orders-pagination button::before {
  content: "";
  position: absolute;
  top: 5px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.orders-pagination button:first-child::before {
  left: 6px;
  transform: rotate(-135deg);
}

.orders-pagination button:last-child::before {
  right: 6px;
  transform: rotate(45deg);
}

@media (max-width: 860px) {
  .account-orders-panel {
    overflow-x: auto;
    padding: 22px;
  }

  .checkout-steps {
    gap: 10px;
  }

  .checkout-step:not(:last-child)::after {
    display: none;
  }

  .checkout-card {
    padding: 22px;
  }

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

  .checkout-tabs button {
    border-right: 0;
    border-bottom: 1px solid rgba(211, 0, 0, 0.25);
  }

  .checkout-tabs button:last-child {
    border-bottom: 0;
  }

  .checkout-product {
    grid-template-columns: 54px minmax(0, 1fr) 28px;
    gap: 14px;
  }

  .checkout-quantity,
  .checkout-multiply,
  .checkout-product strong {
    grid-column: 2 / 3;
  }

  .checkout-delete {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

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

  .account-details-form {
    width: 100%;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;
    gap: 22px;
    justify-items: stretch;
  }

  .account-profile-panel {
    overflow: hidden;
  }

  .account-profile-section h2 {
    padding: 0 16px;
    overflow-wrap: anywhere;
  }

  .account-details-field,
  .account-email-row {
    min-width: 0;
  }

  .account-email-row {
    align-items: stretch;
    flex-direction: column;
  }

  .account-details-field input,
  .account-details-field input:disabled {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .account-email-row button {
    align-self: flex-start;
  }

  .account-save-button {
    justify-self: flex-start;
  }
}

@media (max-width: 680px) {
  .checkout-hero {
    padding: 28px 16px 22px;
  }

  .checkout-steps {
    max-width: 340px;
    gap: 0;
  }

  .checkout-step {
    gap: 7px;
  }

  .checkout-step:not(:last-child)::after {
    display: block;
    top: 10px;
    left: calc(50% + 22px);
    width: calc(100% - 44px);
    background: #d9d9d9;
  }

  .checkout-step span {
    width: 22px;
    height: 22px;
    border-color: #e2e5e9;
    color: #a9adb5;
    font-size: var(--h5-caption-regular-size);
  }

  .checkout-step strong {
    max-width: 86px;
    color: #666b73;
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-medium-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .checkout-step.is-active span {
    border-color: var(--red);
    background: var(--red);
  }

  .checkout-step.is-active strong {
    color: #111111;
    font-weight: var(--h5-semibold-weight);
  }

  .checkout-shell {
    padding: 12px 0 18px;
    background: #f5f5f5;
  }

  .checkout-container {
    border-radius: 0;
    background: #ffffff;
  }

  .checkout-card {
    padding: 0 16px 18px;
  }

  .checkout-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    overflow: visible;
    border: 0;
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
    padding: 15px 0 12px;
  }

  .checkout-tabs::before {
    content: "Shipping Method";
    color: #222222;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .checkout-tabs button {
    display: none;
    min-height: 0;
    border: 0;
    background: transparent;
    color: #333333;
    padding: 0;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .checkout-tabs button.is-active {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: #333333;
  }

  .checkout-tabs button.is-active::after {
    content: "";
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-top: 1.5px solid #8c8c8c;
    border-right: 1.5px solid #8c8c8c;
    transform: rotate(45deg);
  }

  .checkout-section {
    margin-top: 20px;
  }

  .checkout-card > .checkout-section:first-of-type > h2 {
    display: none;
  }

  .checkout-products {
    border-top: 0;
  }

  .checkout-product {
    position: relative;
    grid-template-columns: 18px 54px minmax(0, 1fr) 24px;
    gap: 6px 12px;
    align-items: start;
    border-bottom: 1px solid #dddddd;
    padding: 18px 0;
  }

  .checkout-product::before {
    content: "";
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: center;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    background:
      linear-gradient(var(--red), var(--red)) 3px 3px / 6px 6px no-repeat,
      transparent;
    box-shadow: inset 0 0 0 1.5px var(--red);
  }

  .checkout-product img {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 54px;
    height: 64px;
  }

  .checkout-product-info {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
  }

  .checkout-product-info h3 {
    overflow: hidden;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-headline-medium-line-height);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .checkout-product-info span {
    margin-top: 4px;
    font-size: var(--h5-caption-regular-size);
  }

  .checkout-delete {
    grid-column: 4;
    grid-row: 1 / span 3;
    justify-self: end;
    width: 30px;
    height: 30px;
  }

  .checkout-delete svg {
    width: 20px;
    height: 20px;
  }

  .checkout-quantity {
    grid-column: 3;
    grid-row: 3;
    width: 108px;
    height: 32px;
    align-self: end;
    overflow: hidden;
    gap: 0;
    border: 1px solid #d8dee7;
    border-radius: 4px;
  }

  .checkout-quantity button,
  .checkout-quantity span {
    width: 36px;
    height: 32px;
    min-height: 32px;
    flex: 0 0 36px;
    border-radius: 0;
    background: #ffffff;
    color: #4b5563;
    font-size: var(--h5-body2-regular-size);
  }

  .checkout-quantity button {
    border: 0;
  }

  .checkout-quantity button:first-child {
    border-right: 1px solid #d8dee7;
  }

  .checkout-quantity button:last-child {
    border-left: 1px solid #d8dee7;
  }

  .checkout-multiply {
    display: none;
  }

  .checkout-product strong {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    color: var(--red);
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-medium-weight);
    white-space: nowrap;
  }

  .checkout-payment-product {
    grid-template-columns: 54px minmax(0, 1fr) 30px;
    gap: 6px 12px;
    align-items: start;
    padding: 18px 0;
  }

  .checkout-payment-product img {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 54px;
    height: 64px;
  }

  .checkout-payment-product-info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .checkout-payment-product-info strong {
    overflow: hidden;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-headline-medium-line-height);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .checkout-payment-product .checkout-payment-product-price {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    color: var(--red);
    font-size: var(--h5-caption-regular-size);
    text-align: left;
  }

  .checkout-payment-product .checkout-quantity {
    grid-column: 2;
    grid-row: 3;
  }

  .checkout-payment-product .checkout-delete {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

  .checkout-pickup-row {
    grid-template-columns: 54px minmax(0, 1fr) 30px;
    gap: 6px 12px;
    align-items: start;
  }

  .checkout-pickup-row img {
    grid-column: 1;
    grid-row: 1 / span 3;
    width: 54px;
    height: 64px;
  }

  .checkout-pickup-row .checkout-product-info {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .checkout-pickup-row .checkout-product-info h3 {
    overflow: hidden;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-headline-medium-line-height);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .checkout-pickup-row > strong {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    color: var(--red);
    font-size: var(--h5-caption-regular-size);
    text-align: left;
  }

  .checkout-pickup-row .checkout-quantity {
    grid-column: 2;
    grid-row: 3;
  }

  .checkout-pickup-row .checkout-delete {
    grid-column: 3;
    grid-row: 1 / span 3;
  }

  .checkout-pickup-location {
    margin: 14px 0 0 66px;
  }

  .checkout-terms-panel {
    margin: 14px -16px -12px;
    padding: 20px 16px 18px;
  }

  .checkout-submit-row {
    grid-template-columns: 1fr auto;
    max-width: none;
    margin: 0 auto;
    padding: 14px 0 30px;
  }

  .checkout-submit-row.has-back {
    grid-template-columns: repeat(2, minmax(0, 172px));
    justify-content: center;
    gap: 14px;
  }

  .checkout-submit-row button,
  .checkout-submit-row.has-back button,
  .checkout-submit-row button {
    justify-self: center;
    width: min(100%, 320px);
  }

}

.account-grid.is-single {
  grid-template-columns: 1fr;
}

.account-grid.is-single .account-card {
  grid-column: 1 / -1;
  min-height: 360px;
}

.account-settings-list {
  display: grid;
  gap: 12px;
}

.account-settings-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #e5e8ed;
  padding: 16px 18px;
}

.account-settings-list span {
  color: #6b7280;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.account-settings-list strong {
  color: var(--ink);
  font-size: var(--h5-body1-regular-size);
}

.account-profile-panel {
  display: grid;
  gap: 36px;
  padding: 0 0 54px;
  background: #ffffff;
}

.account-profile-panel[hidden] {
  display: none;
}

.account-profile-section {
  display: grid;
  gap: 24px;
}

.account-profile-section h2 {
  display: flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 0 22px;
  background: #f7f7f7;
  color: #111111;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.account-details-form {
  width: min(640px, calc(100% - 44px));
  margin-left: 138px;
  display: grid;
  gap: 28px;
}

.account-details-field {
  display: grid;
  gap: 10px;
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-medium-weight);
}

.account-details-field em {
  color: var(--red);
  font-style: normal;
}

.account-details-field input {
  width: 100%;
  height: 42px;
  border: 1px solid #d7dde6;
  border-radius: 4px;
  background: #ffffff;
  padding: 0 12px;
  color: #111827;
  font-size: var(--h5-body2-regular-size);
  outline: 0;
}

.account-details-field input::placeholder {
  color: #9ca3af;
}

.account-details-field input:focus {
  border-color: #174a97;
}

.account-details-field input:disabled {
  width: 176px;
  background: #f5f7fa;
  color: #9ca3af;
  cursor: not-allowed;
}

.account-details-field small {
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.account-email-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-email-row button {
  height: 36px;
  min-width: 76px;
  border: 1px solid #d7dde6;
  border-radius: 4px;
  background: #ffffff;
  color: #555b66;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
}

.account-save-button {
  justify-self: start;
  min-width: 126px;
  height: 32px;
  border: 1px solid #111111;
  border-radius: 4px;
  background: #111111;
  color: #ffffff;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  cursor: pointer;
}

@media (max-width: 860px) {
  .account-profile-panel {
    overflow: hidden;
  }

  .account-profile-section h2 {
    padding: 0 16px;
    overflow-wrap: anywhere;
    text-align: left;
  }

  .account-details-form {
    width: 100%;
    margin: 0;
    padding: 0 16px;
    box-sizing: border-box;
    gap: 22px;
    justify-items: stretch;
  }

  .account-details-field,
  .account-email-row {
    min-width: 0;
    text-align: left;
  }

  .account-email-row {
    align-items: stretch;
    flex-direction: column;
  }

  .account-details-field input,
  .account-details-field input:disabled {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .account-email-row button,
  .account-save-button {
    justify-self: flex-start;
    align-self: flex-start;
  }
}

.account-wallet.account-welcome {
  display: block;
  overflow: hidden;
  border: 0;
  background: #ffffff;
  box-shadow: none;
  padding: 0;
}

.account-wallet h1 {
  max-width: none;
  margin: 0;
  padding: 22px 32px 34px;
  color: #000000;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
}

.wallet-row {
  position: relative;
  display: grid;
  grid-template-columns: 190px repeat(3, minmax(0, 1fr));
  align-items: center;
  min-height: 138px;
  border-top: 32px solid #ffffff;
  background: #f7f7f7;
  padding: 0 34px;
}

.wallet-currency {
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
}

.wallet-currency span {
  position: absolute;
  left: -26px;
  top: -20px;
  color: rgba(18, 201, 131, 0.12);
  font-size: var(--h5-display-semibold-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
  transform: rotate(-22deg);
}

.wallet-row-cny .wallet-currency span {
  color: rgba(228, 28, 94, 0.08);
}

.wallet-currency strong {
  position: relative;
  z-index: 1;
  color: #000000;
  font-size: var(--h5-headline-medium-size);
  font-weight: var(--h5-semibold-weight);
}

.wallet-metric span,
.wallet-metric strong {
  display: block;
  color: #000000;
}

.wallet-metric span {
  margin-bottom: 18px;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.wallet-metric strong {
  font-size: var(--h5-headline-medium-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-display-semibold-line-height);
}

.wallet-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 48px 32px 30px;
  background: #ffffff;
}

.wallet-footer strong {
  color: #000000;
  font-size: var(--h5-display-semibold-size);
  font-weight: var(--h5-semibold-weight);
}

.wallet-footer span {
  color: #7a7a7a;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  letter-spacing: 0.02em;
}

@media (max-width: 920px) {
  .wallet-row {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 28px;
  }

  .wallet-currency {
    min-height: 64px;
  }

  .wallet-currency span {
    font-size: var(--h5-display-semibold-size);
  }

  .wallet-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.account-orders-panel .orders-table-body {
  min-height: 62px;
}

.account-orders-panel .orders-empty {
  min-height: 62px;
}

.account-page [hidden] {
  display: none !important;
}

.auth-page {
  background: #f5f7fa;
}

.auth-shell {
  display: grid;
  min-height: calc(100vh - 71px);
  place-items: center;
  padding: 54px 20px 72px;
}

.auth-card {
  width: min(100%, 460px);
  border: 1px solid #e1e5eb;
  border-radius: 6px;
  background: #ffffff;
  padding: 34px;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.auth-card-wide {
  width: min(100%, 560px);
}

.auth-heading {
  margin-bottom: 26px;
  text-align: center;
}

.auth-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: var(--h5-display-semibold-size);
  line-height: var(--h5-display-semibold-line-height);
}

.auth-heading p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.auth-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d7dde6;
  border-radius: 4px;
  padding: 0 12px;
  color: var(--ink);
  font-size: var(--h5-body2-regular-size);
  outline: 0;
}

.auth-form input:focus {
  border-color: #174a97;
}

.auth-row,
.auth-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-check {
  display: grid;
  justify-content: flex-start;
  color: #4b5563;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  grid-template-columns: auto minmax(0, 1fr);
}

.auth-check input {
  width: 14px;
  min-height: 14px;
  accent-color: var(--red);
}

.auth-row a,
.auth-switch a {
  color: #174a97;
  font-weight: var(--h5-semibold-weight);
}

.auth-row a:hover,
.auth-switch a:hover {
  color: var(--red);
}

.auth-primary {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.auth-primary:hover {
  background: var(--red-dark);
}

.auth-switch {
  margin: 24px 0 0;
  color: #4b5563;
  font-size: var(--h5-body2-regular-size);
  text-align: center;
}

.auth-code-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
}

.auth-code-field input {
  border-radius: 4px 0 0 4px;
}

.auth-code-field button {
  border: 1px solid #d7dde6;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background: #f8fafc;
  color: #174a97;
  cursor: pointer;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.register-page,
.login-page,
.forgot-page {
  background: #e9edf5;
}

.register-page .site-header,
.login-page .site-header,
.forgot-page .site-header {
  display: none;
}

.register-page .auth-shell,
.login-page .auth-shell,
.forgot-page .auth-shell {
  position: relative;
  min-height: 100vh;
  place-items: start center;
  padding: 90px 4px 0;
  background: linear-gradient(rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.68)) top / 100% 92px no-repeat, #e9edf5;
}

.register-page .auth-shell,
.forgot-page .auth-shell {
  padding-right: 0;
  padding-left: 0;
}

.register-page .auth-close,
.login-page .auth-close,
.forgot-page .auth-close {
  position: absolute;
  top: 28px;
  right: 36px;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}

.register-page .auth-close span,
.login-page .auth-close span,
.forgot-page .auth-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.register-page .auth-close span:first-child,
.login-page .auth-close span:first-child,
.forgot-page .auth-close span:first-child {
  transform: rotate(45deg);
}

.register-page .auth-close span:last-child,
.login-page .auth-close span:last-child,
.forgot-page .auth-close span:last-child {
  transform: rotate(-45deg);
}

.register-page .auth-card,
.login-page .auth-card,
.forgot-page .auth-card {
  width: min(100%, 750px);
  border: 1px solid #d7dde6;
  border-radius: 16px 16px 0 0;
  padding: 70px 50px 76px;
  box-shadow: none;
}

.register-page .auth-heading,
.forgot-page .auth-heading {
  margin-bottom: 48px;
}

.forgot-page .auth-heading {
  margin-bottom: 28px;
}

.register-page .auth-heading h1,
.forgot-page .auth-heading h1 {
  color: #202124;
  font-size: var(--h5-headline-medium-size);
  font-weight: var(--h5-medium-weight);
  line-height: var(--h5-headline-medium-line-height);
  letter-spacing: 0;
}

.register-page .auth-form,
.forgot-page .auth-form {
  gap: 36px;
}

.forgot-page .auth-form {
  gap: 20px;
}

.register-page .auth-form {
  gap: 20px;
}

.login-page .auth-form {
  gap: 20px;
}

.register-page .auth-field,
.login-page .auth-field,
.forgot-page .auth-field {
  width: 325px;
  max-width: 100%;
  gap: 0;
  justify-self: center;
}

.register-page .auth-form input,
.login-page .auth-form input,
.forgot-page .auth-form input {
  min-height: 82px;
  border-color: #d8d8d8;
  border-radius: 6px;
  padding: 0 10px;
  color: #202124;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-regular-weight);
  line-height: var(--h5-body1-regular-line-height);
}

.register-page .auth-form input::placeholder,
.login-page .auth-form input::placeholder,
.forgot-page .auth-form input::placeholder {
  color: #a8adb7;
  font-weight: var(--h5-regular-weight);
}

.register-page .auth-form input:focus,
.login-page .auth-form input:focus,
.forgot-page .auth-form input:focus {
  border-color: var(--logo-red);
}

.register-page .auth-code-field,
.forgot-page .auth-code-field {
  display: grid;
  width: 325px;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) 200px;
  justify-self: center;
}

.register-page .auth-code-field {
  grid-template-columns: minmax(0, 1fr) 114px;
}

.forgot-page .auth-code-field {
  grid-template-columns: minmax(0, 1fr) 114px;
}

.register-page .auth-code-field input,
.forgot-page .auth-code-field input {
  border-radius: 6px 0 0 6px;
}

.register-page .auth-code-field button,
.forgot-page .auth-code-field button {
  min-height: 82px;
  border: 1px solid #d8d8d8;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #f8f9fc;
  color: #000000;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-medium-weight);
  line-height: var(--h5-body1-regular-line-height);
}

.forgot-page .auth-form input,
.forgot-page .auth-code-field button {
  min-height: 40px;
  height: 40px;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body2-regular-line-height);
}

.register-page .auth-form input,
.register-page .auth-code-field button {
  min-height: 40px;
  height: 40px;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body2-regular-line-height);
}

.register-page .auth-password-field,
.login-page .auth-password-field,
.forgot-page .auth-password-field {
  position: relative;
  display: block;
}

.register-page .auth-password-field input,
.login-page .auth-password-field input,
.forgot-page .auth-password-field input {
  padding-right: 74px;
  padding-left: 10px;
}

.register-page .auth-password-field i,
.login-page .auth-password-field i,
.forgot-page .auth-password-field i {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 14px;
  height: 14px;
  border: 2px solid #a8adb7;
  border-radius: 10px 10px 10px 10px / 8px 8px 8px 8px;
  transform: translateY(-50%) rotate(45deg);
}

.register-page .auth-password-field i::before,
.login-page .auth-password-field i::before,
.forgot-page .auth-password-field i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border: 0;
  border-radius: 50%;
  background: #a8adb7;
  transform: translate(-50%, -50%);
}

.register-page .auth-password-field i::after,
.login-page .auth-password-field i::after,
.forgot-page .auth-password-field i::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.9;
}

.register-page .auth-check,
.login-page .auth-check {
  align-items: start;
  gap: 16px;
  color: #60636a;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-medium-weight);
  line-height: var(--h5-body1-regular-line-height);
}

.register-page .auth-check input,
.login-page .auth-check input {
  appearance: none;
  display: grid;
  width: 14px;
  height: 14px;
  min-height: 14px;
  flex: 0 0 14px;
  place-items: center;
  border: 0;
  border-radius: 3px;
  background: var(--logo-red);
}

.register-page .auth-check input::after,
.login-page .auth-check input::after {
  content: "";
  width: 7px;
  height: 4px;
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg) translate(1px, -1px);
}

.register-page .auth-check input:not(:checked),
.login-page .auth-check input:not(:checked) {
  border: 2px solid #9ca3af;
  background: #ffffff;
}

.register-page .auth-check input:not(:checked)::after,
.login-page .auth-check input:not(:checked)::after {
  display: none;
}

.register-page .auth-check input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-basis: 20px;
  border-radius: 4px;
}

.register-page .auth-check input::after {
  width: 10px;
  height: 6px;
  border-width: 0 0 3px 3px;
}

.register-page .auth-primary,
.login-page .auth-primary,
.forgot-page .auth-primary {
  width: 325px;
  max-width: 100%;
  min-height: 80px;
  margin-top: 36px;
  border-radius: 6px;
  background: var(--logo-red);
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-body1-regular-line-height);
}

.forgot-page .auth-primary {
  min-height: 40px;
  height: 40px;
  margin-top: 0;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body2-regular-line-height);
}

.register-page .auth-primary {
  min-height: 40px;
  height: 40px;
  font-size: var(--h5-body2-regular-size);
  line-height: var(--h5-body2-regular-line-height);
}

.register-page .auth-primary:hover,
.login-page .auth-primary:hover,
.forgot-page .auth-primary:hover {
  background: var(--logo-red-dark);
}

.register-page .auth-switch,
.login-page .auth-switch,
.forgot-page .auth-switch {
  margin-top: 56px;
  font-size: var(--h5-body1-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.register-page .auth-switch a,
.login-page .auth-switch a,
.forgot-page .auth-switch a {
  color: var(--logo-red);
  font-weight: var(--h5-regular-weight);
}

.forgot-page .auth-card {
  padding-top: 70px;
}

.register-page .auth-card,
.forgot-page .auth-card {
  width: 100%;
  max-width: none;
}

.forgot-page .auth-switch {
  display: none;
}

.login-page .auth-card {
  padding-top: 94px;
}

.login-page .auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 40px;
}

.login-page .auth-tabs button {
  position: relative;
  border: 0;
  background: transparent;
  color: #626262;
  cursor: pointer;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-medium-weight);
  line-height: var(--h5-body2-regular-line-height);
}

.login-page .auth-tabs button.is-active {
  color: #333333;
  font-weight: var(--h5-semibold-weight);
}

.login-page .auth-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: -24px;
  height: 5px;
  border-radius: 999px;
  background: var(--logo-red);
}

.login-page .auth-heading {
  display: none;
}

.login-page [data-login-panel][hidden] {
  display: none;
}

.login-page .auth-form input,
.login-page .auth-primary {
  min-height: 42px;
}

.login-page .auth-code-field {
  display: grid;
  width: 325px;
  max-width: 100%;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) 114px;
  justify-self: center;
}

.login-page .auth-code-field input {
  min-width: 0;
  border-radius: 6px 0 0 6px;
}

.login-page .auth-code-field button {
  min-height: 42px;
  border: 1px solid #d8d8d8;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #f8f9fc;
  color: #000000;
  cursor: pointer;
  font-size: var(--h5-body2-regular-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-body2-regular-line-height);
}

.login-page .auth-primary {
  margin-top: 10px;
}

.login-page .auth-row {
  align-items: center;
  margin-top: 30px;
}

.login-page .auth-row a {
  color: #626262;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-medium-weight);
  line-height: var(--h5-caption-regular-line-height);
  white-space: nowrap;
}

.login-page .auth-row .auth-check {
  align-items: center;
  column-gap: 4px;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-caption-regular-line-height);
  white-space: nowrap;
}

.auth-modal-overlay .auth-row .auth-check input,
.login-page .auth-row .auth-check input {
  width: 14px;
  max-width: 14px;
  height: 14px;
  min-height: 14px;
  align-self: center;
  flex: 0 0 14px;
  padding: 0;
}

.login-page .auth-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: #9a9a9a;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-caption-regular-line-height);
}

.login-page .auth-divider::before,
.login-page .auth-divider::after {
  content: "";
  height: 1px;
  background: #dedede;
}

.login-page .auth-switch {
  margin-top: 30px;
}

.auth-modal-lock {
  overflow: hidden;
}

.auth-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
  transition:
    background 0.28s ease,
    opacity 0.28s ease;
}

.auth-modal-overlay.is-open {
  background: rgba(0, 0, 0, 0.68);
  opacity: 1;
  pointer-events: auto;
}

.auth-modal-overlay .auth-shell {
  min-height: 100dvh;
  height: 100dvh;
  place-items: end center;
  padding: 24px 0 0;
  background: transparent;
}

.auth-modal-overlay .auth-card {
  width: 100%;
  max-width: 750px;
  height: auto;
  overflow: visible;
}

.auth-modal-overlay.forgot-page .auth-card {
  max-width: none;
}

.auth-modal-overlay.register-page .auth-card {
  max-width: none;
}

.auth-modal-overlay .auth-form {
  justify-items: center;
}

.auth-modal-overlay.login-page .auth-card,
.auth-modal-overlay.register-page .auth-card,
.auth-modal-overlay.forgot-page .auth-card {
  padding-top: 20px;
  padding-right: 24px;
  padding-left: 24px;
}

.auth-modal-overlay.forgot-page .auth-card {
  padding-top: 44px;
  padding-bottom: 44px;
}

.auth-modal-overlay .auth-tabs,
.auth-modal-overlay .auth-row,
.auth-modal-overlay .auth-divider,
.auth-modal-overlay .auth-switch,
.auth-modal-overlay .auth-check {
  width: 325px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.auth-modal-overlay .auth-close {
  position: fixed;
  top: calc(100dvh - var(--auth-modal-panel-height, 600px) - 30px);
  right: max(24px, calc((100vw - 750px) / 2 + 24px));
  border: 0;
  background: transparent;
}

.auth-modal-overlay .auth-close span {
  background: #ffffff;
}

@media (max-width: 640px) {
  .auth-card {
    padding: 24px;
  }

  .auth-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-code-field {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .auth-code-field input,
  .auth-code-field button {
    border: 1px solid #d7dde6;
    border-radius: 4px;
  }

  .login-page .auth-code-field {
    width: 325px;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr) 114px;
    gap: 0;
  }

  .login-page .auth-code-field input {
    min-height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 4px 0 0 4px;
    padding: 0 16px;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-body2-regular-line-height);
  }

  .login-page .auth-code-field button {
    min-height: 42px;
    border: 1px solid #d8d8d8;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    background: #f8f9fc;
    color: #000000;
    font-size: var(--h5-body2-regular-size);
    line-height: var(--h5-body2-regular-line-height);
  }

  .register-page .auth-shell,
  .forgot-page .auth-shell {
    padding: 90px 4px 0;
  }

  .auth-modal-overlay.forgot-page .auth-shell {
    padding: 24px 0 0;
  }

  .auth-modal-overlay.register-page .auth-shell {
    padding: 24px 0 0;
  }

  .register-page .auth-card,
  .forgot-page .auth-card {
    padding: 70px 50px 76px;
  }

  .login-page .auth-card {
    padding: 94px 50px 76px;
  }

  .login-page .auth-row {
    align-items: center;
    flex-direction: row;
  }

  .register-page .auth-code-field,
  .forgot-page .auth-code-field {
    grid-template-columns: minmax(0, 1fr) 200px;
    gap: 0;
  }

  .register-page .auth-code-field {
    grid-template-columns: minmax(0, 1fr) 114px;
  }

  .forgot-page .auth-code-field {
    grid-template-columns: minmax(0, 1fr) 114px;
  }

  .register-page .auth-code-field input,
  .forgot-page .auth-code-field input {
    border-right: 0;
    border-radius: 6px 0 0 6px;
  }

  .register-page .auth-code-field button,
  .forgot-page .auth-code-field button {
    border-left: 1px solid #d8d8d8;
    border-radius: 0 6px 6px 0;
  }

  .forgot-page .auth-form input,
  .forgot-page .auth-code-field button {
    min-height: 40px;
    height: 40px;
  }
}

@media (max-width: 1040px) {
  .shopping-cart-page .cart-page-item {
    position: relative;
  }

  .shopping-cart-page .cart-page-product {
    padding-right: 54px;
    padding-left: 60px;
  }

  .shopping-cart-page .cart-page-product .cart-check,
  .shopping-cart-page .cart-page-delete {
    position: absolute;
    top: 28px;
    width: 28px;
    height: 28px;
    min-height: 28px;
    align-items: center;
    justify-content: center;
  }

  .shopping-cart-page .cart-page-product .cart-check {
    left: 24px;
    z-index: 1;
  }

  .shopping-cart-page .cart-page-delete {
    right: 24px;
  }
}

@media (max-width: 680px) {
  .shopping-cart-page .cart-page-product {
    grid-template-columns: 44px minmax(0, 1fr);
    padding-right: 42px;
    padding-left: 42px;
  }

  .shopping-cart-page .cart-page-product .cart-check,
  .shopping-cart-page .cart-page-delete {
    top: 12px;
  }

  .shopping-cart-page .cart-page-product .cart-check {
    left: 12px;
  }

  .shopping-cart-page .cart-page-delete {
    right: 12px;
  }
}

@media (max-width: 860px) {
  .checkout-page .checkout-product {
    position: relative;
  }

  .checkout-page .checkout-product-info {
    padding-right: 0;
  }

  .checkout-page .checkout-product-info h3 {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .checkout-page .checkout-product::before {
    position: absolute;
    top: 24px;
    left: 0;
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    margin-top: 0;
  }

  .checkout-page .checkout-delete {
    position: absolute;
    top: 18px;
    right: 0;
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    justify-self: auto;
  }

  .checkout-page .checkout-product > strong {
    grid-column: 3;
    grid-row: 2;
    justify-self: start;
    align-self: center;
    margin-top: 0;
    padding-right: 0;
    color: var(--red);
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    white-space: nowrap;
  }
}

.cart-check span {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #cfd6df;
  border-radius: 3px;
  background: #ffffff;
  box-sizing: border-box;
}

.cart-check span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 1px;
  background: transparent;
  transform: translate(-50%, -50%);
}

.cart-check input:checked + span {
  border-color: var(--red);
  background: #ffffff;
  box-shadow: none;
}

.cart-check input:checked + span::after {
  background: var(--red);
}

.cart-page-product .cart-check span {
  width: 18px;
  height: 18px;
}

@media (max-width: 860px) {
  .checkout-page .checkout-product::before {
    top: 23px;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background:
      linear-gradient(var(--red), var(--red)) center / 9px 9px no-repeat,
      #ffffff;
    box-shadow: inset 0 0 0 2px var(--red);
  }
}

@media (max-width: 860px) {
  .checkout-page .checkout-pickup-row {
    position: relative;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px 16px;
  }

  .checkout-page .checkout-pickup-row .checkout-product-info {
    grid-column: 2;
    padding-right: 34px;
  }

  .checkout-page .checkout-pickup-row .checkout-product-info h3 {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .checkout-page .checkout-pickup-row .checkout-delete {
    position: absolute;
    top: 0;
    right: 0;
    grid-column: auto;
    grid-row: auto;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 860px) {
  .checkout-page .checkout-address-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-page .checkout-address-card {
    width: 100%;
    min-height: 120px;
    padding: 18px 22px 18px 28px;
    box-sizing: border-box;
  }

  .checkout-page .checkout-address-card span {
    display: block;
    max-width: none;
    padding-right: 18px;
  }

  .checkout-page .checkout-address-card i {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 680px) {
  .shopping-cart-page .cart-page-product p {
    display: block;
    overflow: visible;
    text-overflow: clip;
    -webkit-line-clamp: initial;
    -webkit-box-orient: initial;
  }
}

@media (max-width: 860px) {
  .checkout-page .checkout-product {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .checkout-page .checkout-product::before {
    content: none;
    display: none;
  }

  .checkout-page .checkout-product img {
    grid-column: 1;
  }

  .checkout-page .checkout-product-info,
  .checkout-page .checkout-product > strong,
  .checkout-page .checkout-quantity {
    grid-column: 2;
  }
}

.featured-product-copy p,
.product-description,
.detail-related-card p {
  display: -webkit-box !important;
  max-height: calc(1.55em * 2);
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  line-clamp: 2;
}

.featured-product-copy p {
  max-height: calc(1.7em * 2);
}

.detail-related-card p {
  max-height: calc(1.58em * 2);
}

.account-mobile-dashboard {
  display: none;
}

.mobile-order-detail {
  display: none;
}

@media (max-width: 680px) {
  .account-page {
    background: #f3f3f3;
  }

  .account-page .breadcrumb,
  .account-page .account-layout,
  .account-page .site-footer {
    display: none !important;
  }

  .account-shell {
    min-height: 100vh;
    padding: 0 0 24px;
    background: #f3f3f3;
  }

  .account-shell > .container {
    width: 100%;
    max-width: none;
    padding: 0 8px;
  }

  .account-mobile-dashboard {
    display: block;
  }

  .account-mobile-dashboard[hidden] {
    display: none;
  }

  .mobile-order-detail.is-visible {
    display: block;
    min-height: calc(100vh - 72px);
    padding: 0 0 96px;
    background: #f3f3f3;
  }

  .mobile-order-detail[hidden] {
    display: none;
  }

  .mobile-order-detail-bar {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 52px;
    align-items: center;
    margin: 0 -8px;
    border-bottom: 1px solid #e2e5ea;
    background: #ffffff;
    padding: 0 8px;
  }

  .mobile-order-detail-bar button {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #20242a;
  }

  .mobile-order-detail-bar button i {
    width: 11px;
    height: 11px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
  }

  .mobile-order-detail-bar strong {
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    text-align: center;
  }

  .mobile-order-status-card,
  .mobile-order-detail-card {
    margin-top: 12px;
    border-radius: 7px;
    background: #ffffff;
  }

  .mobile-order-status-card {
    padding: 18px 16px;
  }

  .mobile-order-status-card span {
    display: block;
    color: #d00000;
    font-size: var(--h5-title-medium-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-order-status-card p {
    margin: 8px 0 0;
    color: #666b73;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-body1-regular-line-height);
  }

  .mobile-order-detail-card {
    padding: 16px;
  }

  .mobile-order-detail-card h2 {
    margin: 0 0 14px;
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-order-info-row,
  .mobile-order-total-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 32px;
    color: #666b73;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-order-info-row + .mobile-order-info-row,
  .mobile-order-total-row + .mobile-order-total-row {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #edf0f3;
  }

  .mobile-order-info-row strong,
  .mobile-order-total-row strong {
    min-width: 0;
    overflow: hidden;
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: right;
  }

  .mobile-order-info-row {
    grid-template-columns: 82px minmax(0, 1fr) auto;
  }

  .mobile-order-info-row button {
    min-height: 28px;
    border: 0;
    border-radius: 14px;
    background: #f1f3f6;
    padding: 0 12px;
    color: #174a96;
    font: inherit;
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-order-product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
  }

  .mobile-order-product div {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .mobile-order-product strong {
    overflow: hidden;
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-order-product span {
    color: #666b73;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-order-product b {
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-order-total-row.is-total span,
  .mobile-order-total-row.is-total strong {
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-order-detail-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-top: 1px solid #e2e5ea;
    background: #ffffff;
    padding: 12px 16px;
  }

  .mobile-order-detail-actions button,
  .mobile-order-detail-actions a {
    display: grid;
    min-height: 44px;
    place-items: center;
    border: 1px solid #d5dbe3;
    border-radius: 5px;
    background: #ffffff;
    color: #303238;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    text-align: center;
    text-decoration: none;
  }

  .mobile-order-detail-actions a {
    border-color: var(--red);
    background: var(--red);
    color: #ffffff;
  }

  .mobile-order-detail-actions button:disabled {
    color: #8b929c;
  }

  .mobile-account-hero {
    display: flex;
    min-height: 112px;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 -8px;
    padding: 24px 16px 34px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
      #151b20;
    color: #ffffff;
  }

  .mobile-account-profile {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    min-width: 0;
  }

  .mobile-account-avatar {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    background: #eef1f5;
    color: #9299a4;
  }

  .mobile-account-avatar svg,
  .mobile-account-signout svg,
  .mobile-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .mobile-account-profile strong,
  .mobile-account-profile span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-account-profile strong {
    color: #ffffff;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-account-profile span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-account-signout {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.62);
  }

  .mobile-account-card {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    margin-top: 12px;
    border: 0;
    border-radius: 7px;
    background: #ffffff;
    color: #2a2c31;
    text-decoration: none;
  }

  .mobile-orders-card {
    display: block;
    padding-bottom: 22px;
  }

  .mobile-addresses-card {
    display: block;
  }

  .mobile-account-details-card {
    display: block;
  }

  .mobile-account-card-head,
  .mobile-account-link-card {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 18px;
    gap: 12px;
    align-items: center;
    min-height: 55px;
    padding: 0 16px;
  }

  .mobile-account-card-head {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
  }

  button.mobile-account-link-card {
    width: 100%;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
  }

  .mobile-account-card strong {
    color: #303238;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-account-card-head strong {
    justify-self: start;
    text-align: left;
  }

  .mobile-account-link-card strong {
    justify-self: start;
    text-align: left;
  }

  .mobile-card-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: #20242a;
  }

  .mobile-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .mobile-account-card-head > i,
  .mobile-account-link-card > i,
  .mobile-order-row > i {
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #9ea4ad;
    border-right: 1.5px solid #9ea4ad;
  }

  .mobile-account-card-head > i {
    justify-self: end;
    transform: rotate(-45deg);
    transition: transform 160ms ease;
  }

  .mobile-orders-card.is-collapsed .mobile-account-card-head > i {
    transform: rotate(135deg);
  }

  .mobile-account-link-card > i {
    justify-self: end;
    transform: rotate(45deg);
    transition: transform 160ms ease;
  }

  .mobile-addresses-card .mobile-account-link-card > i {
    transform: rotate(135deg);
  }

  .mobile-account-details-card .mobile-account-link-card > i {
    transform: rotate(135deg);
  }

  .mobile-addresses-card.is-open .mobile-account-link-card > i {
    transform: rotate(-45deg);
  }

  .mobile-account-details-card.is-open .mobile-account-link-card > i {
    transform: rotate(-45deg);
  }

  .mobile-addresses-panel {
    display: none;
    padding: 0 16px 18px;
  }

  .mobile-addresses-card.is-open .mobile-addresses-panel {
    display: grid;
    gap: 10px;
  }

  .mobile-addresses-panel section {
    border-radius: 6px;
    background: #f5f6f7;
    padding: 12px;
  }

  .mobile-addresses-panel span {
    display: block;
    color: #15181d;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-addresses-panel p {
    margin: 8px 0 0;
    color: #777d86;
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-body1-regular-line-height);
  }

  .mobile-addresses-panel > button {
    justify-self: center;
    min-height: 26px;
    border: 1px solid #d8dde5;
    border-radius: 999px;
    background: #ffffff;
    padding: 0 12px;
    color: #2f3540;
    font: inherit;
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-account-details-panel {
    display: none;
    padding: 0 16px 2px;
  }

  .mobile-account-details-card.is-open .mobile-account-details-panel {
    display: block;
  }

  .mobile-account-details-panel a,
  .mobile-account-details-panel button {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 12px;
    gap: 10px;
    justify-items: stretch;
    align-items: center;
    min-height: 60px;
    width: 100%;
    border-top: 1px solid #edf0f3;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    background: transparent;
    color: #15181d;
    font: inherit;
    text-align: left;
    text-decoration: none;
  }

  .mobile-account-details-panel span {
    display: block;
    width: 100%;
    justify-self: stretch;
    color: #20242a;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    text-align: left;
  }

  .mobile-account-details-panel strong {
    min-width: 0;
    overflow: hidden;
    color: #20242a;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-account-details-panel a > i,
  .mobile-account-details-panel button > i {
    width: 8px;
    height: 8px;
    border-top: 1.5px solid #c4c9d0;
    border-right: 1.5px solid #c4c9d0;
    transform: rotate(45deg);
  }

  .mobile-edit-modal {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: grid;
    place-items: center;
    padding: 8px;
  }

  .mobile-edit-modal[hidden] {
    display: none;
  }

  .mobile-edit-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
  }

  .mobile-edit-dialog {
    position: relative;
    z-index: 1;
    width: min(352px, calc(100vw - 16px));
    border-radius: 6px;
    background: #ffffff;
    padding: 32px 20px 30px;
  }

  .mobile-edit-dialog input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #d9dde3;
    border-radius: 4px;
    outline: 0;
    padding: 0 14px;
    color: #111111;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-edit-dialog input:focus {
    border-color: #9ea6b1;
  }

  .mobile-edit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .mobile-edit-actions button {
    min-height: 40px;
    border: 1px solid #d5d8de;
    border-radius: 4px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-edit-actions button:last-child {
    border-color: #202020;
    background: #202020;
    color: #ffffff;
  }

  .mobile-email-modal {
    position: fixed;
    inset: 0;
    z-index: 10040;
    display: block;
  }

  .mobile-email-modal[hidden] {
    display: none;
  }

  .mobile-email-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
  }

  .mobile-email-dialog {
    position: absolute;
    top: 45px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    border-radius: 10px 10px 0 0;
    background: #ffffff;
    padding: 34px 24px 120px;
  }

  .mobile-email-close {
    position: fixed;
    top: 14px;
    right: 24px;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
  }

  .mobile-email-close::before,
  .mobile-email-close::after {
    position: absolute;
    top: 11px;
    left: 3px;
    width: 18px;
    height: 1.5px;
    background: #ffffff;
    content: "";
  }

  .mobile-email-close::before {
    transform: rotate(45deg);
  }

  .mobile-email-close::after {
    transform: rotate(-45deg);
  }

  .mobile-email-dialog h2 {
    margin: 0 0 22px;
    color: #090909;
    font-size: var(--h5-headline-medium-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    text-align: center;
  }

  .mobile-email-form {
    display: grid;
    gap: 14px;
  }

  .mobile-email-form label {
    display: grid;
    gap: 9px;
    margin: 0;
  }

  .mobile-email-form label > span:first-child {
    color: #4d4d4d;
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-email-form input {
    width: 100%;
    min-height: 41px;
    border: 1px solid #dcdfe4;
    border-radius: 4px;
    outline: 0;
    background: #ffffff;
    padding: 0 13px;
    color: #15181d;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-email-form input:disabled {
    background: #f5f5f5;
    color: #9b9b9b;
  }

  .mobile-email-form input::placeholder {
    color: #b4b4b4;
  }

  .mobile-email-password,
  .mobile-email-code {
    display: grid;
    align-items: center;
  }

  .mobile-email-password {
    position: relative;
  }

  .mobile-email-password input {
    padding-right: 44px;
  }

  .mobile-email-password i {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 10px;
    border-bottom: 1.5px solid #8f8f8f;
    border-radius: 50%;
  }

  .mobile-email-password i::before,
  .mobile-email-password i::after {
    position: absolute;
    top: 6px;
    width: 5px;
    height: 1px;
    background: #8f8f8f;
    content: "";
  }

  .mobile-email-password i::before {
    left: 1px;
    transform: rotate(28deg);
  }

  .mobile-email-password i::after {
    right: 1px;
    transform: rotate(-28deg);
  }

  .mobile-email-code {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 12px;
  }

  .mobile-email-code button {
    min-height: 41px;
    border: 1px solid #dcdfe4;
    border-radius: 4px;
    background: #ffffff;
    color: #b4b4b4;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-email-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
    margin-top: 10px;
  }

  .mobile-email-actions button {
    min-height: 40px;
    border: 1px solid #d5d8de;
    border-radius: 4px;
    background: #ffffff;
    color: #111111;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-email-actions button:last-child {
    border-color: #202020;
    background: #202020;
    color: #ffffff;
  }

  .mobile-orders-table {
    padding: 0 14px;
    transition: opacity 160ms ease;
  }

  .mobile-orders-card.is-collapsed {
    padding-bottom: 0;
  }

  .mobile-orders-card.is-collapsed .mobile-orders-table {
    display: none;
  }

  .mobile-orders-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px;
    min-height: 33px;
    align-items: center;
    border-radius: 4px;
    background: #f0f0f0;
    padding: 0 12px;
    color: #5f6268;
    font-size: var(--h5-body2-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-order-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 112px 16px;
    gap: 8px;
    align-items: center;
    min-height: 82px;
    padding: 8px 4px 0 10px;
    color: inherit;
    text-decoration: none;
  }

  .mobile-order-row span {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .mobile-order-row strong {
    overflow: hidden;
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-order-row small {
    color: #15181d;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-medium-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-order-row span:nth-child(2) {
    text-align: right;
  }

  .mobile-order-row > i {
    transform: rotate(45deg);
  }

  .mobile-orders-table p {
    margin: 22px 0 8px;
    color: #999999;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    text-align: center;
  }

  .mobile-account-footer {
    overflow: hidden;
    margin: 18px -8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1c2224;
    color: rgba(255, 255, 255, 0.74);
  }

  .mobile-footer-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-footer-toggle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px;
    width: 100%;
    min-height: 49px;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 0 18px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    text-align: left;
  }

  .mobile-footer-toggle strong,
  .mobile-footer-subscribe h2 {
    margin: 0;
    color: #ffffff;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
  }

  .mobile-footer-toggle i {
    justify-self: end;
    width: 10px;
    height: 10px;
    border-top: 2px solid rgba(255, 255, 255, 0.72);
    border-right: 2px solid rgba(255, 255, 255, 0.72);
    transform: rotate(135deg);
    transition: transform 160ms ease;
  }

  .mobile-footer-section.is-open .mobile-footer-toggle i {
    transform: rotate(-45deg);
  }

  .mobile-footer-toggle-static {
    grid-template-columns: minmax(0, 1fr);
    cursor: default;
  }

  .mobile-footer-panel {
    display: grid;
    gap: 20px;
    padding: 8px 18px 28px;
  }

  .mobile-footer-section a {
    color: rgba(255, 255, 255, 0.76);
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-headline-medium-line-height);
    text-decoration: none;
  }

  .mobile-footer-subscribe {
    padding: 18px 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-footer-section-static .mobile-footer-subscribe {
    padding-top: 0;
    border-bottom: 0;
  }

  .mobile-footer-subscribe p {
    margin: 18px 0 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: var(--h5-body1-regular-line-height);
  }

  .mobile-footer-subscribe form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    overflow: hidden;
    min-height: 50px;
    border-radius: 5px;
    background: #ffffff;
  }

  .mobile-footer-subscribe input {
    min-height: 50px;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 16px;
    color: #15181d;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
  }

  .mobile-footer-subscribe input::placeholder {
    color: #9ca3af;
  }

  .mobile-footer-subscribe button {
    min-height: 50px;
    height: 50px;
    border: 0;
    background: var(--red);
    color: #ffffff;
    font: inherit;
    font-size: var(--h5-body1-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: 50px;
  }

  .mobile-footer-subscribe button:disabled {
    opacity: 0.72;
    cursor: not-allowed;
  }

  .mobile-footer-feedback {
    margin: 12px 0 0;
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-semibold-weight);
    line-height: 18px;
  }

  .mobile-footer-feedback.is-success {
    color: #6fe38d;
  }

  .mobile-footer-feedback.is-error {
    color: #ff9a9a;
  }

  .mobile-footer-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
  }

  .mobile-footer-socials a {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
  }

  .mobile-footer-socials img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .mobile-footer-bottom {
    display: grid;
    min-height: 56px;
    place-items: center;
    padding: 16px 18px;
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--h5-caption-regular-size);
    font-weight: var(--h5-semibold-weight);
    text-align: center;
  }

  .mobile-footer-bottom p {
    margin: 0;
  }
}

/* Auth drawer refinement */
.auth-page,
.auth-modal-overlay {
  --auth-top-gap: 78px;
  --auth-sheet-width: min(calc(100vw - 24px), 390px);
}

.register-page,
.login-page,
.forgot-page {
  background: #e7e7eb;
}

.register-page .auth-shell,
.login-page .auth-shell,
.forgot-page .auth-shell,
.auth-modal-overlay .auth-shell {
  min-height: 100dvh;
  align-content: start;
  justify-items: center;
  padding: var(--auth-top-gap) 0 0;
}

.register-page .auth-shell,
.login-page .auth-shell,
.forgot-page .auth-shell {
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)) top / 100% var(--auth-top-gap) no-repeat,
    #e7e7eb;
}

.auth-modal-overlay .auth-shell {
  background: transparent;
}

.register-page .auth-close,
.login-page .auth-close,
.forgot-page .auth-close,
.auth-modal-overlay .auth-close {
  position: fixed;
  top: 38px;
  right: max(22px, calc((100vw - 390px) / 2 + 18px));
  z-index: 3;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
}

.register-page .auth-card,
.login-page .auth-card,
.forgot-page .auth-card,
.auth-modal-overlay .auth-card,
.auth-modal-overlay.register-page .auth-card,
.auth-modal-overlay.forgot-page .auth-card {
  width: var(--auth-sheet-width);
  max-width: var(--auth-sheet-width);
  min-height: calc(100dvh - var(--auth-top-gap));
  max-height: calc(100dvh - var(--auth-top-gap));
  overflow-y: auto;
  border: 0;
  border-radius: 20px 20px 0 0;
  background: #ffffff;
  padding: 20px 32px 42px;
  box-shadow: none;
}

.register-page .auth-card,
.forgot-page .auth-card,
.auth-modal-overlay.register-page .auth-card,
.auth-modal-overlay.forgot-page .auth-card {
  padding-top: 28px;
}

.auth-heading {
  margin-bottom: 24px;
  text-align: center;
}

.register-page .auth-heading h1,
.forgot-page .auth-heading h1 {
  color: #2f2f2f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 30px;
}

.auth-tabs button {
  position: relative;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.auth-tabs button.is-active {
  color: #2f2f2f;
  font-weight: 700;
}

.auth-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -6px;
  height: 4px;
  border-radius: 999px;
  background: var(--logo-red);
}

.auth-form,
.auth-modal-overlay .auth-form {
  display: grid;
  gap: 18px;
  justify-items: stretch;
}

.auth-field,
.register-page .auth-field,
.login-page .auth-field,
.forgot-page .auth-field {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.auth-form input,
.auth-code-field button,
.auth-primary,
.register-page .auth-form input,
.login-page .auth-form input,
.forgot-page .auth-form input,
.register-page .auth-code-field button,
.login-page .auth-code-field button,
.forgot-page .auth-code-field button,
.register-page .auth-primary,
.login-page .auth-primary,
.forgot-page .auth-primary {
  min-height: 48px;
  height: 48px;
  font-size: 14px;
  line-height: 1.2;
}

.auth-form input,
.register-page .auth-form input,
.login-page .auth-form input,
.forgot-page .auth-form input {
  border: 1px solid #d7dce4;
  border-radius: 6px;
  padding: 0 14px;
  color: #2f2f2f;
}

.auth-form input::placeholder {
  color: #a6adb7;
}

.auth-form input:focus,
.register-page .auth-form input:focus,
.login-page .auth-form input:focus,
.forgot-page .auth-form input:focus {
  border-color: var(--logo-red);
}

.auth-code-field,
.register-page .auth-code-field,
.login-page .auth-code-field,
.forgot-page .auth-code-field {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 0;
  justify-self: stretch;
}

.auth-code-field input {
  min-width: 0;
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.auth-code-field button,
.register-page .auth-code-field button,
.login-page .auth-code-field button,
.forgot-page .auth-code-field button {
  width: 100%;
  border: 1px solid #d7dce4;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #ffffff;
  color: var(--logo-red);
  font-weight: 700;
}

.auth-password-field {
  position: relative;
  display: block;
}

.auth-password-field input {
  padding-right: 44px;
}

.auth-password-field i,
.register-page .auth-password-field i,
.login-page .auth-password-field i,
.forgot-page .auth-password-field i {
  right: 14px;
  width: 14px;
  height: 14px;
  border-color: #adb4bf;
}

.auth-password-field i::before {
  background: #adb4bf;
}

.auth-primary,
.register-page .auth-primary,
.login-page .auth-primary,
.forgot-page .auth-primary {
  width: 100%;
  max-width: none;
  margin-top: 12px;
  border-radius: 6px;
  background: var(--logo-red);
  font-weight: 700;
  letter-spacing: 0;
}

.auth-primary:disabled,
.auth-code-field button:disabled,
.register-page .auth-primary:disabled,
.login-page .auth-primary:disabled,
.forgot-page .auth-primary:disabled,
.register-page .auth-code-field button:disabled,
.login-page .auth-code-field button:disabled,
.forgot-page .auth-code-field button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.auth-feedback {
  width: 100%;
  min-height: 18px;
  margin-top: -6px;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.auth-feedback.is-error {
  color: #cf1111;
}

.auth-feedback.is-success {
  color: #1f8a4c;
}

.auth-row,
.login-page .auth-row {
  width: 100%;
  margin-top: 14px;
  align-items: center;
  gap: 12px;
}

.auth-check,
.register-page .auth-check,
.login-page .auth-check,
.forgot-page .auth-check {
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  color: #616874;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.auth-row .auth-check {
  width: auto;
  align-items: center;
  font-size: 13px;
  white-space: nowrap;
}

.auth-check input,
.register-page .auth-check input,
.login-page .auth-check input {
  appearance: none;
  width: 14px;
  height: 14px;
  min-height: 14px;
  flex: 0 0 14px;
  margin-top: 2px;
  border: 1.5px solid #a8b0bc;
  border-radius: 3px;
  background: #ffffff;
}

.auth-check input:checked,
.register-page .auth-check input:checked,
.login-page .auth-check input:checked {
  border-color: var(--logo-red);
  background: var(--logo-red);
}

.auth-check input:checked::after,
.register-page .auth-check input:checked::after,
.login-page .auth-check input:checked::after {
  content: "";
  display: block;
  width: 7px;
  height: 4px;
  margin: 3px 0 0 2px;
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.auth-row a {
  color: #6a6f78;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.auth-divider {
  width: 100%;
  margin-top: 34px;
  color: #9ba1ab;
  font-size: 13px;
}

.auth-switch,
.register-page .auth-switch,
.login-page .auth-switch,
.forgot-page .auth-switch {
  margin-top: 34px;
  color: #9ba1ab;
  font-size: 14px;
  text-align: center;
}

.auth-switch a,
.register-page .auth-switch a,
.login-page .auth-switch a,
.forgot-page .auth-switch a {
  color: var(--logo-red);
  font-weight: 500;
}

.auth-modal-overlay .auth-close span {
  background: #ffffff;
}

@media (max-width: 420px) {
  .auth-page,
  .auth-modal-overlay {
    --auth-top-gap: 80px;
    --auth-sheet-width: calc(100vw - 12px);
  }

  .register-page .auth-close,
  .login-page .auth-close,
  .forgot-page .auth-close,
  .auth-modal-overlay .auth-close {
    right: 18px;
  }

  .register-page .auth-card,
  .login-page .auth-card,
  .forgot-page .auth-card,
  .auth-modal-overlay .auth-card,
  .auth-modal-overlay.register-page .auth-card,
  .auth-modal-overlay.forgot-page .auth-card {
    padding-right: 26px;
    padding-left: 26px;
  }

  .auth-code-field,
  .register-page .auth-code-field,
  .login-page .auth-code-field,
  .forgot-page .auth-code-field {
    grid-template-columns: minmax(0, 1fr) 118px;
  }
}

/* Auth modal final mobile baseline */
.auth-modal-overlay {
  --auth-top-gap: 78px;
  --auth-sheet-width: min(calc(100vw - 24px), 390px);
}

.auth-modal-overlay .auth-shell {
  min-height: 100dvh;
  place-items: start center;
  padding: var(--auth-top-gap) 0 0;
}

.auth-modal-overlay .auth-card,
.auth-modal-overlay.login-page .auth-card,
.auth-modal-overlay.register-page .auth-card,
.auth-modal-overlay.forgot-page .auth-card {
  width: var(--auth-sheet-width);
  max-width: var(--auth-sheet-width);
  min-height: calc(100dvh - var(--auth-top-gap));
  max-height: calc(100dvh - var(--auth-top-gap));
  overflow-y: auto;
  border: 0;
  border-radius: 18px 18px 0 0;
  background: #ffffff;
  padding: 20px 31px 34px;
  box-shadow: none;
}

.auth-modal-overlay .auth-close {
  top: 40px;
  right: max(18px, calc((100vw - 390px) / 2 + 12px));
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.auth-modal-overlay .auth-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.auth-modal-overlay .auth-tabs,
.auth-modal-overlay .auth-row,
.auth-modal-overlay .auth-divider,
.auth-modal-overlay .auth-switch {
  width: 100%;
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.auth-modal-overlay .auth-tabs {
  margin-bottom: 26px;
}

.auth-modal-overlay .auth-tabs button {
  min-height: 34px;
  color: #666666;
  font-size: 14px;
  font-weight: 600;
}

.auth-modal-overlay .auth-tabs button.is-active {
  color: #2f2f2f;
  font-weight: 700;
}

.auth-modal-overlay .auth-tabs button.is-active::after {
  left: 22px;
  right: 22px;
  bottom: -8px;
  height: 4px;
  background: var(--logo-red);
}

.auth-modal-overlay .auth-form {
  gap: 18px;
}

.auth-modal-overlay .auth-field,
.auth-modal-overlay .auth-check {
  width: 100%;
  max-width: 100%;
}

.auth-modal-overlay .auth-form input,
.auth-modal-overlay .auth-code-field button,
.auth-modal-overlay .auth-primary {
  min-height: 42px;
  height: 42px;
  font-size: 14px;
  line-height: 1.2;
}

.auth-modal-overlay .auth-form input {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  padding: 0 12px;
  color: #202124;
}

.auth-modal-overlay .auth-form input::placeholder {
  color: #a8adb7;
}

.auth-modal-overlay .auth-form input:focus {
  border-color: var(--logo-red);
}

.auth-modal-overlay .auth-code-field {
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 1fr) 114px;
}

.auth-modal-overlay .auth-code-field input {
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.auth-modal-overlay .auth-code-field button {
  border: 1px solid #d8d8d8;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #ffffff;
  color: var(--logo-red);
  font-weight: 600;
}

.auth-modal-overlay .auth-password-field input {
  padding-right: 44px;
}

.auth-modal-overlay .auth-password-field i {
  right: 14px;
  width: 14px;
  height: 14px;
  border-color: #a8adb7;
}

.auth-modal-overlay .auth-password-field i::before {
  background: #a8adb7;
}

.auth-modal-overlay .auth-primary {
  margin-top: 12px;
  border-radius: 6px;
  background: var(--logo-red);
  color: #ffffff;
  font-weight: 700;
}

.auth-modal-overlay .auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.auth-modal-overlay .auth-row .auth-check {
  width: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #626262;
  font-size: 13px;
  white-space: nowrap;
}

.auth-modal-overlay .auth-check input {
  margin-top: 0;
}

.auth-modal-overlay .auth-row a {
  color: #626262;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.auth-modal-overlay .auth-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.2;
}

.auth-modal-overlay .auth-divider::before,
.auth-modal-overlay .auth-divider::after {
  content: "";
  height: 1px;
  background: #dedede;
}

.auth-modal-overlay .auth-switch {
  margin-top: 32px;
  color: #9a9a9a;
  font-size: 14px;
  text-align: center;
}

.auth-modal-overlay .auth-switch a {
  color: var(--logo-red);
  font-weight: 500;
}

.auth-modal-overlay .auth-feedback {
  min-height: 16px;
  margin-top: -4px;
  font-size: 12px;
}

.auth-modal-overlay.register-page .auth-heading,
.auth-modal-overlay.forgot-page .auth-heading {
  margin-bottom: 24px;
}

.auth-modal-overlay.register-page .auth-heading h1,
.auth-modal-overlay.forgot-page .auth-heading h1 {
  color: #2f2f2f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.auth-modal-overlay.register-page .auth-switch,
.auth-modal-overlay.forgot-page .auth-switch {
  margin-top: 28px;
}

@media (max-width: 420px) {
  .auth-modal-overlay {
    --auth-sheet-width: calc(100vw - 12px);
  }

  .auth-modal-overlay .auth-card,
  .auth-modal-overlay.login-page .auth-card,
  .auth-modal-overlay.register-page .auth-card,
  .auth-modal-overlay.forgot-page .auth-card {
    padding-right: 26px;
    padding-left: 26px;
  }

  .auth-modal-overlay .auth-close {
    right: 18px;
  }
}

.site-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 120px;
  background:
    radial-gradient(circle at top, rgba(206, 16, 16, 0.08), transparent 38%),
    linear-gradient(180deg, #f4f5f8 0%, #ffffff 56%);
}

.site-404-shell {
  width: min(100%, 420px);
  display: grid;
  gap: 12px;
  padding: 36px 28px;
  border: 1px solid rgba(19, 23, 34, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  text-align: center;
}

.site-404-shell p {
  margin: 0;
  color: var(--logo-red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-404-shell h1 {
  margin: 0;
  color: #111827;
  font-size: 32px;
  line-height: 1.1;
}

.site-404-shell span {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.7;
}

.site-404-shell a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--logo-red);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.account-page-head {
  margin: 0 -8px 12px;
  padding: 26px 16px 18px;
  border-radius: 8px;
  background: #ffffff;
}

.account-page-head h1,
.account-page-section-head h2 {
  margin: 0;
  color: #15181d;
  font-size: var(--h5-headline-medium-size);
  font-weight: var(--h5-semibold-weight);
  line-height: var(--h5-headline-medium-line-height);
}

.account-page-head p,
.account-page-section-head p {
  margin: 8px 0 0;
  color: #777d86;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.account-page-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-section-button,
.account-inline-action,
.account-upload-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 14px;
  color: #15181d;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-decoration: none;
}

.account-address-page {
  gap: 14px;
}

.account-address-section {
  display: grid;
  gap: 16px;
  margin-top: 12px;
  padding: 18px 0 22px;
  border-radius: 8px;
  background: #ffffff;
}

.account-address-grid {
  display: grid;
  gap: 12px;
}

.account-address-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  background: #f8fafc;
}

.account-address-card.is-default {
  border-color: rgba(192, 0, 0, 0.18);
  background: #fff8f8;
}

.account-address-card-top,
.account-payment-record-head,
.account-payment-record-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-address-card-top strong,
.account-payment-record-head strong,
.account-address-block strong {
  color: #15181d;
  font-size: var(--h5-body1-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.account-address-card-top span {
  color: var(--red);
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
}

.account-address-card p,
.account-address-card small,
.account-payment-record-meta span,
.account-address-block p {
  margin: 0;
  color: #777d86;
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.account-address-card-actions,
.payment-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-address-card-actions button,
.payment-result-actions a {
  min-height: 34px;
  border: 1px solid #d9dde3;
  border-radius: 999px;
  background: #ffffff;
  padding: 0 14px;
  color: #15181d;
  font: inherit;
  font-size: var(--h5-caption-regular-size);
  font-weight: var(--h5-semibold-weight);
  text-decoration: none;
}

.account-address-card-actions button:last-child,
.payment-result-actions a:last-child,
.payment-result-actions .checkout-back-button {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.account-empty-card {
  margin: 0;
  padding: 18px 16px;
  border-radius: 8px;
  background: #ffffff;
  color: #777d86;
  font-size: var(--h5-caption-regular-size);
  text-align: center;
}

.account-details-list {
  display: block !important;
  padding-top: 2px;
}

.account-dialog-feedback,
.account-payment-remark {
  margin: 0;
  color: var(--red);
  font-size: var(--h5-caption-regular-size);
  line-height: var(--h5-body1-regular-line-height);
}

.address-phone-row {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
}

.address-phone-row select {
  border-radius: 4px 0 0 4px;
  background: #f8fafc;
}

.address-phone-row input {
  border-left: 0;
  border-radius: 0 4px 4px 0;
}

.mobile-order-product.is-rich {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.mobile-order-product.is-rich img {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  object-fit: cover;
}

.mobile-order-product.is-rich span {
  display: block;
}

.account-address-block {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.account-address-block:first-of-type {
  margin-top: 0;
}

.account-payment-record {
  display: grid;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid #edf0f3;
}

.account-payment-record:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.account-payment-record-head span {
  color: #777d86;
  font-size: var(--h5-caption-regular-size);
}

.account-upload-button {
  display: inline-flex;
  position: relative;
  width: fit-content;
  cursor: pointer;
}

.account-upload-button input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.payment-result-page {
  padding: 40px 0 70px;
}

.payment-result-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.payment-result-card h1 {
  margin: 0;
  color: #15181d;
  font-size: 24px;
  line-height: 1.2;
}

.payment-result-card p {
  margin: 0;
  color: #777d86;
  font-size: 14px;
  line-height: 1.7;
}

.payment-result-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #fff1f0;
  position: relative;
}

.payment-result-icon::before,
.payment-result-icon::after {
  content: "";
  position: absolute;
  top: 37px;
  left: 20px;
  width: 36px;
  height: 2px;
  background: #ff4d4f;
}

.payment-result-icon::before {
  transform: rotate(45deg);
}

.payment-result-icon::after {
  transform: rotate(-45deg);
}

.payment-result-icon.is-success {
  background: #f6ffed;
}

.payment-result-icon.is-success::before {
  top: 41px;
  left: 17px;
  width: 16px;
  transform: rotate(45deg);
  background: #52c41a;
}

.payment-result-icon.is-success::after {
  top: 35px;
  left: 27px;
  width: 28px;
  transform: rotate(-45deg);
  background: #52c41a;
}

.payment-result-upload {
  display: grid;
  gap: 10px;
  justify-items: center;
  width: 100%;
}

/* Auth dialog mobile baseline */
.auth-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.68);
}

.auth-dialog-shell {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  justify-content: flex-end;
  padding: 78px 0 0;
}

.auth-dialog-close {
  z-index: 10001;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  margin-right: 18px;
  margin-left: auto;
  margin-bottom: 18px;
}

.auth-dialog-close span {
  position: absolute;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.auth-dialog-close span:first-child {
  transform: rotate(45deg);
}

.auth-dialog-close span:last-child {
  transform: rotate(-45deg);
}

.auth-dialog-panel {
  width: 100vw;
  min-height: min(var(--auth-dialog-panel-min-height, 520px), calc(100dvh - 78px));
  max-height: calc(100dvh - 78px);
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  background: #ffffff;
  padding: 18px 30px 34px;
  box-sizing: border-box;
}

.auth-dialog-panel--login {
  --auth-dialog-panel-min-height: 504px;
}

.auth-dialog-panel--register {
  --auth-dialog-panel-min-height: 620px;
}

.auth-dialog-panel--forgot {
  --auth-dialog-panel-min-height: 560px;
}

.auth-dialog-heading {
  margin: 2px 0 30px;
  text-align: center;
}

.auth-dialog-heading--hidden {
  display: none;
}

.auth-dialog-heading h1 {
  margin: 0;
  color: #2f2f2f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.auth-dialog-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 4px 0 26px;
}

.auth-dialog-tabs button {
  position: relative;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: #666666;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.auth-dialog-tabs button.is-active {
  color: #2f2f2f;
  font-weight: 700;
}

.auth-dialog-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -8px;
  height: 4px;
  border-radius: 999px;
  background: var(--logo-red);
}

.auth-dialog-form {
  display: grid;
  gap: 18px;
}

.auth-dialog-field {
  display: block;
  width: 100%;
}

.auth-dialog-form input,
.auth-dialog-code button,
.auth-dialog-submit {
  width: 100%;
  min-height: 42px;
  height: 42px;
  font: inherit;
  font-size: 14px;
  line-height: 1.2;
  box-sizing: border-box;
}

.auth-dialog-form input {
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  outline: 0;
  background: #ffffff;
  padding: 0 14px;
  color: #202124;
}

.auth-dialog-form input::placeholder {
  color: #a8adb7;
}

.auth-dialog-form input:focus {
  border-color: var(--logo-red);
}

.auth-dialog-code {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 114px;
  align-items: stretch;
}

.auth-dialog-code input {
  min-width: 0;
  border-right: 0;
  border-radius: 6px 0 0 6px;
}

.auth-dialog-code button {
  border: 1px solid #d8d8d8;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  background: #ffffff;
  color: var(--logo-red);
  cursor: pointer;
  font-weight: 700;
}

.auth-dialog-code button:disabled,
.auth-dialog-submit:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.auth-dialog-password {
  position: relative;
  display: block;
}

.auth-dialog-password input {
  padding-right: 44px;
}

.auth-dialog-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  color: #a8adb7;
  transform: translateY(-50%);
}

.auth-dialog-password-toggle svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.auth-dialog-password-toggle svg path,
.auth-dialog-password-toggle svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-dialog-password-toggle-slash {
  opacity: 0;
}

.auth-dialog-password-toggle.is-active .auth-dialog-password-toggle-slash {
  opacity: 1;
}

.auth-dialog-submit {
  margin-top: 12px;
  border: 0;
  border-radius: 6px;
  background: var(--logo-red);
  color: #ffffff;
  font-weight: 700;
}

.auth-dialog-feedback {
  min-height: 14px;
  margin: -6px 0 0;
  font-size: 12px;
  line-height: 1.45;
}

.auth-dialog-feedback.is-error {
  color: #cf1111;
}

.auth-dialog-feedback.is-success {
  color: #148047;
}

.auth-dialog-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.auth-dialog-check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #60636a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.auth-dialog-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.auth-dialog-check-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 14px;
  height: 14px;
  border: 1.5px solid #a8adb7;
  border-radius: 3px;
  background: #ffffff;
  box-sizing: border-box;
}

.auth-dialog-check-mark::after {
  content: "";
  width: 7px;
  height: 4px;
  border: solid transparent;
  border-width: 0 0 2px 2px;
  opacity: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.auth-dialog-check input:checked + .auth-dialog-check-mark {
  border-color: var(--logo-red);
  background: var(--logo-red);
}

.auth-dialog-check input:checked + .auth-dialog-check-mark::after {
  border-color: #ffffff;
  opacity: 1;
}

.auth-dialog-check--remember {
  align-items: center;
  gap: 8px;
  color: #626262;
  font-size: 13px;
  white-space: nowrap;
}

.auth-dialog-check--remember .auth-dialog-check-mark {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.auth-dialog-check--remember .auth-dialog-check-mark::after {
  width: 7px;
  height: 4px;
  border-width: 0 0 2px 2px;
}

.auth-dialog-check--agreement {
  margin-top: 2px;
}

.auth-dialog-link {
  border: 0;
  background: transparent;
  padding: 0;
  color: #626262;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.auth-dialog-divider {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: #9a9a9a;
  font-size: 13px;
  line-height: 1.2;
}

.auth-dialog-divider::before,
.auth-dialog-divider::after {
  content: "";
  height: 1px;
  background: #dedede;
}

.auth-dialog-switch {
  margin: 30px 0 0;
  text-align: center;
}

.auth-dialog-switch--compact {
  margin-top: 34px;
}

.auth-dialog-switch a,
.auth-dialog-switch button {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--logo-red);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

@media (max-width: 420px) {
  .auth-dialog-shell {
    padding-top: 80px;
  }

  .auth-dialog-close {
    right: 18px;
  }

  .auth-dialog-panel {
    width: calc(100vw - 12px);
    padding-right: 20px;
    padding-left: 20px;
  }

  .auth-dialog-tabs button.is-active::after {
    left: 18px;
    right: 18px;
  }
}

/* Final mobile cart / checkout overrides aligned to current H5 baseline and rackmountai checkout visuals */
.shopping-cart-page .cart-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shopping-cart-page .cart-check span {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1.5px solid #a8adb7;
  border-radius: 3px;
  background: #ffffff;
  box-sizing: border-box;
}

.shopping-cart-page .cart-check span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 4px;
  border: solid transparent;
  border-width: 0 0 2px 2px;
  opacity: 0;
  transform: translate(-50%, -62%) rotate(-45deg);
}

.shopping-cart-page .cart-check input:checked + span {
  border-color: var(--logo-red);
  background: var(--logo-red);
  box-shadow: none;
}

.shopping-cart-page .cart-check input:checked + span::after {
  border-color: #ffffff;
  opacity: 1;
}

.checkout-page .checkout-hero {
  padding: 26px 0 20px;
}

.checkout-page .checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  align-items: start;
  gap: 0;
}

.checkout-page .checkout-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #74777d;
  text-align: center;
}

.checkout-page .checkout-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 14px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 1px;
  background: #d5d8de;
}

.checkout-page .checkout-step span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5d8de;
  border-radius: 50%;
  background: #ffffff;
  color: #999da5;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.checkout-page .checkout-step strong {
  display: grid;
  gap: 8px;
  color: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.checkout-page .checkout-step strong span {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.checkout-page .checkout-step.is-active > span {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.checkout-page .checkout-step.is-active strong {
  color: #111111;
  font-weight: 700;
}

.checkout-page .checkout-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.checkout-page .checkout-address-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: 120px;
  overflow: hidden;
  border: 0 !important;
  border-radius: 0;
  background: #ffffff !important;
  padding: 18px 22px 18px 28px;
  box-sizing: border-box;
  color: #111111;
  text-align: left;
  outline: 0;
}

.checkout-page .checkout-address-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 5px solid transparent;
  border-radius: 0;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    repeating-linear-gradient(-45deg, #eeeeee 0 14px, #ffffff 14px 26px, #eeeeee 26px 40px, #ffffff 40px 52px) border-box;
  pointer-events: none;
}

.checkout-page .checkout-address-card:hover::before,
.checkout-page .checkout-address-card.is-selected::before {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    repeating-linear-gradient(-45deg, #ff7777 0 14px, #ffffff 14px 26px, #5a8cff 26px 40px, #ffffff 40px 52px) border-box;
}

.checkout-page .checkout-address-card:focus-visible::before {
  box-shadow: inset 0 0 0 1px #15458f;
}

.checkout-page .checkout-address-card strong,
.checkout-page .checkout-address-card span {
  position: relative;
  z-index: 1;
}

.checkout-page .checkout-address-card strong {
  display: block;
  margin: 0;
  border-bottom: 1px solid #eeeeee;
  padding: 0 26px 12px 0;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.checkout-page .checkout-address-card span {
  display: block;
  margin-top: 12px;
  padding-right: 18px;
  color: #1f2329;
  font-size: 13px;
  line-height: 1.45;
}

.checkout-page .checkout-address-card .checkout-address-edit {
  position: absolute;
  top: 17px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #d6dce5;
  cursor: pointer;
}

.checkout-page .checkout-address-card .checkout-address-edit:hover {
  color: #8c939d;
}

.checkout-page .checkout-address-card .checkout-address-edit svg {
  width: 14px;
  height: 14px;
}

.checkout-page .checkout-address-card .checkout-address-edit path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.checkout-page .checkout-address-card .checkout-address-check {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 22px;
  height: 22px;
  background: #c00000;
}

.checkout-page .checkout-address-card .checkout-address-check::after {
  content: none;
}

.checkout-page .checkout-address-card .checkout-address-check svg {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 10px;
  height: 8px;
  color: #ffffff;
}

.checkout-page .checkout-address-card .checkout-address-check path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.checkout-page .checkout-address-add {
  display: grid;
  place-items: center;
  color: #999da5;
  font-size: 28px;
  text-align: center;
}

.address-modal {
  z-index: 10030;
  align-items: start;
  padding: 76px 12px 20px;
  background: rgba(17, 17, 17, 0.62);
}

.address-modal-panel {
  position: relative;
  width: min(100%, 390px);
  max-height: calc(100dvh - 96px);
  overflow-y: auto;
  border-radius: 18px;
  padding: 28px 14px 24px;
  box-shadow: none;
}

.address-modal-panel h2 {
  margin: 0 0 24px;
  color: #202124;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.address-modal-close {
  top: -36px;
  right: 4px;
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.address-modal-close::before,
.address-modal-close::after {
  top: 13px;
  left: 4px;
  width: 20px;
  height: 2px;
}

.address-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.address-form label {
  gap: 8px;
  color: #555555;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.address-form input,
.address-form select {
  height: 42px;
  border: 1px solid #d9dde3;
  border-radius: 4px;
  padding: 0 12px;
  color: #202124;
  font-size: 14px;
}

.address-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #9aa0a6 50%) calc(100% - 18px) calc(50% - 2px) / 6px 6px no-repeat,
    linear-gradient(135deg, #9aa0a6 50%, transparent 50%) calc(100% - 14px) calc(50% - 2px) / 6px 6px no-repeat,
    #ffffff;
  padding-right: 32px;
}

.address-form input::placeholder {
  color: #c0c5cd;
}

.address-form input:focus,
.address-form select:focus {
  border-color: #111111;
}

.address-form-wide {
  grid-column: 1 / -1;
}

.address-phone-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0;
}

.address-phone-row select {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
}

.address-phone-row input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.address-form-error {
  margin-top: -2px;
  font-size: 12px;
}

.address-form-footer {
  position: sticky;
  bottom: -1px;
  z-index: 2;
  gap: 12px;
  margin-top: 8px;
  background: #ffffff;
  padding-top: 10px;
}

.address-form .address-form-check {
  align-items: flex-start;
  gap: 8px;
  white-space: normal;
}

.address-form .address-form-check input {
  width: 16px;
  height: 16px;
  accent-color: #111111;
}

.address-form-actions {
  gap: 10px;
}

.address-form-actions button {
  width: 100%;
  min-height: 42px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
}

.address-form-cancel {
  border-color: rgba(0, 0, 0, 0.16);
  color: #111111;
}

.address-form-save {
  border-color: #202124;
  background: #202124;
}

@media (max-width: 640px) {
  .address-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
  }

  .address-modal {
    padding-top: 76px;
  }

  .address-modal-panel {
    width: min(100%, calc(100vw - 24px));
    max-height: calc(100dvh - 96px);
    padding: 28px 12px 20px;
  }

  .address-form-footer {
    padding-bottom: calc(4px + env(safe-area-inset-bottom));
  }
}
