:root {
  --red: #c00000;
  --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;
}

* {
  box-sizing: border-box;
}

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

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

.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;
}

input::placeholder,
textarea::placeholder {
  color: #d1d5db;
  font-weight: 400;
}

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

.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: 14px;
  font-weight: 760;
}

.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: 46px;
  line-height: 1;
}

.product-page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.65;
}

.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: 1;
}

.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;
}

.products-page .nav-search {
  width: 44px;
  height: 44px;
  justify-content: center;
  gap: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #111827;
}

.products-page .nav-search:hover,
.products-page .nav-search:focus-within {
  background: #f3f4f6;
}

.products-page .nav-search input {
  position: static;
  width: 100%;
  height: 100%;
  min-width: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #111827;
  opacity: 1;
  pointer-events: auto;
}

.products-page .nav-search-submit {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #111827;
  cursor: pointer;
}

.products-page .nav-search svg {
  width: 23px;
  height: 23px;
}

.search-panel {
  position: fixed;
  top: 71px;
  right: 0;
  left: 0;
  z-index: 19;
  display: none;
  min-height: 500px;
  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 54px;
}

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

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

.search-panel-submit {
  border: 0;
  border-radius: 0 4px 4px 0;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
}

.search-panel-close {
  position: absolute;
  top: 36px;
  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: 22px;
  font-weight: 900;
}

.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: 14px;
}

.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: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.main-nav a {
  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 a::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 {
  color: var(--red);
}

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

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

.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: 10px;
  font-weight: 900;
  line-height: 1;
}

.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:
    linear-gradient(112deg, #ffffff 0%, #f3f6fb 58%, #e9edf4 100%),
    #ffffff;
}

.hero-slide:nth-child(2) {
  background:
    linear-gradient(112deg, #071326 0%, #111827 54%, #263548 100%),
    #061328;
}

.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: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 12px;
  color: #d70b2d;
  font-size: 26px;
  font-weight: 950;
  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: 36px;
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 14px 0 0;
  color: rgba(17, 24, 39, 0.78);
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  line-height: 1.45;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 900;
  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: 18px;
  font-weight: 950;
  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;
}

.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: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
}

.quote-card h2 {
  font-size: 32px;
}

.section-title h1,
.section-title h2 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.section-learn-more {
  display: inline-flex;
  width: 400px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid #0646a5;
  border-radius: 999px;
  color: #0646a5;
  font-size: 13px;
  font-weight: 850;
  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: pointer;
  box-shadow: none;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.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);
  transition: background 180ms ease;
}

.category-card:hover {
  filter: brightness(1.06);
}

.category-card:hover::after {
  background:
    linear-gradient(180deg, rgba(5, 12, 26, 0.08), rgba(5, 12, 26, 0.22)),
    rgba(0, 0, 0, 0.24);
}

