:root {
  --ink: #07182b;
  --ink-2: #0d2740;
  --paper: #f5f0e7;
  --paper-2: #ece4d7;
  --white: #fffdfa;
  --acid: #caff3e;
  --copper: #f0793a;
  --jade: #1f9c79;
  --blue: #3d78ff;
  --red: #d84843;
  --line: rgba(7, 24, 43, .16);
  --muted: #65717d;
  --shadow: 0 24px 70px rgba(7, 24, 43, .14);
  --radius: 22px;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  overflow-x: hidden;
}
body.locked { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--acid);
  transform: translateY(-160%);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.signal-bar {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 4vw;
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(202,255,62,.1); }
.signal-separator { width: 1px; height: 10px; background: rgba(255,255,255,.3); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 12px clamp(20px, 4vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 231, .94);
  backdrop-filter: blur(20px);
}
.brand { display: inline-flex; align-items: center; gap: 9px; min-width: max-content; }
.brand-orbit {
  position: relative;
  width: 34px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: rotate(-12deg);
}
.brand-orbit::before, .brand-orbit::after { content: ""; position: absolute; inset: 7px -4px; border: 1px solid currentColor; border-radius: 50%; }
.brand-orbit::after { inset: -4px 10px; }
.brand-orbit i { position: absolute; width: 7px; height: 7px; border-radius: 50%; border: 2px solid var(--paper); }
.brand-orbit i:nth-child(1) { left: -3px; top: 9px; background: #3ea465; }
.brand-orbit i:nth-child(2) { left: 9px; top: -3px; background: #3478da; }
.brand-orbit i:nth-child(3) { right: -3px; top: 9px; background: #e76b35; }
.brand-orbit i:nth-child(4) { right: 3px; bottom: -1px; background: #d64648; }
.brand-orbit i:nth-child(5) { left: 3px; bottom: -1px; background: #e3b833; }
.brand-type { display: grid; line-height: .76; font-family: var(--display); font-size: 22px; letter-spacing: -.05em; }
.brand small { padding-left: 4px; border-left: 1px solid var(--line); color: var(--muted); font-size: 8px; letter-spacing: .16em; }
.brand-light { color: #fff; }
.brand-light .brand-orbit i { border-color: var(--ink); }
.brand-light small { color: rgba(255,255,255,.6); }

.desktop-nav { display: flex; justify-content: center; gap: 5px; }
.nav-link, .site-footer button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-link {
  position: relative;
  padding: 12px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.nav-link::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; background: var(--copper); transform: scaleX(0); transition: transform .2s; }
.nav-link:hover::after, .nav-link.active::after { transform: none; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.round-action, .order-action, .cart-action, .compact-select {
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.6);
}
.round-action { width: 44px; font-size: 24px; cursor: pointer; }
.compact-select { display: grid; place-items: center; }
.compact-select select { width: 58px; height: 100%; padding: 0 8px; border: 0; outline: 0; background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; }
.order-action, .cart-action { display: flex; align-items: center; gap: 8px; padding: 0 13px; font-size: 12px; font-weight: 800; cursor: pointer; }
.order-action:hover, .round-action:hover { border-color: var(--ink); }
.cart-action { border-color: var(--copper); background: var(--copper); color: #fff; }
.cart-action b { display: grid; place-items: center; min-width: 23px; height: 23px; padding: 0 5px; border-radius: 99px; background: var(--acid); color: var(--ink); }

.search-dock {
  position: fixed;
  z-index: 80;
  top: 35px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px clamp(20px, 7vw, 110px);
  background: var(--white);
  box-shadow: var(--shadow);
}
.search-dock form { flex: 1; display: flex; align-items: center; gap: 12px; padding-left: 16px; border: 1px solid var(--line); border-radius: 16px; }
.search-dock input { flex: 1; min-width: 0; height: 56px; border: 0; outline: 0; background: transparent; }
.icon-close { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 24px; }
.icon-close:hover { transform: rotate(8deg); border-color: var(--ink); }
.icon-close-light { color: #fff; border-color: rgba(255,255,255,.3); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.button-acid { background: var(--acid); color: var(--ink); box-shadow: 0 12px 28px rgba(202,255,62,.15); }
.button-dark { background: var(--ink); color: #fff; }
.button-glass { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); color: #fff; backdrop-filter: blur(10px); }
.button-outline { border-color: var(--line); background: transparent; }
.button-large { min-height: 60px; width: 100%; justify-content: space-between; padding: 0 26px; }

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 100px));
  display: grid;
  align-items: end;
  margin: 18px clamp(14px, 2vw, 32px) 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 30px 80px rgba(7,24,43,.18);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,17,31,.98) 0%, rgba(4,17,31,.75) 34%, rgba(4,17,31,.08) 66%, rgba(4,17,31,.14) 100%), linear-gradient(0deg, rgba(4,17,31,.65), transparent 35%); }
.hero-content { position: relative; z-index: 1; width: min(650px, 60%); padding: clamp(45px, 7vw, 100px); padding-bottom: clamp(125px, 13vw, 170px); }
.hero-kicker { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.hero-kicker span:first-child { padding: 7px 10px; border-radius: 6px; background: var(--acid); color: var(--ink); }
.hero-content h1 { max-width: 690px; margin: 0 0 20px; font-family: var(--display); font-size: clamp(56px, 7vw, 108px); font-weight: 400; line-height: .84; letter-spacing: -.065em; }
.hero-content h1 em { color: var(--copper); font-style: italic; }
.hero-content > p { max-width: 560px; margin: 0 0 32px; color: rgba(255,255,255,.75); font-size: clamp(14px, 1.15vw, 18px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-proof {
  position: absolute;
  z-index: 2;
  left: clamp(45px, 7vw, 100px);
  right: clamp(45px, 5vw, 80px);
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 15px;
  background: rgba(2,16,30,.64);
  backdrop-filter: blur(18px);
}
.hero-proof div { display: flex; align-items: center; gap: 12px; min-height: 66px; padding: 12px 20px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong { color: var(--acid); font-family: var(--display); font-size: 20px; }
.hero-proof span { font-size: 11px; font-weight: 800; letter-spacing: .02em; }

.market-intro {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 10vw;
  align-items: end;
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 110px) 60px;
}
.section-kicker { display: inline-block; margin-bottom: 16px; color: var(--copper); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.market-intro h2, .catalog-head h2, .manifesto h2 { margin: 0; font-family: var(--display); font-size: clamp(42px, 5.6vw, 84px); font-weight: 400; line-height: .95; letter-spacing: -.055em; }
.market-intro p { max-width: 550px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }

.world-routes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 clamp(20px, 4vw, 70px) clamp(85px, 10vw, 145px); }
.route {
  min-height: 230px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.route:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.route span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 900; }
.route strong { grid-column: 1 / -1; align-self: end; font-family: var(--display); font-size: 30px; font-weight: 400; line-height: 1; }
.route small { font-size: 11px; font-weight: 700; opacity: .7; }
.route b { font-size: 22px; font-weight: 400; }
.route-tech { background: #cad8f6; }
.route-mobility { background: #f3c25c; }
.route-home { background: #a9d5bd; }
.route-sound { background: #df8a6d; }

.catalog-section { padding: 20px clamp(20px, 4vw, 70px) clamp(90px, 10vw, 160px); }
.catalog-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.catalog-head h2 { font-size: clamp(42px, 4.8vw, 72px); }
.catalog-controls { display: flex; align-items: center; gap: 10px; }
.view-switch { display: flex; gap: 3px; padding: 4px; border: 1px solid var(--line); border-radius: 12px; }
.view-switch button { width: 38px; height: 34px; border: 0; border-radius: 8px; background: transparent; cursor: pointer; }
.view-switch button.active { background: var(--ink); color: #fff; }
.sort-select { display: flex; align-items: center; gap: 8px; height: 44px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; }
.sort-select span { color: var(--muted); font-size: 11px; font-weight: 700; }
.sort-select select { border: 0; background: transparent; outline: 0; font-weight: 800; }
.collection-tabs { display: flex; gap: 8px; margin-bottom: 26px; overflow: auto; scrollbar-width: none; }
.collection-tabs::-webkit-scrollbar { display: none; }
.collection-tabs button { min-width: max-content; padding: 10px 17px; border: 1px solid var(--line); border-radius: 99px; background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.collection-tabs button:hover, .collection-tabs button.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.catalog-status { min-height: 80px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; }
.spinner { width: 18px; height: 18px; border: 2px solid var(--line); border-top-color: var(--ink); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.product-grid.list { grid-template-columns: 1fr 1fr; }
.product-grid.list .product-card { grid-template-columns: 210px 1fr; }
.product-grid.list .product-media { min-height: 240px; }
.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: rgba(7,24,43,.35); box-shadow: 0 25px 55px rgba(7,24,43,.11); }
.product-media { position: relative; min-height: 330px; overflow: hidden; border: 0; background: linear-gradient(145deg,#f0ece5,#dfd8cd); cursor: pointer; }
.product-media img { width: 100%; height: 100%; padding: 18px; object-fit: contain; filter: saturate(.92) contrast(1.02); transition: transform .6s ease; }
.product-card:hover .product-media img { transform: scale(1.035); }
.product-number { position: absolute; top: 14px; left: 14px; padding: 6px 9px; border-radius: 7px; background: rgba(7,24,43,.82); color: #fff; font-size: 9px; font-weight: 900; letter-spacing: .12em; backdrop-filter: blur(8px); }
.product-check { position: absolute; top: 14px; right: 14px; padding: 6px 9px; border-radius: 99px; background: rgba(255,255,255,.9); font-size: 9px; font-weight: 900; }
.product-content { display: flex; flex-direction: column; min-width: 0; padding: 19px; }
.product-category { color: var(--copper); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.product-content h3 { min-height: 48px; margin: 10px 0 18px; font-family: var(--display); font-size: 21px; font-weight: 400; line-height: 1.1; letter-spacing: -.025em; overflow-wrap: anywhere; }
.product-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; }
.product-price { display: grid; }
.product-price small { color: var(--muted); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.product-price strong { font-family: var(--display); font-size: 27px; font-weight: 400; }
.product-open { width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 18px; transition: .2s; }
.product-open:hover { background: var(--acid); border-color: var(--acid); transform: rotate(-8deg); }
.load-more { margin: 30px auto 0; }
.empty-catalog { grid-column: 1 / -1; padding: 80px 20px; border: 1px dashed var(--line); border-radius: 18px; text-align: center; }
.skeleton-card { min-height: 450px; padding: 12px; }
.skeleton-image, .skeleton-line { background: linear-gradient(90deg,#e6dfd4,#f5f0e7,#e6dfd4); background-size: 200% 100%; animation: shimmer 1.2s infinite; border-radius: 12px; }
.skeleton-image { height: 320px; }
.skeleton-line { width: 60%; height: 16px; margin-top: 18px; }
.skeleton-line.wide { width: 90%; }
@keyframes shimmer { to { background-position: -200% 0; } }

.manifesto { display: grid; grid-template-columns: .45fr 1fr 1fr; gap: 6vw; align-items: start; padding: clamp(70px, 9vw, 135px) clamp(24px, 7vw, 110px); background: var(--ink); color: #fff; }
.manifesto-number { font-family: var(--display); font-size: clamp(80px, 12vw, 180px); line-height: .7; color: var(--acid); letter-spacing: -.08em; }
.manifesto h2 { font-size: clamp(40px, 4.5vw, 66px); }
.manifesto-list p { display: grid; grid-template-columns: 40px 1fr; gap: 16px; margin: 0; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.76); }
.manifesto-list b { color: var(--acid); }

.service-band { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.service-band button, .service-band a { min-height: 150px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: 1fr 1fr; align-content: center; gap: 0 14px; padding: 30px clamp(20px,3vw,45px); border: 0; border-right: 1px solid var(--line); background: var(--paper); text-align: left; cursor: pointer; }
.service-band span { grid-row: 1 / 3; align-self: center; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; }
.service-band b { align-self: end; font-family: var(--display); font-size: 19px; font-weight: 400; }
.service-band small { color: var(--muted); }
.service-band button:hover, .service-band a:hover { background: var(--acid); }

.site-footer { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); gap: 7vw; padding: 80px clamp(24px, 6vw, 100px) 24px; background: #03111f; color: #fff; }
.footer-brand p { max-width: 390px; color: rgba(255,255,255,.56); }
.site-footer h3 { margin: 0 0 22px; color: var(--acid); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
.site-footer > div:not(.footer-brand):not(.footer-bottom) { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.site-footer button, .site-footer a { padding: 0; color: rgba(255,255,255,.7); font-size: 13px; cursor: pointer; }
.site-footer button:hover, .site-footer a:hover { color: #fff; }
.footer-bottom { grid-column: 1 / -1; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 50px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: 10px; }

.drawer-backdrop { position: fixed; z-index: 90; inset: 0; background: rgba(3,17,31,.56); backdrop-filter: blur(5px); }
.product-drawer, .cart-drawer, .support-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  height: 100dvh;
  overflow: auto;
  border-left: 1px solid var(--line);
  background: var(--white);
  box-shadow: -30px 0 80px rgba(3,17,31,.18);
  transform: translateX(102%);
  transition: transform .32s cubic-bezier(.22,.8,.32,1);
}
.product-drawer { width: min(900px, 94vw); }
.cart-drawer { width: min(520px, 94vw); display: grid; grid-template-rows: auto 1fr auto; }
.support-drawer { width: min(500px, 94vw); }
.product-drawer.open, .cart-drawer.open, .support-drawer.open { transform: none; }
.drawer-header { position: sticky; z-index: 3; top: 0; min-height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--line); background: rgba(255,253,250,.94); backdrop-filter: blur(15px); font-size: 10px; letter-spacing: .14em; }
.product-drawer-body { min-height: calc(100dvh - 72px); }
.product-loading { display: grid; place-items: center; min-height: 70dvh; color: var(--muted); }
.product-detail-grid { display: grid; grid-template-columns: 1.05fr .95fr; min-height: calc(100dvh - 72px); }
.product-gallery { position: relative; min-height: 680px; background: #ede8df; }
.product-gallery img { position: sticky; top: 72px; width: 100%; height: calc(100dvh - 72px); padding: clamp(22px,4vw,58px); object-fit: contain; }
.product-info { padding: clamp(30px, 5vw, 70px); }
.product-info h1 { margin: 8px 0 18px; font-family: var(--display); font-size: clamp(38px, 5vw, 68px); font-weight: 400; line-height: .92; letter-spacing: -.055em; }
.product-description { color: var(--muted); line-height: 1.7; }
.product-price-large { margin: 28px 0; font-family: var(--display); font-size: 42px; }
.product-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 0 0 18px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.product-facts div { min-height: 84px; display: grid; align-content: center; gap: 4px; padding: 14px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-facts div:nth-child(2n) { border-right: 0; }
.product-facts div:nth-last-child(-n+2) { border-bottom: 0; }
.product-facts small { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.product-facts strong { font-size: 11px; line-height: 1.35; }
.supplier-fresh { margin: 0 0 20px; color: var(--jade); font-size: 10px; font-weight: 900; }
.variant-box { display: grid; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.variant-box + .product-facts { margin-top: 18px; }
.variant-box label { display: grid; gap: 7px; font-size: 11px; font-weight: 800; }
.variant-box select, .variant-box input, .support-pane input, .support-pane select, .support-pane textarea, .checkout-form-wrap input, .checkout-form-wrap select { width: 100%; min-height: 50px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); outline: 0; }
.support-pane textarea { min-height: 120px; padding-block: 13px; resize: vertical; font: inherit; }
.variant-box .quantity-row { display: grid; grid-template-columns: 1fr 100px; gap: 10px; }
.availability { display: flex; align-items: center; gap: 8px; color: var(--jade); font-size: 11px; font-weight: 900; }
.availability.no { color: var(--red); }
.availability.pending { max-width: 520px; padding: 14px 16px; border: 1px solid rgba(240,121,58,.35); border-radius: 12px; background: rgba(240,121,58,.08); color: #9b4b21; line-height: 1.45; }
.fallback-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.detail-guarantees { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.detail-guarantees div { padding: 14px; border: 1px solid var(--line); border-radius: 12px; font-size: 11px; }

.cart-body { padding: 10px 20px 30px; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 92px 1fr auto; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 92px; height: 110px; object-fit: cover; border-radius: 12px; background: var(--paper-2); }
.cart-item h3 { margin: 2px 0 6px; font-family: var(--display); font-size: 19px; font-weight: 400; line-height: 1.1; }
.cart-item small { display: block; color: var(--muted); font-size: 10px; }
.cart-item-price { margin-top: 10px; font-family: var(--display); font-size: 21px; }
.qty-control { display: inline-flex; align-items: center; gap: 8px; margin-top: 10px; padding: 3px; border: 1px solid var(--line); border-radius: 99px; }
.qty-control button { width: 26px; height: 26px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.qty-control button:hover { background: var(--acid); }
.remove-item { align-self: start; border: 0; background: transparent; cursor: pointer; color: var(--muted); }
.cart-footer { padding: 20px; border-top: 1px solid var(--line); background: var(--white); }
.cart-footer > div { display: flex; align-items: end; justify-content: space-between; }
.cart-footer strong { font-family: var(--display); font-size: 34px; font-weight: 400; }
.cart-footer p { color: var(--muted); font-size: 11px; }
.cart-empty { display: grid; place-items: center; min-height: 60vh; text-align: center; color: var(--muted); }
.cart-empty span { display: block; color: var(--ink); font-family: var(--display); font-size: 52px; }

.checkout-studio { position: fixed; z-index: 120; inset: 0; overflow: auto; background: var(--ink); color: #fff; }
.checkout-studio > header { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 14px clamp(20px,4vw,60px); border-bottom: 1px solid rgba(255,255,255,.14); }
.checkout-steps { display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,.42); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.checkout-steps span { display: flex; align-items: center; gap: 5px; }
.checkout-steps span.active { color: var(--acid); }
.checkout-steps i { width: 45px; height: 1px; background: rgba(255,255,255,.18); }
.checkout-layout { min-height: calc(100dvh - 82px); display: grid; grid-template-columns: minmax(380px,.85fr) minmax(520px,1.15fr); }
.checkout-summary { padding: clamp(35px,6vw,90px); background: #0a2035; }
.checkout-summary h2 { max-width: 520px; margin: 0 0 35px; font-family: var(--display); font-size: clamp(42px,5vw,70px); font-weight: 400; line-height: .95; }
.checkout-summary .checkout-line { display: grid; grid-template-columns: 76px 1fr auto; gap: 13px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.checkout-line img { width: 76px; height: 88px; object-fit: cover; border-radius: 10px; }
.checkout-line h3 { margin: 0 0 4px; font-family: var(--display); font-size: 18px; font-weight: 400; }
.checkout-line small { color: rgba(255,255,255,.5); }
.checkout-line strong { font-family: var(--display); font-size: 20px; font-weight: 400; }
.checkout-total { display: flex; align-items: end; justify-content: space-between; margin-top: 25px; }
.checkout-total strong { font-family: var(--display); font-size: 40px; font-weight: 400; }
.checkout-breakdown { margin-top: 18px; padding: 16px; border: 1px solid rgba(190,255,45,.32); border-radius: 14px; background: rgba(190,255,45,.07); }
.checkout-breakdown > div { display: flex; justify-content: space-between; gap: 18px; padding: 5px 0; font-size: 12px; }
.checkout-breakdown > div strong { color: var(--acid); }
.checkout-breakdown p { margin: 10px 0 0; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.7); font-size: 11px; }
.checkout-summary > p { color: rgba(255,255,255,.52); font-size: 11px; }
.checkout-form-wrap { align-self: stretch; padding: clamp(40px,7vw,110px); background: var(--paper); color: var(--ink); }
.checkout-form-wrap h1 { margin: 0 0 14px; font-family: var(--display); font-size: clamp(50px,6vw,84px); font-weight: 400; line-height: .9; letter-spacing: -.055em; }
.checkout-form-wrap > p { max-width: 650px; color: var(--muted); }
.checkout-form-wrap form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 30px; }
.checkout-form-wrap label { display: grid; gap: 7px; font-size: 11px; font-weight: 800; }
.terms-check { grid-column: 1 / -1; grid-template-columns: auto 1fr !important; align-items: center; }
.terms-check input { width: 20px; min-height: 20px; }
.form-message { grid-column: 1 / -1; min-height: 24px; color: var(--red); font-size: 12px; }
.checkout-form-wrap form .button { grid-column: 1 / -1; }
.checkout-form-wrap form > .terms-links { grid-column: 1 / -1; }
.terms-links { display: flex; gap: 10px; margin: -6px 0 4px; color: var(--muted); font-size: 11px; }
.terms-links a { text-decoration: underline; text-underline-offset: 3px; }
.stripe-ready { margin-top: 30px; padding: 22px; border: 1px solid #9bcf39; border-radius: 16px; background: #effbd7; }
.ready-check { float: left; width: 42px; height: 42px; display: grid; place-items: center; margin-right: 14px; border-radius: 50%; background: var(--jade); color: #fff; font-weight: 900; }
.stripe-ready strong { display: block; font-family: var(--display); font-size: 24px; }
.stripe-ready p { color: var(--muted); font-size: 12px; }
.secure-note { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; }
.secure-note > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-weight: 900; }
.secure-note p { margin: 0; font-size: 11px; color: var(--muted); }

.support-tabs { position: sticky; z-index: 2; top: 72px; display: grid; grid-template-columns: repeat(3,1fr); padding: 8px 20px; border-bottom: 1px solid var(--line); background: var(--white); }
.support-tabs button { padding: 10px; border: 0; border-bottom: 2px solid transparent; background: transparent; cursor: pointer; font-size: 11px; font-weight: 900; }
.support-tabs button.active { border-color: var(--copper); }
.support-pane { display: none; padding: 38px 28px 60px; }
.support-pane.active { display: block; }
.support-pane h2 { margin: 0 0 10px; font-family: var(--display); font-size: 42px; font-weight: 400; line-height: 1; }
.support-pane > p { color: var(--muted); }
.support-pane form { display: grid; gap: 13px; margin-top: 22px; }
.support-pane label { display: grid; gap: 6px; font-size: 11px; font-weight: 800; }
.support-result { margin-top: 20px; }
.support-result .status-card { margin-top: 10px; padding: 16px; border: 1px solid var(--line); border-radius: 12px; }
.support-result .status-card strong { display: block; font-family: var(--display); font-size: 22px; }
.support-pane details { border-bottom: 1px solid var(--line); }
.support-pane summary { padding: 18px 0; cursor: pointer; font-weight: 800; }
.support-pane details p { margin-top: 0; color: var(--muted); }
.legal-mini { margin-top: 30px; font-size: 10px; }
.mobile-nav { display: none; }

@media (max-width: 1200px) {
  .desktop-nav { grid-column: 1 / -1; justify-content: flex-start; overflow-x: auto; padding-top: 7px; border-top: 1px solid var(--line); scrollbar-width: none; }
  .site-header { grid-template-columns: auto 1fr; }
  .header-actions { justify-content: end; }
  .hero-content { width: 65%; }
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .manifesto { grid-template-columns: .4fr 1fr; }
  .manifesto-list { grid-column: 2; }
  .service-band { grid-template-columns: 1fr 1fr; }
  .service-band button, .service-band a { border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
  .signal-bar { font-size: 8px; letter-spacing: .09em; }
  .signal-bar .signal-separator:nth-of-type(n+2), .signal-bar span:last-child { display: none; }
  .site-header { min-height: 68px; padding: 10px 16px; }
  .brand small { display: none; }
  .hero { min-height: 760px; margin: 8px; border-radius: 22px; align-items: end; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg,rgba(4,17,31,.98) 5%,rgba(4,17,31,.65) 54%,rgba(4,17,31,.12) 100%); }
  .hero-content { width: 100%; padding: 36px 26px 210px; }
  .hero-content h1 { font-size: clamp(56px,15vw,82px); }
  .hero-proof { left: 18px; right: 18px; bottom: 18px; grid-template-columns: 1fr 1fr; }
  .hero-proof div { min-height: 55px; padding: 10px 12px; }
  .hero-proof div:nth-child(2) { border-right: 0; }
  .hero-proof div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .market-intro { grid-template-columns: 1fr; gap: 30px; padding: 85px 22px 50px; }
  .world-routes { grid-template-columns: 1fr 1fr; padding: 0 16px 85px; }
  .route { min-height: 190px; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-media { min-height: 300px; }
  .catalog-head { align-items: start; flex-direction: column; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-gallery { min-height: 55vh; }
  .product-gallery img { position: relative; top: 0; height: 55vh; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { padding: 45px 24px; }
  .checkout-form-wrap { padding: 55px 24px 100px; }
  .checkout-steps b { display: none; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-list { grid-column: auto; }
  .manifesto-number { font-size: 110px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { padding-bottom: 86px; }
  .signal-bar { justify-content: flex-start; padding-left: 16px; white-space: nowrap; overflow: hidden; }
  .brand-type { font-size: 19px; }
  .brand-orbit { width: 30px; height: 30px; }
  .round-action, .order-action, .desktop-nav { display: none; }
  .cart-action { height: 42px; padding: 0 11px; }
  .cart-action > span:nth-child(2) { display: none; }
  .hero { min-height: 800px; }
  .hero-content { padding: 30px 20px 410px; }
  .hero-kicker { align-items: start; flex-direction: column; }
  .hero-content h1 { font-size: clamp(52px,17vw,72px); }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-proof { bottom: 280px; grid-template-columns: 1fr 1fr; }
  .hero-proof span { font-size: 9px; }
  .world-routes { grid-template-columns: 1fr; }
  .route { min-height: 160px; }
  .catalog-section { padding-left: 10px; padding-right: 10px; }
  .catalog-head { padding: 0 10px; }
  .catalog-controls { width: 100%; justify-content: space-between; }
  .view-switch { display: none; }
  .collection-tabs { padding: 0 10px; }
  .product-grid, .product-grid.list { grid-template-columns: 1fr; gap: 12px; }
  .product-grid.list .product-card { grid-template-columns: 1fr; }
  .product-media, .product-grid.list .product-media { min-height: 340px; }
  .product-content { padding: 18px; }
  .product-content h3 { min-height: 0; margin: 9px 0 18px; font-size: 24px; }
  .product-price strong { font-size: 22px; }
  .product-open { width: 38px; height: 38px; }
  .product-check { display: none; }
  .manifesto { padding: 70px 22px; }
  .service-band { grid-template-columns: 1fr; }
  .service-band button, .service-band a { min-height: 110px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding: 60px 22px 25px; gap: 45px 20px; }
  .footer-brand, .footer-bottom { grid-column: 1 / -1; }
  .product-drawer, .cart-drawer, .support-drawer { width: 100vw; max-width: none; }
  .drawer-header { min-height: 62px; padding: 10px 16px; }
  .product-info { padding: 28px 18px 70px; }
  .product-gallery, .product-gallery img { min-height: 45vh; height: 45vh; }
  .product-facts { grid-template-columns: 1fr; }
  .product-facts div, .product-facts div:nth-child(2n), .product-facts div:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-facts div:last-child { border-bottom: 0; }
  .detail-guarantees { grid-template-columns: 1fr; }
  .variant-box .button { position: sticky; bottom: 10px; z-index: 2; box-shadow: 0 10px 28px rgba(3,17,31,.2); }
  .cart-item { grid-template-columns: 78px 1fr auto; }
  .cart-item img { width: 78px; height: 94px; }
  .checkout-studio > header { grid-template-columns: 1fr auto; }
  .checkout-studio > header .checkout-steps { grid-column: 1 / -1; display: flex; }
  .checkout-steps i { width: 28px; }
  .checkout-steps b { display: inline; font-size: 8px; }
  .checkout-summary { padding: 34px 18px; }
  .checkout-summary h2 { font-size: 42px; }
  .checkout-form-wrap { padding: 50px 18px 100px; }
  .checkout-form-wrap form { grid-template-columns: 1fr; }
  .checkout-form-wrap form > * { grid-column: 1 !important; }
  .search-dock { top: 35px; padding: 15px 12px; gap: 7px; }
  .search-dock form { display: grid; grid-template-columns: auto 1fr; padding: 8px 10px; }
  .search-dock form .button { grid-column: 1 / -1; }
  .mobile-nav {
    position: fixed;
    z-index: 70;
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 60px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(3,17,31,.96);
    color: #fff;
    box-shadow: 0 15px 45px rgba(0,0,0,.3);
    backdrop-filter: blur(16px);
  }
  .mobile-nav button { position: relative; display: grid; place-items: center; gap: 1px; border: 0; background: transparent; color: inherit; font-size: 18px; }
  .mobile-nav b { font-size: 8px; letter-spacing: .04em; }
  .mobile-nav i { position: absolute; top: 6px; right: calc(50% - 22px); min-width: 16px; height: 16px; display: grid; place-items: center; border-radius: 99px; background: var(--acid); color: var(--ink); font-size: 8px; font-style: normal; font-weight: 900; }
}

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