:root {
  --blue: #111827;
  --blue-dark: #0b0f19;
  --deep: #05070b;
  --orange: #f26a21;
  --ink: #111827;
  --muted: #5f6b7a;
  --line: #d6d6d6;
  --soft: #f5f5f5;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 24, 39, .12);
  --container: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, .92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, visibility .18s ease;
}
body.is-transitioning .page-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.loader-card {
  width: min(100%, 270px);
  display: grid;
  justify-items: center;
  gap: 13px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(17, 24, 39, .18);
}
.loader-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.loader-card span {
  color: var(--deep);
  font-size: 15px;
  font-weight: 600;
}
.loader-bar {
  position: relative;
  width: 168px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #eeeeee;
}
.loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  animation: loaderSlide .78s ease-in-out infinite;
}
@keyframes loaderSlide {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(250%); }
}
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1800;
  display: block;
  border: 0;
  background: rgba(5, 7, 11, .48);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1900;
  width: min(100%, 430px);
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #fff;
  box-shadow: -24px 0 58px rgba(17, 24, 39, .22);
  transform: translateX(104%);
  transition: transform .24s ease;
}
body.cart-open .cart-drawer { transform: translateX(0); }
body.cart-open .cart-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.cart-open { overflow: hidden; }
.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer-head h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1;
}
.cart-drawer-list {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 18px 22px;
}
.drawer-cart-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.drawer-cart-item img {
  width: 82px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
}
.drawer-cart-item strong { display: block; line-height: 1.25; }
.drawer-cart-item p { margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.drawer-cart-item button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
}
.cart-drawer-empty {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 260px;
  color: var(--muted);
  text-align: center;
}
.cart-drawer-empty i { width: 52px; height: 52px; color: var(--blue); }
.cart-drawer-summary {
  display: grid;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}
.cart-drawer-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}
.cart-drawer-summary strong {
  color: var(--ink);
  font-size: 22px;
}
.cart-drawer-summary small { color: var(--muted); }

.site-header {
  position: relative;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
}
.header-promo {
  display: flex;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  background: #ffc400;
  color: #111827;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.header-promo span {
  min-width: 0;
  overflow-wrap: anywhere;
}
.header-promo .promo-mobile { display: none; }
.utility-bar {
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.utility-inner {
  max-width: var(--container);
  margin: 0 auto;
  min-height: 38px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.utility-left,
.utility-right,
.utility-right a,
.utility-right span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.utility-left a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.utility-right {
  justify-content: flex-end;
  gap: 22px;
  white-space: nowrap;
}
.utility-right svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}
.nav-shell {
  display: grid;
  grid-template-columns: 220px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 24px 24px;
}
.brand img {
  height: 62px;
  width: auto;
  max-width: 214px;
  object-fit: contain;
}
.nav-shell > .search {
  height: 46px;
}
.search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 46px;
  padding: 0 4px 0 18px;
  background: #fff;
  border: 1.5px solid #111827;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 24, 39, .05);
}
.search > svg {
  display: none;
}
.search input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #263244;
  font-size: 14px;
  font-weight: 600;
}
.search input::placeholder { color: #9aa3ad; opacity: 1; }
.search button {
  flex: 0 0 auto;
  width: 68px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  cursor: pointer;
}
.search button svg { width: 22px; height: 22px; stroke-width: 3; }
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: #111827;
  white-space: nowrap;
}
.nav-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 2px;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}
.nav-action-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-action-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 2;
}
.nav-action:hover { color: #000; }
.drawer-head,
.nav-overlay {
  display: none;
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}
.nav-actions .icon-button { width: 40px; height: 40px; }
.icon-button svg { width: 20px; height: 20px; stroke-width: 2; }
.icon-button:hover, .fav-toggle.active { color: var(--blue); border-color: var(--blue); }
.counter-link { position: relative; }
.counter-link em {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
}
.nav-toggle { display: none; }
.category-nav {
  border-top: 1px solid #f0edf3;
  border-bottom: 1px solid #e7e2eb;
  background: #fff;
}
.category-strip {
  max-width: var(--container);
  min-height: 74px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
}
.mega-menu {
  flex: 0 0 auto;
}
.all-categories {
  min-width: 198px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 4px;
  background: #ffc400;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.all-categories svg {
  width: 17px;
  height: 17px;
  stroke-width: 3;
}
.all-categories:hover,
.all-categories[aria-expanded="true"] {
  background: #f2b600;
  color: #05070b;
}
.mega-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  top: calc(100% - 2px);
  z-index: 45;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}