.category-card strong {
  max-width: 260px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.28;
  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(118deg, #111827, #334155);
}

.about-panel-network::before {
  background: linear-gradient(118deg, #18202d, #475569);
}

.about-panel-manufacturing::before {
  background: linear-gradient(118deg, #202020, #4b5563);
}

.about-panel-service::before {
  background: linear-gradient(118deg, #151515, #334155);
}

.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: 18px;
  font-weight: 850;
  line-height: 1.18;
}

.about-window-card p {
  margin: 0;
  color: #6f7379;
  font-size: 14px;
  line-height: 1.35;
}

.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(8, minmax(0, 1fr));
  border-bottom: 1px solid #d8d8d8;
}

.fs-category-tab {
  position: relative;
  display: grid;
  min-height: 116px;
  align-content: start;
  justify-items: center;
  gap: 13px;
  border: 0;
  background: #ffffff;
  padding: 8px 14px 22px;
  color: #747474;
  font: inherit;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
}

.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-category-tab > span:last-child {
  white-space: pre-line;
}

.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 {
  left: 6px;
  top: 10px;
  width: 28px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: transparent;
}

.fs-icon-transceivers::after {
  right: 2px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.fs-icon-networking::before {
  left: 8px;
  top: 8px;
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.fs-icon-networking::after {
  left: 15px;
  top: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.fs-icon-ssd::before {
  left: 8px;
  top: 7px;
  width: 24px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 4px;
  background: transparent;
}

.fs-icon-ssd::after {
  left: 15px;
  top: 28px;
  width: 10px;
  height: 2px;
  background: var(--red);
}

.fs-icon-storage::before {
  left: 7px;
  top: 9px;
  width: 27px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: transparent;
}

.fs-icon-storage::after {
  left: 13px;
  top: 15px;
  width: 14px;
  height: 8px;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.fs-icon-power::before {
  left: 7px;
  top: 7px;
  width: 26px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: transparent;
}

.fs-icon-power::after {
  left: 20px;
  top: 12px;
  width: 7px;
  height: 15px;
  background: var(--red);
  clip-path: polygon(45% 0, 100% 0, 62% 44%, 100% 44%, 32% 100%, 50% 58%, 0 58%);
}

.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 {
  left: 9px;
  top: 8px;
  width: 22px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: transparent;
}

.fs-icon-b::after {
  left: 15px;
  top: 14px;
  width: 10px;
  height: 2px;
  background: var(--red);
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.fs-icon-cooling::before {
  left: 8px;
  top: 7px;
  width: 25px;
  height: 25px;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: transparent;
}

.fs-icon-cooling::after {
  left: 17px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.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 {
  left: 4px;
  top: 17px;
  width: 32px;
  height: 2px;
  background: currentColor;
}

.fs-icon-cables::after {
  left: 9px;
  top: 12px;
  width: 7px;
  height: 7px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-shadow: 16px 8px 0 -2px #ffffff, 16px 8px 0 0 currentColor, 22px 2px 0 -2px #ffffff, 22px 2px 0 0 var(--red);
}

.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 {
  left: 8px;
  top: 8px;
  width: 25px;
  height: 23px;
  border: 2px solid currentColor;
  border-radius: 3px;
  background: transparent;
}

.fs-icon-card::after {
  left: 13px;
  top: 13px;
  width: 4px;
  height: 4px;
  background: var(--red);
  box-shadow: 8px 0 0 currentColor, 0 8px 0 currentColor, 8px 8px 0 currentColor;
}

.fs-category-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.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-product-family-card-link {
  color: inherit;
  text-decoration: none;
}

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

.fs-family-visual-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.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-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: 6px solid #222222;
  border-top-color: transparent;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  transform: none;
}

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

.fs-family-visual-module::before {
  width: 150px;
  height: 58px;
  border-radius: 5px;
  background: linear-gradient(180deg, #252525, #0f0f0f);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.16);
  transform: perspective(380px) rotateX(52deg);
}

.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-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: 16px;
  font-weight: 400;
  line-height: 1.25;
  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: 13px;
  line-height: 1.35;
  list-style: none;
}

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

.fs-product-family-card-title-only .fs-family-content {
  display: grid;
  min-height: 108px;
  align-content: center;
  justify-items: center;
  padding: 24px 16px;
  text-align: center;
}

.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;
}

.fs-family-title-link {
  color: #747474;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  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: clamp(1.6rem, 2.1vw, 2.2rem);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

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

.featured-product-card {
  cursor: pointer;
  overflow: hidden;
  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 {
  min-height: 120px;
  padding: 24px 20px 26px;
}

.featured-product-copy h3 {
  margin: 0 0 12px;
  color: #282828;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.featured-product-copy p {
  margin: 0;
  color: #7a7a7a;
  font-size: 13px;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-learn-more {
  display: flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: #333333;
  padding: 0 26px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  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: flex;
  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;
}

.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: 16px;
  font-weight: 900;
}

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

.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: 14px;
  font-weight: 760;
  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: 12px;
  font-weight: 850;
}

.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: flex;
  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: 32px;
  line-height: 1;
  font-weight: 880;
}

.store-toolbar p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.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: 13px;
  font-weight: 760;
}

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

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

.store-show-separator {
  color: #8c95a3;
  font-weight: 500;
}

.store-sort select {
  min-height: 34px;
  border: 1px solid #dce2e8;
  background: #ffffff;
  color: #2b3340;
  padding: 0 32px 0 10px;
  font-size: 13px;
  font-weight: 760;
}

.store-sort-dropdown {
  position: relative;
  width: 240px;
  flex: 0 0 240px;
}

.store-sort-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 34px;
  border: 1px solid #d9dee7;
  border-radius: 4px;
  padding: 0 12px 0 14px;
  background: #ffffff;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 160ms ease;
}

.store-sort-dropdown.is-open .store-sort-trigger {
  border-color: #ff9200;
}

.store-sort-chevron {
  width: 14px;
  height: 14px;
  color: #c3c8d1;
  transition: transform 160ms ease;
}

.store-sort-chevron path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-sort-dropdown.is-open .store-sort-chevron {
  transform: rotate(180deg);
}

.store-sort-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 35;
  width: 100%;
  padding: 8px 0;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.14);
}

.store-sort-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #ffffff;
  transform: translateX(-50%) rotate(45deg);
  box-shadow: -3px -3px 6px rgba(16, 24, 40, 0.04);
}

.store-sort-option {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 36px;
  border: 0;
  padding: 0 20px;
  background: #ffffff;
  color: #4b5563;
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  text-align: left;
  cursor: pointer;
}

.store-sort-option:hover,
.store-sort-option.is-active {
  background: #f5f6f8;
  color: #ff7a00;
  font-weight: 700;
}

.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: 13px;
  font-weight: 760;
}

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

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

