:root {
  --bg: #f3efe6;
  --paper: #fffdf8;
  --ink: #1b2430;
  --navy: #16324f;
  --navy-2: #0f2438;
  --muted: #5b6170;
  --line: #ddd4c4;
  --btn: #16324f;
  --btn-hover: #0f2438;
  --accent: #2f6f4e;
  --danger: #b42318;
  --ok: #177245;
  --radius: 12px;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --serif: "IBM Plex Serif", Georgia, serif;
  --icon-gap: 8px;
  --tile-gap: 14px;
  --wrap-pad: 20px;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

.wrap { width: min(1100px, calc(100% - var(--wrap-pad) * 2)); margin: 0 auto; }
.narrow { width: min(680px, calc(100% - var(--wrap-pad) * 2)); margin-left: auto; margin-right: auto; }
.checkout-wrap { width: min(1100px, calc(100% - var(--wrap-pad) * 2)); margin: 0 auto; padding-bottom: 48px; }
@media (min-width: 760px) { :root { --wrap-pad: 16px; } }

.trust-bar {
  background: var(--navy);
  color: #e8eef4;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px 18px;
  padding: 8px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-bar span {
  display: inline-flex;
  align-items: center;
  gap: var(--icon-gap);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-bar i {
  width: 1.15em;
  text-align: center;
  flex-shrink: 0;
  color: #c9d7e4;
}
@media (min-width: 760px) {
  .trust-bar-inner { flex-wrap: wrap; overflow: visible; }
}

.site-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.logo-text { display: grid; line-height: 1.15; min-width: 0; }
.logo-text strong {
  font-family: var(--serif);
  font-size: 0.98rem;
  white-space: nowrap;
}
.logo-text small { color: var(--muted); font-size: 11px; }
.main-nav {
  display: none;
  gap: 18px;
  margin-left: auto;
  font-weight: 600;
  font-size: 14px;
}
.main-nav a { text-decoration: none; color: var(--navy); }
@media (min-width: 860px) {
  .main-nav { display: flex; }
  .logo-text strong { font-size: 1.05rem; }
  .bar-inner { min-height: 72px; }
}

.mobile-nav {
  display: flex;
  gap: 4px;
  padding: 0 0 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav a {
  flex: 1 0 auto;
  text-align: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
@media (min-width: 860px) { .mobile-nav { display: none; } }

.cart-btn {
  position: relative;
  margin-left: auto;
  min-height: 44px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: var(--icon-gap);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 600;
  flex-shrink: 0;
}
.cart-btn i { width: 1.15em; text-align: center; }
@media (min-width: 860px) { .cart-btn { margin-left: 0; padding: 0 14px; } }
.cart-label { font-size: 14px; }
@media (max-width: 379px) { .cart-label { display: none; } }
.cart-badge[hidden] { display: none; }
.cart-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
}
.secure-pill {
  font-size: 13px;
  color: var(--accent);
  display: inline-flex;
  gap: var(--icon-gap);
  align-items: center;
  font-weight: 600;
  margin-left: auto;
  min-width: 0;
}
.secure-pill i { width: 1.15em; text-align: center; flex-shrink: 0; }
.secure-pill span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 520px) {
  .pay-body .secure-pill span { display: none; }
}

.hero {
  --hero-chrome: 9.25rem;
  --hero-min: calc(100vh - var(--hero-chrome));
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 1px solid var(--line);
  min-height: var(--hero-min);
}
@supports (height: 100svh) {
  .hero { --hero-min: calc(100svh - var(--hero-chrome)); }
}
@media (min-width: 860px) {
  .hero { --hero-chrome: 6.75rem; }
}
.hero-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-height: var(--hero-min);
}
.hero-track::-webkit-scrollbar { display: none; width: 0; height: 0; }
.hero-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  min-height: var(--hero-min);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 40px 0 72px;
  --slide-fade: #16324f;
}
.hero-slide.is-paper {
  background:
    radial-gradient(ellipse 72% 80% at 88% 42%, #2a4a6a 0%, transparent 56%),
    linear-gradient(158deg, #16324f 0%, #0f2438 100%);
  --slide-fade: #16324f;
}
.hero-slide.is-ship {
  background:
    radial-gradient(ellipse 62% 70% at 90% 48%, #dce6ef 0%, transparent 52%),
    linear-gradient(180deg, #fffdf8 0%, #e7edf3 100%);
  --slide-fade: #fffdf8;
}
.hero-slide.is-pay {
  background:
    radial-gradient(ellipse 54% 62% at 82% 32%, #1e3d5c 0%, transparent 52%),
    linear-gradient(165deg, #0f2438 0%, #16324f 72%, #12283d 100%);
  --slide-fade: #0f2438;
}
.hero-slide.is-desk {
  background:
    radial-gradient(ellipse 58% 68% at 88% 46%, #e8e0d0 0%, transparent 52%),
    linear-gradient(180deg, #fffdf8 0%, #f3efe6 100%);
  --slide-fade: #f3efe6;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(620px, calc(100% - 96px));
  margin-left: max(var(--wrap-pad), 56px);
  margin-right: auto;
}
@media (min-width: 1100px) {
  .hero-copy { margin-left: max(calc((100% - 1100px) / 2), 72px); }
}
.hero-title,
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--navy-2);
  overflow-wrap: break-word;
}
.eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; color: var(--navy); font-weight: 700; margin: 0 0 8px; }
h1 { font-family: var(--serif); font-size: clamp(1.55rem, 5vw, 2.5rem); letter-spacing: -0.03em; margin: 0 0 10px; color: var(--navy-2); }
h2 { font-size: 1.2rem; margin: 0 0 12px; color: var(--navy); }
.lead { color: var(--muted); margin: 0 0 18px; font-size: 1.02rem; }
.hero .lead { max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-actions .btn { flex: 1 1 100%; white-space: normal; text-align: center; }
@media (min-width: 560px) { .hero-actions .btn { flex: 0 0 auto; } }
.hero-slide.is-dark .eyebrow { color: #c9d7e4; }
.hero-slide.is-dark .hero-title,
.hero-slide.is-dark h1 { color: #fffdf8; }
.hero-slide.is-dark .lead { color: #c9d7e4; }
.hero-slide.is-dark .btn-primary {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}
.hero-slide.is-dark .btn-primary:hover { background: #e8eef4; border-color: #e8eef4; }
.hero-slide.is-dark .btn-ghost {
  background: transparent;
  border-color: #8aa0b4;
  color: #fffdf8;
}
.hero-slide.is-dark .btn-ghost:hover { background: #1e3d5c; }
.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-art .vis,
.hero-art .hero-vis {
  position: absolute;
  width: 180px;
  height: 230px;
}
.hero-art .hero-vis-a4 { right: 24%; top: 16%; transform: rotate(-8deg) scale(1.45); }
.hero-art .hero-vis-a3 { right: 7%; top: 34%; transform: rotate(7deg) scale(1.7); }
.hero-art .hero-vis-pack { right: 11%; top: 20%; transform: scale(1.85); }
.hero-art .hero-vis-env { right: 26%; top: 14%; transform: rotate(-10deg) scale(1.3); }
.hero-art .hero-vis-note { right: 7%; top: 26%; transform: rotate(6deg) scale(1.45); }
.hero-art .hero-vis-sticky { right: 20%; bottom: 12%; top: auto; transform: rotate(-4deg) scale(1.2); }
.hero-mark {
  position: absolute;
  right: 10%;
  bottom: 16%;
  font-size: clamp(4rem, 10vw, 7rem);
  color: var(--navy);
  opacity: 0.12;
}
.hero-slide.is-dark .hero-mark { color: #fffdf8; opacity: 0.14; }
.hero-shield {
  position: absolute;
  right: 12%;
  top: 50%;
  width: 180px;
  height: 210px;
  transform: translateY(-56%);
  background: #16324f;
  border: 2px solid #8aa0b4;
  border-radius: 90px 90px 28px 28px;
  display: grid;
  place-items: center;
  color: #fffdf8;
  font-size: 4.2rem;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}
.hero-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(22, 50, 79, 0.12);
}
.hero-nav.prev { left: 12px; }
.hero-nav.next { right: 12px; }
.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}
.hero-dot {
  pointer-events: auto;
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 50, 79, 0.28);
  cursor: pointer;
}
.hero.is-on-dark .hero-dot { background: rgba(255, 253, 248, 0.35); }
.hero-dot[aria-current="true"] { background: var(--navy); }
.hero.is-on-dark .hero-dot[aria-current="true"] { background: #fffdf8; }
@media (max-width: 759px) {
  .hero-slide { padding: 28px 0 84px; }
  .hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, var(--slide-fade) 0%, var(--slide-fade) 48%, transparent 100%);
  }
  .hero-copy { width: min(640px, calc(100% - 40px)); margin-left: 20px; min-width: 0; }
  .hero-title, .hero h1 { font-size: clamp(1.45rem, 7vw, 2rem); }
  .hero-art { opacity: 0.34; }
  .hero-art .hero-vis-a4 { right: -6%; top: 10%; transform: rotate(-8deg) scale(1.05); }
  .hero-art .hero-vis-a3 { right: -14%; top: 38%; transform: rotate(7deg) scale(1.15); }
  .hero-art .hero-vis-pack { right: -8%; top: 28%; transform: scale(1.25); }
  .hero-art .hero-vis-env { right: 2%; top: 12%; }
  .hero-art .hero-vis-note { right: -10%; top: 36%; }
  .hero-art .hero-vis-sticky { right: 8%; bottom: 18%; }
  .hero-shield { right: -4%; width: 140px; height: 164px; font-size: 3.2rem; }
  .hero-nav {
    top: auto;
    bottom: 16px;
    margin-top: 0;
    width: 40px;
    height: 40px;
  }
  .hero-dots { bottom: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-track { scroll-behavior: auto; }
}

.promise { background: var(--paper); border-bottom: 1px solid var(--line); }
.promise-grid {
  display: grid;
  gap: 12px;
  padding: 16px 0;
  grid-template-columns: 1fr;
}
.promise article,
.info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--tile-gap);
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-width: 0;
}
.tile-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e7edf3;
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.tile-icon i { width: auto; margin: 0; }
.tile-copy { min-width: 0; }
.tile-copy strong { display: block; margin: 0 0 4px; color: var(--navy-2); line-height: 1.3; }
.tile-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
@media (min-width: 640px) {
  .promise-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .promise-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 20px 0; }
  .promise article {
    flex-direction: column;
    min-height: 100%;
  }
}

.main-nav a.on { text-decoration: underline; text-underline-offset: 6px; }
.mobile-nav a.on { background: var(--navy); color: #fff; border-color: var(--navy); }

.section-head { padding: 28px 0 8px; }
.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.section-head.split h2 { margin: 0 0 4px; }
.section-head.split .muted { margin: 0; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--icon-gap);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.text-link i { width: 1.15em; text-align: center; }
.home-block { padding-bottom: 8px; }
.home-best { padding-bottom: 40px; }
.cat-grid {
  display: grid;
  gap: 12px;
  padding: 8px 0 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card {
  display: flex;
  align-items: flex-start;
  gap: var(--tile-gap);
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  min-width: 0;
}
.cat-card:hover { border-color: var(--navy); }

.carousel {
  position: relative;
  margin: 8px 0 8px;
}
.carousel-track {
  --carousel-gap: 16px;
  display: flex;
  gap: var(--carousel-gap);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 4px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; width: 0; height: 0; }
.carousel-track .product-card {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  scroll-snap-align: start;
}
@media (min-width: 760px) {
  .carousel-track .product-card {
    flex: 0 0 calc((100% - (var(--carousel-gap) * 3)) / 4);
  }
}
.product-card.compact .qty-row { display: none; }
.carousel-btn {
  position: absolute;
  top: 38%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  cursor: pointer;
  display: none;
  place-items: center;
  box-shadow: 0 4px 12px rgba(22, 50, 79, 0.1);
}
.carousel-btn.prev { left: -6px; }
.carousel-btn.next { right: -6px; }
@media (min-width: 760px) {
  .carousel { padding: 0 18px; }
  .carousel-btn { display: grid; }
}

.shop { padding-bottom: 48px; }
.shop-hero h1 { margin-bottom: 6px; }
.shop-split { display: grid; gap: 20px; }
@media (min-width: 860px) {
  .shop-split { grid-template-columns: 240px 1fr; align-items: start; }
}
.shop-filters {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 12px;
}
.shop-filters h2 { margin: 0; font-size: 1.05rem; }
.shop-filters fieldset { padding: 10px 12px; }
@media (min-width: 860px) {
  .shop-filters { position: sticky; top: 88px; }
}
.filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}
.filter-chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.chip.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.shop-grid { padding-top: 0; }

.catalog .section-head:first-child { padding-top: 28px; }
.product-grid {
  display: grid;
  gap: 14px;
  padding: 8px 0 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 980px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.product-card, .summary-card, .card-form, .pay-form, .stat, .form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}
@media (min-width: 760px) {
  .product-card, .summary-card, .card-form, .pay-form, .stat, .form-card { padding: 18px; }
}
.product-visual {
  position: relative;
  height: 180px;
  border-radius: 10px;
  background: linear-gradient(#eef2f6, #d9e0e8);
  display: grid;
  place-items: center;
  text-decoration: none;
  overflow: hidden;
  border: 1px solid #d3dbe3;
}
.product-visual.lg { height: 240px; }
@media (min-width: 760px) {
  .product-visual { height: 200px; }
  .product-visual.lg { height: 280px; }
}
.product-visual img { width: 100%; height: 100%; object-fit: cover; }
.stock-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}
.vis { position: relative; width: 118px; height: 150px; }
.vis-pack { width: 128px; }
.ream-sheet, .vis-box {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 1px solid #c9c2b4;
  border-radius: 3px;
}
.ream-sheet.s2, .vis-box.b2 { transform: translate(5px, -5px); }
.ream-sheet.s3, .vis-box.b3 { transform: translate(10px, -10px); background: #f4f0e6; }
.ream-sheet.s1, .vis-box.b1 {
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(22, 50, 79, 0.08);
}
.vis em {
  font-family: var(--serif);
  font-style: normal;
  font-size: 26px;
  color: var(--navy);
}
.ream-sheet.tint1 { background: #f7e7d4; }
.ream-sheet.tint2 { background: #dce8f4; transform: translate(5px, -5px); }
.ream-sheet.tint3 { background: #e4f0da; transform: translate(10px, -10px); }
.vis-env {
  position: absolute;
  inset: 28px 8px 22px;
  background: #f4efe4;
  border: 1px solid #c9c2b4;
  border-radius: 4px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(22, 50, 79, 0.08);
}
.vis-env-flap {
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 28px;
  background: #e8e0d0;
  border: 1px solid #c9c2b4;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.vis-note {
  position: absolute;
  inset: 16px 22px 16px 18px;
  background: #fff;
  border: 1px solid #c9c2b4;
  border-radius: 2px 8px 8px 2px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(22, 50, 79, 0.08);
}
.vis-note-spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: var(--navy);
}
.vis-note-lines {
  position: absolute;
  inset: 36px 12px 16px 18px;
  background: repeating-linear-gradient(#fff, #fff 10px, #e4ddd0 10px, #e4ddd0 11px);
}
.vis-folder {
  position: absolute;
  inset: 36px 14px 18px;
  background: #e7edf3;
  border: 1px solid #b7c4d2;
  border-radius: 0 6px 6px 6px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(22, 50, 79, 0.08);
}
.vis-folder-tab {
  position: absolute;
  top: -14px;
  left: 0;
  width: 42px;
  height: 14px;
  background: #d5dee8;
  border: 1px solid #b7c4d2;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}
.vis-sticky {
  position: absolute;
  width: 86px;
  height: 86px;
  left: 16px;
  top: 32px;
  background: #f6e27a;
  border: 1px solid #d4bc4a;
  border-radius: 2px;
}
.vis-sticky.s2 { transform: rotate(-4deg); background: #f3dc62; }
.vis-sticky.s3 { transform: rotate(5deg) translate(8px, -6px); background: #ead56a; }
.vis-sticky.s1 { display: grid; place-items: center; box-shadow: 0 8px 16px rgba(22, 50, 79, 0.1); }
.vis-sticky em { font-size: 20px; }

.product-body .sku { margin: 14px 0 4px; font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.product-body h2 { margin: 0 0 6px; font-size: 1.05rem; line-height: 1.3; }
.product-body h2 a { text-decoration: none; }
.product-body p { margin: 0 0 10px; color: var(--muted); font-size: 0.95rem; }
.price { font-weight: 700; font-size: 1.28rem; color: var(--navy-2); }
.price.lg { font-size: 1.7rem; }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--icon-gap); margin-bottom: 12px; }

.qty-row { display: flex; align-items: center; flex-wrap: wrap; gap: var(--icon-gap); margin-bottom: 12px; }
.qty-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
}
.qty-input {
  width: 56px;
  height: 44px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--icon-gap);
  min-height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
}
.btn i { width: 1.15em; text-align: center; }
.btn-primary { background: var(--btn); color: #fff; }
.btn-primary:hover { background: var(--btn-hover); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--navy); }
.btn-wide { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.stack { display: grid; gap: 12px; padding: 8px 0 24px; }
label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
legend { font-weight: 700; color: var(--navy); padding: 0 6px; }
fieldset { border: 1px solid var(--line); border-radius: 10px; padding: 14px; display: grid; gap: 12px; }
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  font-size: 16px;
}
textarea { min-height: 90px; resize: vertical; }
.check { display: flex; align-items: flex-start; gap: var(--icon-gap); font-weight: 500; }
.check input { width: auto; min-height: 0; margin-top: 3px; }
.form-2 { display: grid; gap: 12px; }
@media (min-width: 640px) { .form-2 { grid-template-columns: 1fr 1fr; } }

.summary-card .row, .cart-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cart-line { align-items: flex-start; flex-wrap: wrap; }
.cart-line > div { min-width: 0; flex: 1 1 180px; }
.summary-card .row:last-child, .cart-line:last-child { border-bottom: 0; }
.row.total { font-size: 1.08rem; color: var(--navy); }
.empty { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; display: grid; gap: 12px; }
.empty[hidden], #cart-box[hidden], #checkout-box[hidden] { display: none !important; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.crumb { padding: 18px 0 8px; color: var(--muted); font-size: 14px; overflow-wrap: anywhere; }
.crumb a { color: var(--navy); }
.product-page { padding-bottom: 48px; }
.product-detail { display: grid; gap: 20px; }
@media (min-width: 860px) { .product-detail { grid-template-columns: 1fr 1fr; align-items: start; gap: 24px; } }

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 16px 0 8px;
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.steps span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 12px;
}
.steps .on { color: var(--navy); }
.steps .on span { background: var(--navy); color: #fff; border-color: var(--navy); }
@media (min-width: 640px) {
  .steps { display: flex; gap: 12px; font-size: 13px; padding: 20px 0 8px; }
  .steps li { flex-direction: row; text-align: left; }
}

.checkout-split { display: grid; gap: 16px; }
@media (min-width: 860px) {
  .checkout-split { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}
.checkout-form { display: grid; gap: 14px; }
.checkout-form fieldset {
  background: var(--paper);
  margin: 0;
}
.checkout-form legend {
  font-size: 14px;
}
.legal-box .legal-check {
  font-size: 14px;
  line-height: 1.45;
}
.legal-check a { color: var(--navy); font-weight: 700; }
#checkout-lines { margin-bottom: 4px; }
#checkout-lines .row { font-size: 14px; }
.summary-card h2 { margin-bottom: 4px; }
.sticky { position: static; }
@media (min-width: 860px) { .sticky { position: sticky; top: 88px; } }
.secure-note {
  font-size: 13px;
  color: var(--accent);
  display: flex;
  gap: var(--icon-gap);
  align-items: flex-start;
}
.secure-note i { width: 1.15em; text-align: center; flex-shrink: 0; margin-top: 2px; }
.mini-trust { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; color: var(--muted); font-size: 14px; }
.mini-trust li { display: flex; align-items: flex-start; gap: var(--icon-gap); }
.mini-trust i { color: var(--accent); width: 1.15em; text-align: center; flex-shrink: 0; margin-top: 3px; }
.buyer-box { display: grid; gap: 4px; padding-top: 12px; font-size: 14px; color: var(--muted); overflow-wrap: anywhere; }

.pay-grid { display: grid; gap: 16px; padding: 8px 0 48px; }
@media (min-width: 860px) {
  .pay-grid { grid-template-columns: 0.9fr 1.1fr; align-items: start; }
}
.form-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.pay-form-head p { color: var(--muted); margin: 0 0 14px; }
.card-face {
  background: var(--navy);
  color: #e8eef4;
  border-radius: 14px;
  padding: 18px;
  min-height: 132px;
  display: grid;
  align-content: space-between;
  margin-bottom: 16px;
  letter-spacing: 0.08em;
}
.card-face strong { font-size: clamp(0.95rem, 4vw, 1.15rem); letter-spacing: 0.16em; overflow-wrap: anywhere; }
.card-face em { font-style: normal; font-size: 12px; opacity: 0.8; }

.status-box { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: grid; gap: 12px; margin: 28px 0; }
.status-icon { font-size: 28px; color: var(--navy); }
.status-icon.warn { color: var(--danger); }

.site-foot {
  background: var(--navy-2);
  color: #d5dde6;
  padding: 36px 0 20px;
  font-size: 14px;
  margin-top: 24px;
}
.site-foot a { color: #f3f6f9; text-decoration: none; display: block; padding: 6px 0; }
.site-foot h3 { color: #fff; font-size: 14px; margin: 0 0 8px; }
.foot-grid { display: grid; gap: 22px; }
@media (min-width: 800px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.foot-logo { color: #fff; margin-bottom: 10px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #2a3d52;
  font-size: 12px;
  color: #9aabbb;
}
.site-foot.compact { padding: 18px 0; margin-top: 0; }
.site-foot.compact a { display: inline; padding: 0; }
.pay-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pay-brands span {
  border: 1px solid #3a5168;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.flash { padding: 12px 14px; border-radius: 10px; margin: 12px 0; }
.flash-ok { background: #e8f6ee; color: var(--ok); }
.flash-error { background: #fdeceb; color: var(--danger); }
.prose { padding: 28px 0 56px; max-width: 720px; }
.prose p { color: var(--muted); }

.legal { padding: 8px 0 56px; }
.legal-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 8px;
  scrollbar-width: none;
}
.legal-nav::-webkit-scrollbar { display: none; }
.legal-nav a {
  display: inline-flex;
  align-items: center;
  gap: var(--icon-gap);
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.legal-nav a i { width: 1.15em; text-align: center; }
.legal-nav a.on { background: var(--navy); color: #fff; border-color: var(--navy); }
.legal-hero { padding: 12px 0 8px; max-width: 720px; }
.legal-hero h1 { margin-bottom: 8px; }
.info-grid, .contact-grid {
  display: grid;
  gap: 12px;
  margin: 16px 0 8px;
}
@media (min-width: 720px) {
  .info-grid, .contact-grid { grid-template-columns: repeat(3, 1fr); }
}
.legal-block {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin: 16px 0;
}
.legal-block h2 { margin-bottom: 8px; }
.legal-block p { color: var(--muted); margin: 0 0 12px; }
.legal-list { margin: 0; padding: 0 0 0 18px; color: var(--muted); display: grid; gap: 8px; }
.legal-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.legal-steps li { display: flex; gap: var(--tile-gap); align-items: flex-start; }
.legal-steps span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}
.legal-steps p { margin: 4px 0 0; color: var(--muted); }
.legal-cta {
  margin-top: 8px;
  padding: 14px 16px;
  background: #e7edf3;
  border-radius: var(--radius);
  color: var(--navy);
}
.legal-cta p {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: var(--icon-gap);
}
.legal-cta i { width: 1.15em; text-align: center; flex-shrink: 0; margin-top: 3px; }
.legal-cta a { color: var(--navy); font-weight: 700; }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}
.info-table th, .info-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.info-table th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); }

.admin-body { background: #eeeae3; }
.admin-shell { display: grid; min-height: 100vh; }
.side {
  background: #171412;
  color: #f4f1ea;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side a { color: inherit; text-decoration: none; }
.side-kicker { text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; color: #b7b0a4; margin: 12px 0 0; }
.side-nav { display: grid; gap: 4px; }
.side-nav a { padding: 10px 12px; border-radius: 10px; }
.side-nav a.on, .side-nav a:hover { background: #2a241f; }
.side-foot { margin-top: auto; display: grid; gap: 8px; font-size: 13px; color: #b7b0a4; }
.admin-main { padding: 22px 18px 48px; min-width: 0; }
.table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; min-width: 520px; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0 24px; }
.stat span { color: var(--muted); display: block; }
.stat strong { font-size: 1.6rem; }
.linkish { background: none; border: 0; color: var(--danger); cursor: pointer; padding: 0; }
.card-form { margin: 16px 0 24px; }

@media (min-width: 900px) {
  .admin-shell { grid-template-columns: 240px 1fr; }
  .admin-main { padding: 28px 36px; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}