.mega-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.mega-panel-inner {
  overflow: hidden;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(5, 7, 11, .2);
}
.mega-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-bottom: 1px solid #ececf0;
  background: #fafafa;
}
.mega-panel-head span {
  display: block;
  color: #71717a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.mega-panel-head strong {
  display: block;
  margin-top: 4px;
  color: #05070b;
  font-size: 21px;
  font-weight: 700;
}
.mega-panel-head a {
  min-height: 0;
  flex: 0 0 auto;
  color: #05070b;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mega-content {
  display: grid;
  grid-template-columns: minmax(380px, .95fr) minmax(360px, .85fr) 300px;
  gap: 0;
  min-height: 454px;
}
.mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
}
.mega-category-card {
  min-height: 128px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  gap: 4px 12px;
  padding: 16px;
  border: 1px solid #ececf0;
  border-radius: 8px;
  background: #fff;
  color: #111827;
}
.mega-category-card:hover {
  border-color: #111827;
  box-shadow: 0 12px 28px rgba(17, 24, 39, .08);
  transform: translateY(-1px);
}
.mega-category-icon {
  grid-row: 1 / 4;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #05070b;
  color: #fff;
}
.mega-category-icon svg {
  width: 22px;
  height: 22px;
}
.mega-category-card strong {
  min-width: 0;
  color: #05070b;
  font-size: 16px;
  font-weight: 700;
}
.mega-category-card small {
  min-width: 0;
  color: #71717a;
  font-size: 12px;
  line-height: 1.45;
}
.mega-category-card em {
  align-self: end;
  color: #111827;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}
.mega-departments {
  padding: 18px 18px 18px 0;
  border-left: 1px solid #ececf0;
}
.mega-column-head {
  min-height: 64px;
  padding: 0 18px 14px;
  border-bottom: 1px solid #ececf0;
}
.mega-column-head span {
  display: block;
  color: #71717a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.mega-column-head strong {
  display: block;
  margin-top: 4px;
  color: #05070b;
  font-size: 18px;
  font-weight: 700;
}
.mega-department-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  padding: 14px 18px 0;
}
.mega-department {
  min-width: 0;
  padding: 8px 0 12px;
}
.mega-department-title {
  min-height: 0 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #05070b !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}
.mega-department-title svg {
  width: 17px;
  height: 17px;
}
.mega-department > a:not(.mega-department-title) {
  min-height: 0;
  display: block;
  margin: 7px 0;
  overflow: hidden;
  color: #52525b;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-department > a:not(.mega-department-title):hover {
  color: #05070b;
}
.mega-feature {
  padding: 18px;
  border-left: 1px solid #ececf0;
  background: #f7f7f8;
}
.mega-feature-kicker {
  display: block;
  margin-bottom: 10px;
  color: #71717a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.mega-feature > a {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid #e4e4e7;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
}
.mega-feature > a span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mega-feature > a strong {
  flex: 0 0 auto;
  color: #05070b;
  font-size: 12px;
  font-weight: 700;
}
.mega-promo-card {
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #05070b;
  color: #fff;
}
.mega-promo-card svg {
  width: 26px;
  height: 26px;
  margin-bottom: 10px;
  color: #ffc400;
}
.mega-promo-card strong {
  display: block;
  font-size: 17px;
  font-weight: 700;
}
.mega-promo-card small {
  display: block;
  margin-top: 6px;
  color: #d4d4d8;
  line-height: 1.45;
}
.main-nav {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}
.main-nav a:hover { color: #000; }
@media (min-width: 1051px) {
  .category-strip .main-nav {
    position: static !important;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
    transform: none !important;
    box-shadow: none !important;
  }
}
@media (max-width: 1220px) {
  .utility-right { gap: 14px; }
  .nav-shell {
    grid-template-columns: 190px minmax(280px, 1fr) auto;
    gap: 18px;
  }
  .brand img { height: 56px; }
  .nav-actions { gap: 13px; }
  .nav-action > span:not(.nav-action-icon) { display: none; }
  .nav-action-icon { width: 32px; height: 32px; }
  .nav-action-icon svg { width: 24px; height: 24px; }
  .category-strip { gap: 22px; }
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 14px; }
  .mega-panel { left: 18px; right: 18px; }
  .mega-content { grid-template-columns: minmax(320px, .9fr) minmax(300px, .85fr) 270px; }
  .mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mega-department-grid { grid-template-columns: 1fr; }
}
.hero-slider {
  position: relative;
  width: 100%;
  margin: 0;
  background: #05070b;
}
.hero-viewport {
  overflow: hidden;
  border-radius: 0;
}
.hero-track {
  position: relative;
  display: block;
  height: clamp(520px, 72vh, 760px);
  gap: 0;
}
.hero-track .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .36s ease, visibility .36s ease;
  pointer-events: none;
}
.hero-track .hero-slide:first-child {
  opacity: 1;
  visibility: visible;
}
.hero-track.is-ready .hero-slide:first-child {
  opacity: 0;
  visibility: hidden;
}
.hero-track.is-ready .hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero-slide {
  min-height: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, .96) 0%, rgba(5, 7, 11, .84) 48%, rgba(5, 7, 11, .54) 100%),
    url("images/hero-store.png") center / cover no-repeat;
}
.hero-slide-photo,
.hero-slide-blue,
.hero-slide-orange { background-position: center; }
.hero-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 72px 24px 92px;
}
.hero-inner h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}
.hero-inner p {
  max-width: 650px;
  margin: 0 0 28px;
  color: #e5e7eb;
  font-size: 18px;
}
.hero-slider-controls {
  position: absolute;
  left: 50%;
  bottom: 26px;
  width: min(var(--container), 100%);
  box-sizing: border-box;
  padding: 0 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.hero-slider-controls > * {
  pointer-events: auto;
}
.hero-dots {
  justify-content: flex-start;
  margin-top: 0;
}
.hero-dots button {
  background: rgba(255, 255, 255, .5);
}
.hero-dots button.active {
  background: #fff;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: 18px;
  align-items: stretch;
  max-width: var(--container);
  margin: 16px auto 0;
  padding: 0 22px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 36px;
  min-height: 405px;
  background: #0b0f19;
  color: #fff;
  border-radius: 8px;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
}
.hero h1, .page-hero h1 {
  margin: 11px 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}
.hero p { max-width: 620px; margin: 0 0 18px; color: #e5e7eb; font-size: 16px; }
.hero-actions, .detail-actions, .card-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.detail-actions {
  flex-wrap: nowrap;
  align-items: stretch;
}
.detail-actions .button {
  flex: 1 1 auto;
}
.detail-actions .detail-fav {
  width: 56px;
  height: auto;
  min-height: 46px;
  flex: 0 0 56px;
  color: var(--blue);
  border-color: var(--blue);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  cursor: pointer;
}
.button.secondary { background: #fff; color: var(--blue); }
.button.small { min-height: 38px; padding: 0 12px; font-size: 13px; }
.button.wide { width: 100%; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.hero-metrics span {
  padding: 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: #d1d5db;
}
.hero-metrics strong { display: block; color: #fff; font-size: 24px; line-height: 1; }
.hero-visual {
  min-height: 405px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--soft);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.campaign-section { padding-top: 26px; }
.compact-head { margin-bottom: 14px; }
.carousel { position: relative; }
.carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-track {
  position: relative;
  left: 0;
  display: flex;
  gap: 16px;
  transition: left .28s ease;
}
.campaign-track { gap: 0; }
.campaign-track .campaign-slide {
  flex: 0 0 100%;
}
.campaign-slide {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 8px;
  padding: 26px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #111827, #05070b);
}
.campaign-slide.orange { background: linear-gradient(135deg, #1f2937, #05070b); }
.campaign-slide.green { background: linear-gradient(135deg, #27272a, #09090b); }
.campaign-slide span { color: rgba(255,255,255,.78); font-weight: 700; text-transform: uppercase; font-size: 12px; }
.campaign-slide strong { max-width: 560px; font-size: 27px; line-height: 1.05; font-weight: 750; }
.campaign-slide small { color: rgba(255,255,255,.82); font-weight: 650; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}
.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #a3aab5;
  cursor: pointer;
}
.carousel-dots button.active { width: 24px; background: var(--blue); }
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 46px 22px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}
.section-head.tight { align-items: center; }
.section-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-head h2, .promo-copy h2, .feature-panel h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.05;
}
.text-link { color: var(--blue); font-weight: 700; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}
.category-tile {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 26px rgba(17, 24, 39, .05);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.category-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 16px 34px rgba(17, 24, 39, .14);
  transform: translateY(-2px);
}
.category-tile svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 8px;
  color: var(--blue);
  background: #f4f4f5;
  stroke-width: 2.1;
}
.category-tile strong { font-size: 24px; line-height: 1.05; }
.category-tile small { color: var(--muted); line-height: 1.55; }
.product-track .product-card {
  flex: 0 0 calc((100% - 72px) / 5);
}
.product-carousel.compact .product-card {
  flex-basis: calc((100% - 72px) / 5);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.related-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(17, 24, 39, .06);
}
.product-media {
  position: relative;
  display: block;
  aspect-ratio: 1.18 / 1;
  background: var(--soft);
  overflow: hidden;
}
.product-media a {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .24s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-media a > span {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.media-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-color: rgba(17, 24, 39, .12);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 24px rgba(5, 7, 11, .12);
}
.media-fav svg {
  width: 21px;
  height: 21px;
}
.media-fav:hover,
.media-fav.active {
  color: #05070b;
  border-color: #05070b;
  background: #fff;
}
.product-info { padding: 14px; }
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-meta span {
  color: #16803a;
  font-size: 12px;
  font-weight: 700;
}
.product-category { color: var(--blue); font-weight: 700; font-size: 12px; text-transform: uppercase; }
.product-info h3 {
  min-height: 44px;
  margin: 7px 0;
  display: -webkit-box;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-info p { min-height: 58px; margin: 0 0 12px; color: var(--muted); font-size: 13px; }
.price-line, .detail-price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 14px; }
.price-line strong, .detail-price strong { color: var(--ink); font-size: 24px; }
del { color: #8a95a5; font-size: 14px; }
.product-card .card-actions {
  width: 100%;
}
.product-card .card-actions .button.small {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 16px;
  justify-content: center;
  white-space: nowrap;
}
.blue-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: center;
  padding-left: max(22px, calc((100vw - var(--container)) / 2 + 22px));
  padding-right: max(22px, calc((100vw - var(--container)) / 2 + 22px));
  background: #0b0f19;
  color: #fff;
}
.promo-copy p { max-width: 700px; color: #e5e7eb; }
.promo-stack { display: grid; gap: 12px; }
.promo-stack a {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  font-weight: 700;
}
.split-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
}
.feature-panel {
  padding: 30px;
  border-radius: 8px;
  background: var(--soft);
}
.feature-panel p { color: var(--muted); }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mini-grid div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.mini-grid strong { display: block; font-size: 18px; margin-bottom: 8px; }
.mini-grid span { color: var(--muted); }
.about-company {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: stretch;
}
.about-intro {
  display: grid;
  gap: 14px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.about-intro h2 {
  max-width: 980px;
  margin: 0;
  color: #05070b;
  font-size: 34px;
  line-height: 1.12;
}
.about-intro p {
  max-width: 900px;
  margin: 0;
  color: #3f3f46;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  gap: 14px;
}
.about-stats div {
  display: grid;
  align-content: center;
  min-height: 136px;
  padding: 24px;
  border-radius: 8px;
  background: #05070b;
  color: #fff;
}
.about-stats strong {
  font-size: 42px;
  line-height: 1;
}
.about-stats span {
  margin-top: 8px;
  color: #d4d4d8;
  font-weight: 600;
}
.about-mission {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 10px;
}
.about-mission article,
.about-value-grid article {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .05);
}
.about-mission i,
.about-value-grid i {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  background: #05070b;
}
.about-mission h2 {
  margin: 0;
  color: #05070b;
  font-size: 26px;
  line-height: 1.18;
}
.about-mission p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.about-values {
  padding-top: 20px;
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.about-value-grid article {
  min-height: 224px;
  align-content: start;
}
.about-value-grid strong {
  color: #05070b;
  font-size: 18px;
}
.about-value-grid span {
  color: var(--muted);
  line-height: 1.55;
}
.about-process {
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding-top: 22px;
}
.about-process h2 {
  margin: 4px 0 10px;
  font-size: 30px;
  line-height: 1.12;
}
.about-process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.about-process ol {
  counter-reset: process-step;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-process li {
  counter-increment: process-step;
  position: relative;
  min-height: 142px;
  padding: 20px 20px 20px 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}
.about-process li::before {
  content: counter(process-step);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #05070b;
  color: #fff;
  font-weight: 700;
}
.about-process strong {
  display: block;
  margin-bottom: 6px;
}
.about-process span {
  color: var(--muted);
  line-height: 1.5;
}
.about-process .button {
  align-self: end;
  white-space: nowrap;
}
.about-cta {
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 8px;
  background: #05070b;
  color: #fff;
}
.about-cta h2 {
  max-width: 760px;
  margin: 4px 0 8px;
  font-size: 32px;
  line-height: 1.1;
}
.about-cta p {
  max-width: 680px;
  margin: 0;
  color: #d4d4d8;
}
.brand-service-section {
  padding-top: 48px;
  padding-bottom: 68px;
}
.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin: 8px 0 52px;
}
.brand-logo {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 16px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.brand-logo:hover {
  border-color: #c7c7c7;
  box-shadow: 0 16px 34px rgba(17, 24, 39, .08);
  transform: translateY(-2px);
}
.brand-logo img {
  width: 100%;
  max-width: 118px;
  max-height: 32px;
  object-fit: contain;
}
.service-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}
.service-benefits article {
  display: grid;
  justify-items: center;
  gap: 11px;
  text-align: center;
  color: var(--ink);
}
.benefit-icon {
  width: 82px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: linear-gradient(180deg, #f4f4f5 0%, #ffffff 100%);
  box-shadow: inset 0 0 0 1px #e5e5e5, 0 12px 28px rgba(17, 24, 39, .10);
}
.benefit-icon i {
  width: 31px;
  height: 31px;
  stroke-width: 1.9;
}
.service-benefits strong {
  max-width: 270px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.35;
}
.service-benefits span {
  max-width: 300px;
  color: #3f3f46;
  font-size: 14px;
  line-height: 1.55;
}
.page-hero {
  max-width: none;
  margin: 0;
  padding: 64px max(22px, calc((100vw - var(--container)) / 2 + 22px));
  display: flex;
  justify-content: flex-start;
  gap: 22px;
  align-items: end;
  border-radius: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, .96) 0%, rgba(5, 7, 11, .82) 48%, rgba(5, 7, 11, .56) 100%),
    url("images/hero-store.png") center / cover no-repeat;
}
.page-hero.small {
  background:
    linear-gradient(90deg, rgba(5, 7, 11, .96) 0%, rgba(5, 7, 11, .82) 48%, rgba(5, 7, 11, .56) 100%),
    url("images/hero-store.png") center / cover no-repeat;
}
.page-hero p { max-width: 720px; margin: 0; color: #e5e7eb; }
.page-hero div,
.page-hero p {
  min-width: 0;
}
.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.shop-results { min-width: 0; }
.filters {
  position: sticky;
  top: 115px;
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17, 24, 39, .06);
}
.filter-group {
  display: grid;
  gap: 9px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.filter-group:last-of-type { padding-bottom: 0; border-bottom: 0; }
.filters h2 { margin: 0; font-size: 20px; }
.side-category-nav {
  display: grid;
  gap: 7px;
}
.side-category-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #263244;
  font-weight: 600;
}
.side-category-nav a:hover {
  color: var(--blue);
  background: #f4f4f5;
}
.side-category-nav a.active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(17, 24, 39, .18);
}
.side-category-nav span {
  min-width: 26px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f4f4f5;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}
.side-category-nav a.active span {
  color: var(--blue);
  background: #fff;
}
.filters label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  font-weight: 600;
}
.filters label input { width: 16px; height: 16px; padding: 0; }
.filter-block { display: grid; gap: 8px; }
select, input, textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: #fff;
}
.breadcrumb {
  max-width: var(--container);
  margin: 22px auto 0;
  padding: 0 22px;
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}
.product-detail {
  max-width: var(--container);
  margin: 22px auto 0;
  padding: 0 22px 20px;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(500px, 1fr);
  gap: 36px;
  align-items: start;
}
.main-product-image {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}
.main-product-image img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  max-height: 680px;
  object-fit: cover;
}
.thumb-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
.thumb {
  height: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
}
.thumb.active { border-color: var(--blue); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 {
  max-width: 760px;
  margin: 10px 0 12px;
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.12;
  font-weight: 750;
  overflow-wrap: anywhere;
}
.detail-summary { color: var(--muted); font-size: 17px; }
.rating-line { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.stars { color: var(--orange); letter-spacing: 0; }
.detail-price strong { font-size: 36px; }
.option-block, .quantity-row { margin: 22px 0; }
.option-block span, .quantity-row span { display: block; margin-bottom: 8px; font-weight: 700; }
.size-options { display: flex; flex-wrap: wrap; gap: 8px; }
.size-options button {
  min-width: 54px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}
.size-options button.active { border-color: var(--blue); color: var(--blue); font-weight: 700; }
.stepper { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.stepper button { width: 42px; border: 0; background: var(--soft); font-weight: 700; cursor: pointer; }
.stepper input { width: 58px; border: 0; text-align: center; border-radius: 0; }
.detail-stepper {
  flex: 0 0 144px;
  min-height: 46px;
}
.detail-stepper input { width: 56px; }
.delivery-card {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.delivery-card div { display: flex; gap: 10px; color: var(--muted); }
.detail-tabs { padding-top: 22px; }
.tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); }
.tabs button {
  padding: 12px 16px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  font-size: 16px;
  font-weight: 750;
  cursor: pointer;
}
.tabs button.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; padding: 22px 0; }
.tab-panel.active { display: block; }
.product-description-block {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fafafa;
}
.product-description-block h3 {
  margin: 0;
  color: #05070b;
  font-size: 20px;
}
.product-description-block p {
  margin: 0;
  color: #3f3f46;
  line-height: 1.7;
}
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}
.spec-list li { display: flex; gap: 10px; align-items: center; padding: 14px; background: var(--soft); border-radius: 8px; }
.reviews-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 24px;
  align-items: start;
}
.reviews-list, .review-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(17, 24, 39, .06);
}
.reviews-list { padding: 22px; }
.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.review-head h2, .review-form h3 { margin: 4px 0 0; }
.review-score {
  min-width: 102px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--deep);
  text-align: center;
}
.review-score strong { display: block; font-size: 30px; line-height: 1; }
.review-score span { display: block; margin-top: 5px; font-size: 13px; color: rgba(255,255,255,.82); }
.review-card {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.review-card div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.review-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.review-form {
  display: grid;
  gap: 13px;
  padding: 22px;
}
.review-form label {
  gap: 8px;
  color: #344054;
  font-weight: 400;
}
.review-form input,
.review-form select,
.review-form textarea {
  font-weight: 400;
}
.auth-shell {
  min-height: 640px;
  display: grid;
  place-items: center;
  padding: 50px 22px;
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
}
.auth-card, .contact-form, .cart-summary {
  width: min(100%, 480px);
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.auth-card h1 { margin: 0; font-size: 38px; }
label { display: grid; gap: 7px; font-weight: 600; }
.check, .form-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 14px; }
.auth-card label {
  color: #263244;
  font-weight: 500;
}
.auth-card input {
  font-weight: 400;
}
.auth-card input::placeholder {
  color: #7a8494;
  font-weight: 400;
}
.auth-card .check,
.auth-card .form-row,
.auth-card p {
  font-weight: 400;
}
.auth-card .check {
  justify-content: flex-start;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.contact-form { width: 100%; }
.contact-form h2 { margin: 0; font-size: 30px; }
.contact-form p { margin: 0; color: var(--muted); }
.contact-form label {
  gap: 8px;
  color: #344054;
  font-weight: 400;
}
.contact-form input,
.contact-form textarea {
  font-weight: 400;
}
.contact-info {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-card {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.contact-card i {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  color: var(--blue);
  background: #f4f4f5;
}
.contact-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-card a,
.contact-card strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 850;
}
.contact-card small { color: var(--muted); line-height: 1.4; }
.contact-map {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.contact-map h2 { margin: 4px 0 0; font-size: 26px; }
iframe { width: 100%; min-height: 360px; border: 0; border-radius: 8px; }
.tracking-layout {
  display: grid;
  grid-template-columns: minmax(320px, 560px);
  gap: 24px;
  align-items: start;
  justify-content: center;
  min-width: 0;
}
.tracking-layout.has-result {
  grid-template-columns: minmax(340px, 460px) minmax(0, 740px);
  justify-content: center;
}
.tracking-panel,
.tracking-result {
  min-width: 0;
  width: 100%;
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.tracking-panel h2,
.tracking-result h2 {
  margin: 4px 0 0;
  font-size: 30px;
  line-height: 1.05;
}
.tracking-panel p,
.tracking-panel small {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.tracking-panel label {
  color: #344054;
  font-weight: 500;
}
.tracking-panel input {
  min-width: 0;
  font-weight: 500;
  text-transform: uppercase;
}
.tracking-result[hidden] {
  display: none;
}
.tracking-result-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.tracking-result-head strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f5f5f5;
  color: #111827;
  white-space: nowrap;
}
.tracking-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.tracking-summary div {
  display: grid;
  gap: 5px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}
.tracking-summary i {
  width: 28px;
  height: 28px;
  color: #111827;
}
.tracking-summary span {
  color: var(--muted);
  font-size: 12px;
}
.tracking-summary strong {
  font-size: 15px;
}
.tracking-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}
.tracking-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  padding: 0 0 22px;
}
.tracking-steps li::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 38px;
  bottom: 0;
  width: 2px;
  background: #e4e9f2;
}
.tracking-steps li:last-child {
  padding-bottom: 0;
}
.tracking-steps li:last-child::after {
  display: none;
}
.tracking-steps i {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  color: #7a8494;
  background: #eef1f6;
}
.tracking-steps li.done i,
.tracking-steps li.active i {
  color: #fff;
  background: #111827;
}
.tracking-steps strong {
  display: block;
  margin: 2px 0 3px;
}
.tracking-steps span {
  color: var(--muted);
  line-height: 1.45;
}
.tracking-help {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 8px;
  background: #fafafa;
  color: #344054;
}
.tracking-help i {
  width: 22px;
  height: 22px;
}
.tracking-help a {
  color: var(--blue);
  font-weight: 700;
}
.legal-content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.legal-content article {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.legal-content h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.12;
}
.legal-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.legal-content .button {
  align-self: end;
  margin-top: 8px;
}
.legal-detail {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.legal-nav {
  position: sticky;
  top: 22px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .05);
}
.legal-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111827;
  font-weight: 700;
}
.legal-nav a:hover,
.legal-nav a.active {
  background: #05070b;
  color: #fff;
}
.legal-detail article {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.legal-detail h2 {
  margin: 14px 0 0;
  color: #05070b;
  font-size: 25px;
  line-height: 1.18;
}
.legal-detail h2:first-of-type {
  margin-top: 0;
}
.legal-detail p {
  margin: 0;
  color: #3f3f46;
  line-height: 1.72;
}
.legal-note {
  padding: 14px 16px;
  border-left: 4px solid #ffc400;
  border-radius: 8px;
  background: #fff8db;
  color: #3f3f46;
  font-weight: 600;
}
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}
.cart-main { display: grid; gap: 22px; min-width: 0; }
.cart-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}
.cart-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}
.cart-panel-head h2 { margin: 4px 0 0; font-size: 28px; line-height: 1.05; }
.cart-panel-head strong {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #f4f4f5;
  white-space: nowrap;
}
.cart-list { display: grid; gap: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.cart-item img { width: 96px; height: 78px; object-fit: cover; border-radius: 8px; background: var(--soft); }
.cart-item strong:last-child { font-size: 18px; white-space: nowrap; }
.cart-item p { margin: 4px 0 8px; color: var(--muted); }
.cart-item button {
  width: fit-content;
  border: 0;
  padding: 0;
  color: var(--blue);
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}
.cart-empty-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px dashed #b9c7dc;
  border-radius: 8px;
  background: linear-gradient(135deg, #fafafa, #f4f4f5);
}
.cart-empty-card i {
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}
.cart-empty-card h2 { margin: 0 0 4px; font-size: 24px; }
.cart-empty-card p { margin: 0 0 14px; color: var(--muted); }
.cart-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.cart-service-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.cart-service-grid i { color: var(--blue); }
.cart-service-grid strong { font-size: 15px; }
.cart-service-grid span { color: var(--muted); font-size: 13px; }
.cart-recommendations {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.cart-reco-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cart-summary { width: 100%; position: sticky; top: 115px; box-shadow: 0 12px 34px rgba(17, 24, 39, .07); }
.cart-summary div { display: flex; justify-content: space-between; gap: 12px; }
.cart-summary .grand { padding-top: 12px; border-top: 1px solid var(--line); font-size: 20px; }
.coupon-box {
  display: grid !important;
  gap: 8px !important;
  padding: 14px;
  border-radius: 8px;
  background: var(--soft);
}
.coupon-box > span { font-weight: 700; }
.coupon-box div { display: grid; grid-template-columns: 1fr auto; gap: 8px; }
.coupon-box input { min-width: 0; }
.coupon-box .button { min-height: 42px; padding: 0 14px; }
.summary-note {
  align-items: start;
  padding: 12px;
  border-radius: 8px;
  color: var(--muted);
  background: #fafafa;
  font-size: 13px;
}
.summary-note i { flex: 0 0 auto; color: var(--blue); }
.summary-payments { justify-content: flex-start !important; flex-wrap: wrap; }
.summary-payments img {
  width: 78px;
  height: 34px;
  object-fit: contain;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff;
}
.empty-state {
  display: none;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.empty-state.show { display: grid; place-items: center; gap: 10px; }
.site-footer {
  margin-top: 36px;
  background: #05070b;
  color: #e5e7eb;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 46px 22px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 28px;
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  max-width: 230px;
  padding: 0;
  margin-bottom: 14px;
}
.footer-logo {
  width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-footer h3 { color: #fff; margin: 0 0 12px; }
.site-footer a { display: block; margin: 8px 0; color: #e5e7eb; }
.payments { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.payments img {
  width: 78px;
  height: 34px;
  object-fit: contain;
  padding: 6px 9px;
  border-radius: 6px;
  background: #fff;
}
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 22px 28px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: #9ca3af;
  font-size: 13px;
}
@media (max-width: 1050px) {
  .site-header {
    z-index: 1000;
  }
  .utility-bar { display: none; }
  .header-promo {
    min-height: 38px;
    padding: 10px 14px;
    font-size: 13px;
  }
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 18px 16px;
  }
  .brand {
    grid-column: 1;
    grid-row: 1;
  }
  .nav-actions {
    grid-column: 2;
    grid-row: 1;
  }
  .brand img { height: 52px; max-width: 190px; }
  .nav-shell > .search {
    grid-column: 1 / -1;
    grid-row: 2;
    width: min(100%, 720px);
    justify-self: center;
  }
  .category-nav {
    min-height: 0;
    border: 0;
  }
  .category-strip {
    min-height: 0;
    padding: 0;
    display: block;
  }
  .mega-menu,
  .all-categories { display: none; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: auto;
    z-index: 1200;
    width: min(82vw, 330px);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 2px;
    padding: 14px 18px 28px;
    background: #fff !important;
    border-right: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 18px 0 44px rgba(17, 24, 39, .18);
    transform: translateX(-100%);
    transition: transform .22s ease;
  }
  .main-nav.open { transform: translateX(0) !important; }
  .main-nav a {
    min-height: 0;
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    background: #fff;
  }
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--line);
  }
  .drawer-head img { height: 48px; width: auto; max-width: 190px; object-fit: contain; }
  .drawer-close { width: 38px; height: 38px; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    border: 0;
    background: rgba(5, 7, 11, .52);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
  }
  .nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  body.menu-open { overflow: hidden; }
  .nav-actions {
    gap: 8px;
  }
  .nav-action {
    width: 40px;
    padding: 0;
    justify-content: center;
  }
  .nav-action:nth-of-type(1),
  .nav-action:nth-of-type(2) {
    display: none;
  }
  .hero, .split-feature, .contact-grid, .cart-layout, .reviews-shell, .tracking-layout,
  .about-company, .about-process, .legal-detail { grid-template-columns: 1fr; }
  .about-mission { grid-template-columns: 1fr; }
  .about-value-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-process .button { justify-self: start; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
  .product-detail { grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr); }
  .contact-form { width: 100%; }
  .contact-info { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tracking-summary { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cart-summary { position: static; }
  .cart-service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cart-reco-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero { gap: 16px; }
  .hero-copy, .hero-visual { min-height: 290px; }
  .category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-track .product-card,
  .product-carousel.compact .product-card { flex-basis: calc((100% - 32px) / 3); }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-layout { grid-template-columns: 1fr; }
  .filters {
    position: static;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .filter-group,
  .filter-block { grid-column: 1 / -1; }
  .side-category-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .header-promo {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1.2;
  }
  .header-promo span {
    display: block;
    max-width: 100%;
    white-space: normal;
  }
  .header-promo .promo-desktop { display: none; }
  .header-promo .promo-mobile { display: block; }
  .nav-shell {
    grid-template-columns: minmax(128px, 1fr) auto;
    padding: 12px 12px 14px;
    gap: 10px;
    max-width: 100%;
    overflow: hidden;
  }
  .brand img {
    width: min(158px, calc(100vw - 184px));
    height: auto;
    max-height: 50px;
  }
  .nav-shell > .search {
    margin-top: 2px;
  }
  .search {
    min-height: 42px;
    padding-left: 14px;
  }
  .search button {
    width: 54px;
    height: 34px;
  }
  .nav-actions {
    justify-content: flex-end;
    align-self: center;
    gap: 4px;
  }
  .nav-actions .icon-button { width: 34px; height: 34px; }
  .nav-actions .icon-button svg { width: 19px; height: 19px; }
  .nav-action {
    width: 34px;
    min-height: 34px;
  }
  .nav-action-icon {
    width: 30px;
    height: 30px;
  }
  .nav-action-icon svg {
    width: 21px;
    height: 21px;
  }
  .counter-link em {
    top: -4px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    font-size: 10px;
  }
  .hero-track { height: 560px; }
  .hero-slide { min-height: 100%; }
  .hero-inner { padding: 54px 18px 84px; }
  .hero-inner h1 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: break-word;
  }
  .hero-inner p {
    max-width: 100%;
    font-size: 16px;
  }
  .hero-slider-controls { bottom: 20px; width: 100%; padding: 0 18px; }
  .hero { padding: 0 14px 8px; margin-top: 12px; }
  .hero-copy { padding: 26px 22px; min-height: auto; }
  .hero h1, .page-hero h1 { font-size: 34px; }
  .hero p { font-size: 16px; }
  .hero-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
  .hero-metrics span { padding: 8px; font-size: 12px; }
  .hero-metrics strong { font-size: 21px; }
  .tabs { overflow-x: auto; }
  .tabs button { white-space: nowrap; }
  .reviews-list,
  .review-form { padding: 16px; }
  .tracking-panel,
  .tracking-result { padding: 18px; }
  .tracking-panel .button {
    min-width: 0;
    width: 100%;
  }
  .tracking-summary { grid-template-columns: 1fr; }
  .tracking-result-head,
  .tracking-help {
    grid-template-columns: 1fr;
  }
  .tracking-result-head {
    display: grid;
  }
  .tracking-result-head strong {
    width: fit-content;
  }
  .legal-content article,
  .legal-detail article {
    padding: 20px;
  }
  .legal-detail h2 {
    font-size: 21px;
  }
  .legal-nav {
    padding: 12px;
  }
  .about-intro {
    padding: 22px;
  }
  .about-intro h2,
  .about-cta h2 {
    font-size: 25px;
    line-height: 1.18;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-stats div {
    min-height: 104px;
    padding: 18px;
  }
  .about-stats strong {
    font-size: 34px;
  }
  .about-mission article,
  .about-value-grid article {
    padding: 20px;
  }
  .about-mission h2,
  .about-process h2 {
    font-size: 24px;
  }
  .about-value-grid,
  .about-process ol {
    grid-template-columns: 1fr;
  }
  .about-process li {
    min-height: auto;
  }
  .about-cta {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .review-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .review-score {
    width: 100%;
    text-align: left;
  }
  .hero-visual { display: none; }
  .campaign-slide strong { font-size: 22px; }
  .campaign-slide { min-height: 155px; padding: 20px; }
  .section { padding: 38px 14px; }
  .section-head { align-items: start; flex-direction: column; }
  .section-actions {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .section-actions .slider-controls { order: -1; }
  .blue-band { grid-template-columns: 1fr; padding: 38px 14px; }
  .page-hero { margin: 0; padding: 42px 18px; flex-direction: column; align-items: start; }
  .page-hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .brand-service-section { padding-bottom: 42px; }
  .brand-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 36px;
  }
  .brand-logo { min-height: 58px; padding: 12px 10px; border-radius: 14px; }
  .brand-logo img { max-width: 102px; max-height: 28px; }
  .service-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
  }
  .service-benefits article { gap: 9px; }
  .benefit-icon { width: 66px; height: 52px; }
  .benefit-icon i { width: 26px; height: 26px; }
  .service-benefits strong { font-size: 14px; line-height: 1.25; max-width: 160px; }
  .service-benefits span { font-size: 12px; line-height: 1.35; max-width: 160px; }
  .mini-grid, .spec-list { grid-template-columns: 1fr; }
  .shop-layout { padding-left: 10px; padding-right: 10px; }
  .shop-results .section-head.tight {
    gap: 12px;
    margin-bottom: 16px;
  }
  .shop-results .section-head.tight h2 { font-size: 27px; }
  .shop-results .section-head.tight select { width: 100%; min-height: 42px; }
  .filters {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    margin-bottom: 8px;
  }
  .filter-group,
  .filter-block { grid-column: 1 / -1; }
  .filters h2 { font-size: 18px; }
  .side-category-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .side-category-nav a {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 13px;
  }
  .filter-group:not(.category-filter) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .filter-group:not(.category-filter) h2 {
    grid-column: 1 / -1;
  }
  .filters label {
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    font-size: 13px;
  }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category-tile { min-height: 176px; padding: 15px; gap: 8px; }
  .category-tile svg { width: 38px; height: 38px; padding: 8px; }
  .category-tile strong { font-size: 20px; }
  .category-tile small { display: block; font-size: 12px; line-height: 1.45; }
  .product-track .product-card,
  .product-carousel.compact .product-card {
    flex: 0 0 calc((100% - 10px) / 2);
  }
  .product-track { gap: 10px; }
  .product-media { aspect-ratio: 1.02 / 1; }
  .product-info { padding: 11px 12px 12px; }
  .product-info h3 {
    min-height: 42px;
    margin: 5px 0;
    font-size: 14px;
  }
  .product-info p {
    min-height: 0;
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-media a > span {
    top: 8px;
    left: 8px;
    padding: 5px 8px;
    font-size: 11px;
  }
  .media-fav {
    top: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
  }
  .media-fav svg {
    width: 18px;
    height: 18px;
  }
  .product-category,
  .product-meta span { font-size: 11px; }
  .price-line { margin-bottom: 10px; }
  .price-line strong { font-size: 17px; }
  .price-line del { display: none; }
  .button.small {
    min-height: 34px;
    padding: 0 8px;
    font-size: 11px;
    gap: 5px;
  }
  .product-card .card-actions .button.small {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
  .button.small svg { width: 16px; height: 16px; }
  .card-actions { gap: 6px; flex-wrap: nowrap; }
  .detail-actions { gap: 8px; }
  .detail-stepper { flex-basis: 118px; }
  .detail-stepper button { width: 34px; }
  .detail-stepper input { width: 50px; }
  .detail-actions .detail-fav { flex-basis: 46px; width: 46px; }
  .product-detail { grid-template-columns: 1fr; padding: 0 14px 12px; gap: 22px; }
  .main-product-image img { aspect-ratio: 1.12 / 1; max-height: 420px; }
  .detail-info h1 {
    font-size: 27px;
    line-height: 1.16;
  }
  .thumb { height: 70px; }
  .contact-grid { padding-left: 14px; padding-right: 14px; }
  .contact-form { padding: 20px; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-card { min-height: auto; padding: 18px; }
  .contact-card a,
  .contact-card strong { font-size: 18px; }
  .contact-map { padding: 16px; }
  iframe { min-height: 300px; }
  .cart-layout { padding-left: 14px; padding-right: 14px; }
  .cart-panel,
  .cart-recommendations,
  .cart-summary { padding: 16px; }
  .cart-panel-head { align-items: center; margin-bottom: 14px; }
  .cart-panel-head h2 { font-size: 22px; }
  .cart-empty-card {
    grid-template-columns: 1fr;
    text-align: center;
    place-items: center;
    padding: 22px 16px;
  }
  .cart-empty-card i { margin: 0 auto; }
  .cart-service-grid { grid-template-columns: 1fr; }
  .cart-reco-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cart-item { grid-template-columns: 76px 1fr; }
  .cart-item img { width: 76px; height: 66px; }
  .cart-item strong:last-child { grid-column: 2; font-size: 16px; }
  .cart-item .button { grid-column: 1 / -1; }
  .coupon-box div { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
    padding: 32px 22px;
  }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-grid > div:last-child a {
    display: inline-block;
    margin: 6px 7px;
  }
  .payments {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 7px;
    margin-top: 16px;
  }
  .payments img {
    width: 66px;
    height: 28px;
    padding: 4px 7px;
    border-radius: 5px;
  }
  .footer-bottom { flex-direction: column; }
}