.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: 12px;
  font-weight: 820;
}

.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: none;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #ffffff;
  font-size: 27px;
  font-weight: 900;
  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: 18px;
  line-height: 1.15;
}

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

.maker {
  margin: 6px 0 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 760;
}

.product-specs {
  margin: 0;
  color: var(--body);
  font-size: 13px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.product-tags span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid #dce2e8;
  background: #f8fafc;
  padding: 0 10px;
  color: #5d6673;
  font-size: 11px;
  font-weight: 800;
}

.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: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.65;
}

.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: 13px;
  font-weight: 850;
  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;
}

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

.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: 14px;
  font-weight: 560;
}

.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: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.policy-article h2 {
  margin: 34px 0 12px;
  color: #111827;
  font-size: 22px;
  line-height: 1.25;
}

.policy-article p {
  margin: 0 0 14px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.8;
}

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

.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: 30px;
  line-height: 1.2;
  font-weight: 820;
}

.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: 16px;
  font-weight: 650;
}

.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: 16px;
  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: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.about-company-article h2 {
  margin-top: 34px;
  color: #111827;
  font-size: 22px;
}

.about-company-article p {
  max-width: 920px;
  font-size: 16px;
  line-height: 1.9;
}

.about-company-article strong {
  color: #111827;
  font-weight: 900;
}

.about-mining-hero {
  position: relative;
  display: grid;
  min-height: 318px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(118deg, #101828, #2f3b4d);
  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: 32px;
  font-weight: 900;
  line-height: 1.12;
}

.about-mining-hero p {
  max-width: 920px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.55;
}

.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: 13px;
  font-weight: 900;
  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: 900;
  letter-spacing: 0;
}

.about-hero-copy h1 {
  max-width: 720px;
  font-size: 32px;
  line-height: 1.18;
}

.about-hero-copy p:not(.about-eyebrow) {
  margin: 30px 0 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.85;
}

.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-story-section {
  border-top: 1px solid #e5e7eb;
}

.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: 18px;
  font-weight: 900;
}

.about-story-card h2,
.about-capability-card h3 {
  margin: 0 0 16px;
  color: #111827;
  font-weight: 900;
  line-height: 1.16;
}

.about-story-card h2 {
  font-size: 32px;
}

.about-story-card p,
.about-capability-card p,
.about-closing-card p {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.78;
}

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

.about-section-heading h2 {
  font-size: 32px;
  line-height: 1.08;
}

.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: 20px;
}

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

.about-closing-card {
  display: grid;
  gap: 18px;
  border-top: 1px solid #d1d5db;
  padding-top: clamp(36px, 4vw, 48px);
  justify-items: center;
  text-align: center;
}

.about-closing-card h2 {
  max-width: 840px;
  font-size: 32px;
  line-height: 1.05;
}

.about-closing-card p:not(.about-eyebrow) {
  width: min(980px, 100%);
  font-size: 17px;
  line-height: 1.82;
}

.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: 16px;
  font-weight: 900;
}

.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: 14px;
  font-weight: 760;
}

.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: 1500px;
  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: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-product-copy h1 {
  margin: 0;
  color: #151515;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 900;
  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: 14px;
  line-height: 1.4;
}

.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: 24px;
  line-height: 1.1;
  font-weight: 900;
  white-space: nowrap;
}

.detail-quote-card span {
  color: #777777;
  font-size: 14px;
  overflow-wrap: anywhere;
}

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

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

.detail-option-label {
  color: #777777;
  font-size: 15px;
  line-height: 1.45;
}

.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: 14px;
  line-height: 1.25;
  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: 14px;
  line-height: 1.45;
}

.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: 14px;
  font-weight: 800;
  line-height: 1;
  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: 14px;
  font-weight: 900;
}

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

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

.shopping-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  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 {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf0f3;
  padding: 0 24px;
}

.cart-drawer-header h2 {
  color: #101318;
  font-size: 18px;
  font-weight: 900;
}

.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: center;
  border-bottom: 1px solid #edf0f3;
  padding: 28px 0;
}

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

.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: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.cart-drawer-info p {
  margin-top: 4px;
  color: #5f6875;
  font-size: 13px;
  line-height: 1.35;
}

.cart-drawer-info > span {
  display: block;
  margin-top: 4px;
  color: #7a8490;
  font-size: 12px;
}

.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;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #ffffff;
  color: #4b5563;
}

.cart-quantity-control button {
  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-line-price {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.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: 800;
  text-align: center;
}

.cart-drawer-empty strong {
  display: block;
  color: #111827;
  font-size: 18px;
}

.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: 13px;
  font-weight: 900;
}

.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: 14px;
}

.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: 18px;
}

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

.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: 14px;
  font-weight: 900;
}

.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: 22px;
  font-weight: 950;
}

.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: 760;
}

.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: 13px;
  font-weight: 850;
}

.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: center;
}

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

.cart-page-product h2 {
  margin: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
}

.cart-page-product p {
  margin-top: 6px;
  color: #5f6875;
  font-size: 13px;
  line-height: 1.45;
}

.cart-page-product small,
.cart-page-stock {
  color: #687280;
  font-size: 13px;
}

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

.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: 22px;
}

.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: 900;
}

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

.cart-page-summary h2 {
  font-size: 20px;
}

.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: 20px;
}

.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: 14px;
  font-weight: 900;
}

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

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

.cart-page-continue {
  border: 1px solid #15458f;
  color: #15458f;
}

.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: 14px;
}

.checkout-step strong {
  color: inherit;
  font-size: 14px;
  font-weight: 700;
}

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

.checkout-step.is-active strong {
  color: #111111;
  font-weight: 900;
}

.checkout-shell {
  padding: 45px 0 70px;
  background: #f5f5f5;
}

.checkout-container {
  max-width: 1120px;
}

.checkout-card {
  border-radius: 6px;
  background: #ffffff;
  padding: 32px 74px 42px;
}

.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: 14px;
  font-weight: 900;
  cursor: pointer;
}

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

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

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

.checkout-section h2 {
  margin: 0 0 16px;
  color: #111111;
  font-size: 16px;
  font-weight: 900;
}

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

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

.checkout-product.has-image {
  grid-template-columns: 56px minmax(0, 1fr) 118px 18px 116px 28px;
}

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

.checkout-product-info h3 {
  margin: 0;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.checkout-product-info span {
  display: block;
  margin-top: 4px;
  color: #6d7178;
  font-size: 12px;
  line-height: 1.35;
}

.checkout-quantity {
  width: 118px;
}

.checkout-multiply {
  color: #8d9299;
  font-weight: 700;
  text-align: center;
}

.checkout-product strong {
  color: #111111;
  font-size: 14px;
  font-weight: 900;
}

.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-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  gap: 16px;
}

.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: 16px;
  font-weight: 900;
}

.checkout-address-card span {
  color: #30343a;
  font-size: 13px;
  line-height: 1.6;
}

.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-add {
  display: grid;
  place-items: center;
  color: #999da5;
  font-size: 28px;
  text-align: center;
}

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

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

.checkout-billing-section label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
}

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

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

.checkout-submit-row span {
  color: #111111;
  font-size: 18px;
  font-weight: 900;
}

.checkout-submit-row strong {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.checkout-submit-row button {
  grid-column: 1 / -1;
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

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

.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: 18px;
}

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

.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));
}

.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: 24px;
  line-height: 1.16;
  font-weight: 900;
}

.detail-info-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

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

.detail-spec-table div {
  display: grid;
  grid-template-columns: 160px 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: 14px;
  line-height: 1.5;
}

.detail-spec-table dt {
  background: #f6f8fb;
  color: #111827;
  font-weight: 900;
}

.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: 15px;
  line-height: 1.7;
}

.detail-inquiry-button {
  min-width: 158px;
  flex-shrink: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.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: 14px;
  font-weight: 900;
}

.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: 18px;
  font-weight: 900;
}

.detail-related-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

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

.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: 760;
}

.pagination-arrow {
  color: #aeb7c2;
  font-size: 20px;
  line-height: 1;
}

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

.pagination-ellipsis {
  color: #202020;
  font-weight: 760;
}

.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: 14px;
  font-weight: 760;
  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: 32px;
  line-height: 1.05;
  font-weight: 850;
}

.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: 19px;
  font-weight: 780;
  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: 15px;
  line-height: 1;
}

.news-card h3 {
  margin: 0;
  color: #121212;
  font-size: 21px;
  line-height: 1.24;
  font-weight: 850;
}

.news-card p {
  margin: 0;
  color: rgba(25, 25, 25, 0.43);
  font-size: 14px;
  line-height: 1.75;
}

.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: 15px;
  font-weight: 850;
  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: 23px;
  line-height: 1.1;
}

.news-promo span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.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: 32px;
  line-height: 1.1;
  font-weight: 880;
}

.benefits-heading p {
  max-width: 640px;
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

.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: 20px;
  line-height: 1.18;
  font-weight: 850;
}

.benefit-card small {
  display: none;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.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: 30px;
}

.benefit-card-large small {
  display: block;
  max-width: 390px;
  color: var(--body);
  font-size: 15px;
}

.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: 52px;
  font-weight: 900;
  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: 28px;
  font-style: normal;
  font-weight: 900;
}

.benefit-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 2px solid rgba(21, 69, 143, 0.14);
  border-radius: 50%;
  background: #ffffff;
  color: #15458f;
  box-shadow: inset 0 0 0 10px rgba(21, 69, 143, 0.05);
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
}

.benefit-icon-support::before {
  left: 17px;
  top: 15px;
  width: 35px;
  height: 44px;
  border-left: 6px solid #15458f;
  border-bottom: 6px solid #15458f;
  border-radius: 34px 0 0 8px;
  background:
    radial-gradient(circle at 76% 25%, transparent 0 13px, #15458f 14px 19px, transparent 20px);
}

.benefit-icon-support::after {
  right: 13px;
  bottom: 12px;
  width: 28px;
  height: 28px;
  background-color: #15458f;
  background-image:
    linear-gradient(45deg, transparent 0 42%, #dd2027 43% 61%, transparent 62%),
    linear-gradient(-45deg, transparent 0 47%, #dd2027 48% 62%, transparent 63%);
  background-position:
    7px 13px,
    12px 11px;
  background-size:
    10px 10px,
    14px 11px;
  background-repeat: no-repeat;
  clip-path: polygon(18% 8%, 82% 8%, 100% 48%, 50% 100%, 0 48%);
}

.benefit-icon-warranty {
  border-radius: 24px;
}

.benefit-icon-warranty::before {
  width: 44px;
  height: 52px;
  background: linear-gradient(160deg, #15458f 0 50%, #dd2027 50% 100%);
  clip-path: polygon(50% 0, 88% 14%, 88% 50%, 50% 100%, 12% 50%, 12% 14%);
}

.benefit-icon-warranty::after {
  width: 26px;
  height: 10px;
  border-left: 6px solid #ffffff;
  border-bottom: 6px solid #ffffff;
  transform: rotate(-45deg);
}

.benefit-icon-vat {
  border-radius: 20px;
}

.benefit-icon-vat::before {
  left: 11px;
  top: 17px;
  width: 46px;
  height: 38px;
  border-radius: 50% 50% 12px 12px / 24px 24px 12px 12px;
  background:
    radial-gradient(ellipse at 50% 15%, #5f7faa 0 58%, transparent 60%),
    linear-gradient(180deg, #42689e 0 36%, #33577f 36% 62%, #2b3a4d 62% 100%);
  box-shadow:
    0 10px 0 -3px #2f4056,
    0 20px 0 -7px #283548;
}

.benefit-icon-vat::after {
  content: "$";
  right: 8px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 6px solid #15458f;
  border-radius: 50%;
  background: #ffffff;
  color: #15458f;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  box-shadow: inset 0 0 0 5px rgba(21, 69, 143, 0.08);
}

.benefit-icon-trial {
  border-radius: 22px;
}

.benefit-icon-trial::before {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 5px solid #15458f;
  transform: rotate(30deg);
}

.benefit-icon-trial::after {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #dd2027;
  box-shadow:
    -8px 0 0 -5px #ffffff,
    8px 0 0 -5px #ffffff;
}

.quote-card p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.75;
}

.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: 1.45;
}

.footer-contact p {
  margin: 0;
}

.footer-contact span,
.footer-menu-panel > span,
.footer-support-panel > span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 820;
}

.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: 14px;
  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-newsletter-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: 0;
}

.footer-newsletter-panel p {
  max-width: 330px;
  margin: 20px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: min(100%, 260px);
  min-height: 41px;
  align-items: center;
  gap: 0;
  overflow: hidden;
  border: 0;
  border-radius: 5px;
  padding: 0;
  background: #ffffff;
}

.footer-newsletter input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: #ffffff;
  padding: 0 16px;
  color: #111111;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.footer-newsletter input::placeholder {
  color: #9ca3af;
}

.footer-newsletter button {
  min-height: 41px;
  border: 0;
  border-radius: 0;
  background: var(--red);
  padding: 0 18px;
  color: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  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: 13px;
}

.footer-socials a {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  font-size: 0;
}

.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: 12px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

@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 auto;
  }

  .cart-page-product {
    grid-column: 1 / -1;
  }

  .cart-page-stock,
  .cart-page-price,
  .cart-page-quantity {
    justify-self: start;
  }

  .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 0;
  }

  .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: 110px;
  }

  .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: 1fr;
  }

  .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) {
  .detail-product-hero {
    padding: 24px 18px;
  }

  .detail-product-copy h1 {
    font-size: 34px;
  }

  .detail-quote-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .detail-option-list {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    grid-template-columns: 1fr;
  }

  .cart-page-shell {
    padding: 34px 0 56px;
  }

  .cart-page-heading {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .cart-page-item {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .cart-page-product {
    grid-template-columns: 16px 62px minmax(0, 1fr);
    gap: 12px;
  }

  .cart-page-product img {
    width: 62px;
    height: 62px;
  }

  .cart-page-summary {
    padding: 20px;
  }

  .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-thumb {
    width: 56px;
    height: 56px;
  }

  .cart-drawer-thumb img {
    max-width: 50px;
    max-height: 50px;
  }

  .container {
    width: min(100% - 24px, 1200px);
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 12px;
  }

  .header-logo img {
    width: 202px;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .search-panel {
    top: 0;
    z-index: 25;
    min-height: 100vh;
  }

  .search-panel-inner {
    padding: 24px 0 42px;
  }

  .search-panel-form {
    grid-template-columns: minmax(0, 1fr) 92px;
    width: 100%;
    padding-right: 44px;
  }

  .search-panel-input {
    height: 52px;
    font-size: 15px;
  }

  .search-panel-submit {
    font-size: 15px;
  }

  .search-panel-close {
    top: 28px;
  }

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

  .news-section-inner {
    gap: 30px;
  }

  .news-tabs {
    gap: 18px;
  }

  .news-tabs button {
    font-size: 16px;
  }

  .news-card-body {
    padding: 20px;
  }

  .news-promo {
    padding: 24px;
  }

  .benefits-panel {
    padding: 24px;
  }

  .benefits-grid,
  .benefit-card-large {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 180px;
  }

  .benefit-card-large {
    min-height: auto;
    text-align: center;
  }

  .benefit-visual {
    width: min(82vw, 240px);
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    min-height: 720px;
    gap: 16px;
  }

  .hero .eyebrow {
    font-size: 18px;
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .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 {
    width: 36px;
    height: 36px;
  }

  .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,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .about-mining-hero {
    min-height: 280px;
  }

  .about-mining-hero p {
    font-size: 13px;
  }

  .about-hero-section {
    padding: 40px 0;
  }

  .about-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero-copy h1 {
    font-size: 32px;
  }

  .about-hero-copy p:not(.about-eyebrow),
  .about-closing-card p:not(.about-eyebrow) {
    font-size: 15px;
    line-height: 1.72;
  }

  .about-hero-media {
    min-height: 260px;
    padding: 24px;
  }

  .about-hero-media strong {
    font-size: 25px;
  }

  .about-story-section,
  .about-capability-section,
  .about-image-band,
  .about-closing-section {
    padding: 38px 0;
  }

  .about-story-card,
  .about-capability-card {
    padding: 24px;
  }

  .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,
  .store-sort-dropdown {
    flex: 1;
    width: 100%;
  }

  .detail-content-grid,
  .detail-spec-table,
  .detail-related-grid {
    grid-template-columns: 1fr;
  }

  .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: 1fr;
    border-bottom: 1px solid #edf0f3;
  }

  .detail-spec-table div:last-child {
    border-bottom: 0;
  }

  .detail-inquiry-panel {
    align-items: flex-start;
    flex-direction: column;
    margin: 0 20px 20px;
    padding: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    min-height: 0;
  }

.footer-brand-panel,
.footer-menu-panel,
.footer-support-panel,
.footer-newsletter-panel {
  padding: 42px 24px;
}

.footer-menu-panel,
.footer-support-panel,
.footer-newsletter-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

  .footer-logo img {
    width: 198px;
  }

.footer-newsletter {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 41px;
}

.footer-newsletter input {
  padding: 0 16px;
  font-size: 14px;
}

.footer-newsletter button {
  min-height: 41px;
  padding: 0 18px;
  font-size: 14px;
}

  .footer-socials {
    grid-template-columns: repeat(2, auto);
    gap: 18px 34px;
  }

  .section-title {
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin-bottom: 24px;
  }

  .section-title::after {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .section-learn-more {
    width: auto;
    min-width: 108px;
    min-height: 32px;
    padding: 0 16px;
  }

  .category-card {
    min-height: 156px;
    padding: 24px;
  }

  .fs-catalog-section {
    padding: 28px 0 36px;
  }

  .fs-category-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .fs-category-tab {
    min-width: 132px;
    min-height: 112px;
    scroll-snap-align: start;
    font-size: 12px;
  }

  .fs-tab-icon {
    width: 46px;
    height: 42px;
  }

  .fs-category-panel-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .fs-family-visual {
    height: 138px;
  }

  .fs-family-content {
    min-height: auto;
    padding: 20px;
  }

  .featured-products-section {
    padding: 44px 0 52px;
  }

  .featured-products-section h2 {
    margin-bottom: 22px;
  }

  .featured-product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .featured-product-visual {
    height: 168px;
  }

  .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;
  }

  .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 {
  width: 100%;
  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;
}

.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: 15px;
  font-weight: 900;
}

.account-profile strong,
.account-profile span {
  display: block;
}

.account-profile strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.account-profile span {
  margin-top: 4px;
  overflow: hidden;
  color: #6b7280;
  font-size: 13px;
  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: 14px;
  font-weight: 800;
  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: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.account-welcome p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

.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: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-stats strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.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: 22px;
  line-height: 1.2;
}

.account-card-head a {
  color: #174a97;
  font-size: 14px;
  font-weight: 900;
}

.account-card-head a:hover {
  color: var(--red);
}

.account-card p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.7;
}

.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: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.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: 16px;
  line-height: 1.45;
}

.address-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
}

.address-card p {
  margin: 0;
  color: #111111;
  font-size: 16px;
  line-height: 1.45;
}

.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: 14px;
  font-weight: 700;
  line-height: 1;
}

.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: 18px;
}

.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: 18px;
  font-weight: 500;
}

.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: 14px;
  font-weight: 500;
}

.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: 14px;
  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: 13px;
  line-height: 1.2;
}

.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: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
}

.address-form .address-form-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 13px;
  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: flex-end;
  gap: 12px;
}

.address-form-actions button {
  min-width: 64px;
  min-height: 32px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.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: 15px;
}

.account-table div:last-child {
  border-bottom: 0;
}

.account-table span:first-child,
.account-table span:last-child {
  color: var(--ink);
  font-weight: 900;
}

.account-table span:last-child {
  justify-self: start;
  border-radius: 999px;
  background: #f2f4f7;
  padding: 6px 12px;
  color: #174a97;
  font-size: 13px;
}

.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: 14px;
  font-weight: 800;
  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 52px;
  }

  .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;
  }

  .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);
  }

  .address-form-footer {
    align-items: flex-start;
    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: 14px;
  font-weight: 760;
  line-height: 1;
}

.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: 14px;
  font-weight: 900;
}

.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: 14px;
}

.orders-row:last-of-type {
  border-bottom: 0;
}

.orders-row span:first-child {
  color: var(--ink);
  font-weight: 900;
}

.orders-row mark {
  border-radius: 999px;
  background: #f3f4f6;
  padding: 6px 12px;
  color: #174a97;
  font-size: 12px;
  font-weight: 900;
  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: 12px;
  font-weight: 900;
  line-height: 1;
  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: 14px;
  font-weight: 800;
}

.orders-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding-top: 22px;
  color: #f97316;
  font-size: 14px;
  font-weight: 900;
}

.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: calc(100% - 44px);
    margin: 0 22px;
  }

  .account-email-row {
    align-items: stretch;
    flex-direction: column;
  }

  .account-details-field input:disabled {
    width: 100%;
  }
}

.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: 14px;
  font-weight: 800;
}

.account-settings-list strong {
  color: var(--ink);
  font-size: 15px;
}

.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: 16px;
  font-weight: 800;
}

.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: 14px;
  font-weight: 500;
}

.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: 14px;
  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: 14px;
  line-height: 1.4;
}

.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: 14px;
  font-weight: 700;
  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: 14px;
  font-weight: 800;
  cursor: pointer;
}

.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: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.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: 150px;
  font-weight: 900;
  line-height: 1;
  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: 28px;
  font-weight: 900;
}

.wallet-metric span,
.wallet-metric strong {
  display: block;
  color: #000000;
}

.wallet-metric span {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 900;
}

.wallet-metric strong {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.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: 30px;
  font-weight: 900;
}

.wallet-footer span {
  color: #7a7a7a;
  font-size: 14px;
  font-weight: 700;
  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: 104px;
  }

  .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: 468px;
  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: 468px;
}

.auth-heading {
  margin-bottom: 26px;
  text-align: center;
}

.auth-heading h1 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.auth-heading p {
  margin: 10px 0 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.auth-form {
  display: grid;
  gap: 18px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 760;
}

.auth-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d7dde6;
  border-radius: 4px;
  padding: 0 12px;
  color: var(--ink);
  font-size: 14px;
  outline: 0;
}

.auth-form input:focus {
  border-color: #174a97;
}

.auth-form input::placeholder {
  color: #cbd5e1;
}

.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: 13px;
  font-weight: 600;
  grid-template-columns: auto minmax(0, 1fr);
}

.auth-check input {
  width: 14px;
  min-height: 14px;
  accent-color: var(--red);
}

.auth-check a {
  color: #174a97;
  font-weight: 900;
}

.auth-check-stack {
  display: grid;
  gap: 16px;
}

.auth-row a,
.auth-switch a {
  color: #174a97;
  font-weight: 900;
}

.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: 15px;
  font-weight: 900;
}

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

.auth-primary:disabled,
.auth-code-field button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.auth-switch {
  margin: 24px 0 0;
  color: #4b5563;
  font-size: 14px;
  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: 13px;
  font-weight: 900;
}

@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;
  }
}
