/* ============================================================
   MWINBARKA IMPORTS — Design System
   Navy / Gold / White. Manifest-ticket visual language, drawn
   from the logo's globe + flight-path mark. Every "MW-0X" code,
   dashed route line, and perforated edge references the same
   idea: your request becomes a manifest entry we track to Ghana.
   ============================================================ */

:root {
  /* Color — brass gold on deep navy, matching the logo mark */
  --navy-900: #06101F;
  --navy-800: #0A1F44;
  --navy-700: #16345C;
  --navy-600: #23487A;
  --navy-deep: #081529;
  --gold-500: #C9A227;
  --gold-400: #DCC56A;
  --gold-300: #E8D48A;
  --gold-600: #A6861C;
  --cream: #FBF9F4;
  --white: #FFFFFF;
  --ink-700: #1C2430;
  --ink-500: #4A5563;
  --ink-300: #7B8694;
  --line: #E5E0D4;
  --danger: #A03636;
  --success: #3B6B2E;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", "Segoe UI", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", ui-monospace, monospace;

  /* Scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  --radius: 6px;
  --radius-md: 10px;
  --shadow-sm: 0 1px 2px rgba(6, 16, 31, 0.06);
  --shadow-md: 0 8px 24px rgba(6, 16, 31, 0.08);
  --shadow-lg: 0 18px 50px rgba(6, 16, 31, 0.10);
  --max-width: 1180px;
  --paper: #F5F3EE;
  --touch: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--ink-700);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(10, 31, 68, 0.03) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-optical-sizing: auto;
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy-900);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

@media (max-width: 640px) {
  .container { padding: 0 var(--space-2); }
}

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

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  padding: 0.9rem 1.45rem;
  min-height: var(--touch);
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn[disabled],
.btn[disabled]:hover,
.btn[disabled]:active {
  opacity: 0.55;
  cursor: wait;
  transform: none;
  box-shadow: none;
  filter: grayscale(0.15);
}
.btn:active:not([disabled]) { transform: translateY(0) scale(0.98); }
.btn.is-loading { pointer-events: none; }
.btn.is-loading::before {
  content: "";
  width: 0.85em;
  height: 0.85em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: mwSpin 0.55s linear infinite;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-gold:hover { background: var(--gold-400); color: var(--navy-900); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.btn-outline-dark:hover { border-color: var(--gold-500); color: var(--gold-500); }

.btn-white {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gold-500); border-color: var(--gold-500); }

/* ---------------- Header / Nav ---------------- */
/* ---------------- Header / Nav ----------------
   The header is document-flow only. It must never pin to the viewport.
   z-index is for the mobile dropdown overlaying page content, not for stickiness. */
.site-header,
header.site-header,
header.site-header.tf-head {
  background: var(--navy-900);
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  inset: auto !important;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .announce-bar,
.site-header .tf-top,
.site-header .tf-nav,
.site-header .desk-nav,
.site-header .header-main,
.site-header .tf-nav-row {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--white);
  transition: opacity 0.18s ease;
}
.nav-logo img { height: 36px; width: 36px; object-fit: contain; }
.logo-lockup {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.logo-lockup em { font-style: italic; font-weight: 500; color: var(--gold-400); }
.logo-lockup small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 0.2rem;
}
.nav-links {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav-links a { color: rgba(255,255,255,0.75); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-400); }
.nav-request { display: none; }
.nav-cta { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
}

@media (min-width: 861px) {
  .nav-cta { display: inline-flex; }
}
@media (max-width: 860px) {
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-900);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height .28s ease, opacity .22s ease, transform .22s cubic-bezier(0.22, 1, 0.36, 1);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open {
    max-height: min(80vh, 860px);
    overflow-y: auto;
    opacity: 1;
    transform: none;
  }
  .nav-links li { border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links a { display: block; padding: 1rem var(--space-2); min-height: var(--touch); }
  .nav-request { display: list-item; }
  .nav-request a { color: var(--gold-400); }
  .nav-toggle { display: block; }
}

.announce-bar {
  background: #050b14;
  color: var(--gold-400);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.28);
}
.header-main {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.85rem 0 0.45rem;
}
.site-search {
  flex: 1;
  display: flex;
  max-width: 560px;
  min-width: 0;
}
.site-search input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--gold-500);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--white);
  color: var(--ink-700);
}
.site-search button {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}
.site-header .nav {
  justify-content: flex-start;
  padding: 0 0 0.75rem;
}
@media (max-width: 860px) {
  .header-main { flex-wrap: wrap; }
  .nav-logo { flex: 1; min-width: 0; }
  .site-search { order: 3; flex: 1 1 100%; max-width: none; }
  .site-header .nav { padding: 0; min-height: 0; }
  .site-header .nav-links { top: 100%; }
}

/* Marketplace hero — inspired by sourcing desks:
   category list | promo | quote panel. Still no cart. */
.market-wrap { background: var(--navy-900); padding: var(--space-3) 0 var(--space-4); }
.market-hero {
  display: grid;
  grid-template-columns: 230px 1fr 230px;
  gap: var(--space-2);
  align-items: stretch;
}
.cat-side, .quote-side {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--space-2);
}
.cat-side h2, .quote-side h2 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--space-2);
}
.cat-side ul { list-style: none; margin: 0; padding: 0; }
.cat-side a {
  display: block;
  color: rgba(255,255,255,0.8);
  padding: 0.55rem 0.15rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
}
.cat-side li:first-child a { border-top: none; }
.cat-side a:hover { color: var(--gold-400); }
.promo-banner {
  background: radial-gradient(circle at 15% 20%, var(--navy-700), var(--navy-900) 70%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: var(--space-4);
  color: var(--white);
}
.promo-banner .route-line { color: rgba(255,255,255,0.4); margin-bottom: var(--space-2); max-width: 280px; }
.promo-banner h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  margin-bottom: var(--space-2);
}
.promo-banner h1 em { font-style: normal; color: var(--gold-400); }
.promo-banner .lead {
  color: rgba(255,255,255,0.75);
  max-width: 440px;
  margin-bottom: var(--space-3);
}
.quote-side { background: var(--cream); }
.quote-side h2 { color: var(--gold-500); }
.quote-side p { color: var(--ink-500); font-size: 0.92rem; margin: 0 0 var(--space-2); }
.quote-side .btn { width: 100%; justify-content: center; margin-bottom: 0.5rem; }
.quote-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 0.4rem;
}
.quote-form input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
  background: var(--white);
}

.how-strip { background: var(--navy-800); color: var(--white); }
.how-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  padding: var(--space-3) 0;
}
.how-row div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.how-row span {
  font-family: var(--font-mono);
  color: var(--gold-400);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.benefit-strip { background: var(--white); border-bottom: 1px solid var(--line); }
.benefit-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-2);
  padding: var(--space-3) 0;
}
.benefit strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.benefit span { font-size: 0.8rem; color: var(--ink-500); }

.shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.shop-cats a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: var(--navy-800);
}
.shop-cats a:hover { border-color: var(--gold-500); color: var(--gold-500); }
.rail-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem var(--space-2); max-width: none; }
.rail-head h2 { flex: 1; }
.more-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  color: var(--navy-800);
}
.more-link:hover { color: var(--navy-900); }

@media (max-width: 960px) {
  .market-hero { grid-template-columns: 1fr; }
  .cat-side { display: none; }
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
  .how-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .benefit-row { grid-template-columns: 1fr; }
}

/* ---------------- Route line (signature motif) ---------------- */
.route-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.route-line .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-400); flex-shrink: 0;
}
.route-line .path {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, currentColor 50%, transparent 0%);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  min-width: 40px;
  position: relative;
  overflow: hidden;
}
.route-line .path::after {
  content: "✈";
  position: absolute;
  top: -8px;
  font-size: 0.8rem;
  animation: fly 3.5s linear infinite;
}
@keyframes fly {
  0% { left: -10%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ---------------- Hero ---------------- */
.hero {
  background: radial-gradient(circle at 15% 20%, var(--navy-700), var(--navy-900) 65%);
  color: var(--white);
  padding: var(--space-6) 0 var(--space-5);
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: 720px; }
.hero .route-line { color: rgba(255,255,255,0.4); margin-bottom: var(--space-3); max-width: 320px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin-bottom: var(--space-3);
}
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: var(--space-4);
}
.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

/* ---------------- Stat / stamp strip ---------------- */
.stamp-strip { background: var(--navy-800); border-top: 1px solid rgba(255,255,255,0.08); }
.stamp-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2);
  padding: var(--space-3) 0;
}
.stamp { text-align: center; padding: var(--space-2) var(--space-1); border-left: 1px dashed rgba(255,255,255,0.15); }
.stamp:first-child { border-left: none; }
.stamp .num { font-family: var(--font-mono); font-size: 1.4rem; color: var(--gold-400); display: block; }
.stamp .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}
@media (max-width: 640px) {
  .stamp-row { grid-template-columns: 1fr; }
  .stamp { border-left: none; border-top: 1px dashed rgba(255,255,255,0.15); padding-top: var(--space-2); }
  .stamp:first-child { border-top: none; }
}

/* ---------------- Section base ---------------- */
.section { padding: var(--space-6) 0; }
.section-head { max-width: 620px; margin-bottom: var(--space-4); }
.section-head h2 { font-size: clamp(1.65rem, 3.2vw, 2.25rem); margin-top: 0.5rem; }
.section-alt { background: var(--white); }

/* ---------------- Manifest ticket cards (signature element) ---------------- */
.ticket-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 960px) { .ticket-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ticket-grid { grid-template-columns: 1fr; } }

.ticket {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  padding: var(--space-3);
  transition: border-color .15s, transform .15s;
}
.ticket:hover { border-color: var(--gold-500); }
.ticket::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 3.2rem;
  border-top: 1px dashed var(--line);
}
.ticket .code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold-500);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: var(--space-2);
}
.ticket h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.ticket p { color: var(--ink-500); font-size: 0.92rem; margin: 0 0 2.4rem; }
.ticket .stub {
  position: absolute;
  bottom: var(--space-2);
  left: var(--space-3);
  right: var(--space-3);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------------- Category cards ---------------- */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-2); }
@media (max-width: 760px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .category-grid { grid-template-columns: 1fr; } }

.category-card {
  background: var(--navy-800);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: var(--space-2);
  color: var(--white);
  transition: transform .15s ease;
}
.category-card::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,31,68,0.15), rgba(7,20,39,0.9));
}
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-card .tag { position: relative; z-index: 2; }
.category-card .tag .name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; }
.category-card .tag .code {
  display: none;
}

/* Each tile gets a distinct fill so the gallery isn't a wall of
   identical navy blocks. When a real photo is dropped in as an
   <img>, it sits on top of this and the overlay still holds. */
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(232, 199, 102, 0.18), transparent 32%),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.04) 0 1px,
      transparent 1px 14px
    );
  pointer-events: none;
}
.category-card:nth-child(1) { background: radial-gradient(120% 90% at 10% 0%, #1E4076, var(--navy-900)); }
.category-card:nth-child(2) { background: radial-gradient(120% 90% at 90% 10%, #13315F, var(--navy-900)); }
.category-card:nth-child(3) { background: radial-gradient(120% 90% at 20% 80%, #1E4076, var(--navy-900)); }
.category-card:nth-child(4) { background: radial-gradient(120% 90% at 80% 90%, #0A1F44, var(--navy-900)); }
.category-card:nth-child(5) { background: radial-gradient(120% 90% at 50% 0%, #1E4076, var(--navy-900)); }
.category-card:nth-child(6) { background: radial-gradient(120% 90% at 0% 50%, #13315F, var(--navy-900)); }
.category-card:nth-child(7) { background: radial-gradient(120% 90% at 100% 40%, #1E4076, var(--navy-900)); }
.category-card:nth-child(8) { background: radial-gradient(120% 90% at 40% 100%, #0A1F44, var(--navy-900)); }
.category-card:nth-child(9) { background: radial-gradient(120% 90% at 50% 50%, #13315F, var(--navy-900)); }

/* ---------------- CTA band ---------------- */
.cta-band {
  background:
    linear-gradient(180deg, rgba(5,11,20,0.15), rgba(5,11,20,0.15)),
    var(--navy-900);
  color: var(--white);
  padding: var(--space-6) 0;
  text-align: left;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
}
.cta-band h2 { color: var(--white); margin-bottom: var(--space-2); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta-band p { max-width: 520px; margin: 0 0 var(--space-3); color: rgba(255,255,255,0.68); }
.cta-band .bill-meta { color: var(--gold-400); margin-bottom: 0.75rem; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.6); padding: var(--space-5) 0 var(--space-3); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); } }
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-2);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a:hover { color: var(--gold-400); }
.footer-brand { font-family: var(--font-display); color: var(--white); font-size: 1.2rem; margin-bottom: 0.6rem; }
.footer-bottom {
  padding-top: var(--space-3);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

/* ---------------- Floating WhatsApp button ---------------- */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  background: var(--gold-500);
  color: var(--navy-900);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 60;
  font-size: 1.5rem;
  transition: transform .15s;
}
.wa-float:active { transform: scale(0.96); }

.header-phone,
.header-account {
  display: none;
  color: var(--gold-400);
  font-size: 1.25rem;
  padding: 0.35rem 0.45rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.search-cam {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  background: var(--white);
  border: 1px solid var(--gold-500);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  cursor: pointer;
  flex-shrink: 0;
}
.search-cam input { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.site-search { position: relative; }
.site-search .search-cam + input { border-radius: 0; }

.chip-rail { display: none; }
.chip-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.65rem var(--space-3);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chip-scroll::-webkit-scrollbar { display: none; }
.chip-scroll a {
  flex: 0 0 auto;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.chip-scroll a:hover { background: var(--gold-500); color: var(--navy-900); }

.trust-banner { padding: var(--space-4) 0; background: var(--cream); }
.trust-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.trust-card h2 { margin: 0.4rem 0 0.8rem; }
.trust-card ul { margin: 0; padding-left: 1.1rem; color: var(--ink-500); }
.trust-card li { margin-bottom: 0.35rem; }

.process-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: var(--ink-500);
}
.process-list li { margin-bottom: 0.55rem; }
.process-list a { color: var(--gold-500); text-decoration: underline; }

.tabbar {
  display: none;
}
.sticky-cta {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 70;
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  padding: 0.55rem 0.75rem calc(0.55rem + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(7,20,39,0.08);
}
.sticky-cta .btn { flex: 1; justify-content: center; padding: 0.85rem 0.5rem; }
.sticky-chat {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.item-page .item-main { padding-bottom: 5.5rem; }
.request-sticky { display: none; }

#item-header-title {
  max-width: 46vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
}
.item-info, .item-block { padding: var(--space-3); background: var(--white); border-bottom: 8px solid #f0eee8; }
.item-info h1 { font-family: var(--font-body); font-size: 1.15rem; line-height: 1.35; margin-bottom: 0.5rem; }
.item-block h2 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 0.75rem; }
.attr-list { margin: 0; }
.attr-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.attr-list dt { color: var(--ink-500); }
.attr-list dd { margin: 0; }
.muted { color: var(--ink-500); font-size: 0.92rem; }

@media (min-width: 761px) {
  .selected-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .selected-grid > :first-child { grid-row: span 2; }
  .item-main { max-width: 560px; margin: 0 auto; background: var(--cream); }
}

@media (max-width: 860px) {
  .has-tabbar { padding-bottom: 4.5rem; }
  .has-tabbar .wa-float {
    display: flex;
    bottom: calc(4.6rem + env(safe-area-inset-bottom));
    z-index: 66;
  }
  .item-page.has-tabbar .wa-float,
  .has-tabbar:has(.request-sticky) .wa-float { display: none; }
  .has-tabbar .quote-link { display: none; }
  .header-phone,
  .header-account { display: inline-flex; }
  .tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 65;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 0.35rem 0 calc(0.35rem + env(safe-area-inset-bottom));
  }
  .tabbar a,
  .tabbar button {
    text-align: center;
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--ink-500);
    padding: 0.5rem 0.15rem;
    background: none;
    border: 0;
    cursor: pointer;
  }
  .tabbar a.active,
  .tabbar button.active { color: var(--gold-500); }
  .tabbar [data-quote-count] {
    display: inline-flex;
    min-width: 1rem;
    background: var(--gold-500);
    color: var(--navy-900);
    border-radius: 99px;
    padding: 0 0.3rem;
  }
  .item-page .tabbar { display: grid; }
  .sticky-cta {
    bottom: 3.65rem;
  }
  .item-page.has-tabbar,
  .has-tabbar:has(.request-sticky) {
    padding-bottom: 8.75rem;
  }
  .request-sticky { display: flex; }
  .request-sticky + .wa-float { display: none; }
}

/* ---------------- Generic page hero (inner pages) ---------------- */
.page-hero {
  background:
    radial-gradient(circle at 88% 10%, rgba(201,162,39,0.16), transparent 28%),
    var(--navy-900);
  color: var(--white);
  padding: var(--space-6) 0 var(--space-5);
}
.page-hero h1 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.75rem); max-width: 18ch; }
.page-hero p { color: rgba(255,255,255,0.78); max-width: 560px; margin-top: var(--space-2); font-size: 1.12rem; line-height: 1.6; }

/* ---------------- Form ---------------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  max-width: 680px;
  box-shadow: 0 18px 50px rgba(7, 20, 39, 0.06);
}
.form-card[hidden] { display: none !important; }
.field { margin-bottom: var(--space-3); }
.field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-500);
  margin-bottom: 0.5rem;
}
.field .hint { font-size: 0.78rem; color: var(--ink-300); margin-top: 0.35rem; }
.field input, .field textarea, .field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1.02rem;
  padding: 0.9rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink-700);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--gold-500);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: 0.85rem; color: var(--ink-500); margin-top: var(--space-2); }
.form-status {
  margin-top: var(--space-2);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.8rem;
  border-radius: var(--radius);
  display: none;
}
.form-status.success,
.form-status.error,
.form-status.loading {
  animation: mwRise 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.form-status.success { display: block; background: #F0F6EC; color: #3B6B2E; border: 1px solid #C6E0B4; }
.form-status.error { display: block; background: #FBEAEA; color: #A03636; border: 1px solid #F2C4C4; }
.form-status a { text-decoration: underline; }

/* ---------------- FAQ accordion ---------------- */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-3) 0;
  min-height: var(--touch);
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--navy-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q .icon { font-family: var(--font-mono); color: var(--gold-500); transition: transform .2s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; color: var(--ink-500); }
.faq-item.open .faq-a { max-height: 520px; }
.faq-a p { padding-bottom: var(--space-3); margin: 0; }

/* ---------------- Two column layout ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: var(--space-3); } }

.panel { background: var(--navy-900); color: var(--white); border-radius: var(--radius); padding: var(--space-4); }
.panel h3 { color: var(--gold-400); font-size: 1rem; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: var(--space-2); }

/* ============================================================
   ADMIN — staff panel (admin.html only)
   ============================================================ */
body.admin-app {
  background: #EFEFF4;
  background-image: none;
  min-height: 100vh;
  font-family: var(--font-body);
  overflow-x: hidden;
}
body.admin-app .btn {
  border-radius: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, filter 0.18s ease;
}
body.admin-app .btn:hover {
  transform: translateY(-1px);
}
body.admin-app .btn:active {
  transform: translateY(0) scale(0.98);
}
body.admin-app .form-card {
  border-radius: 18px;
  border: 0;
  box-shadow: 0 10px 30px rgba(23, 24, 27, 0.06);
  animation: adminFadeUp 0.4s cubic-bezier(.2,.8,.2,1) both;
}
body.admin-app .form-status.success,
body.admin-app .form-status.error {
  animation: adminPop 0.35s cubic-bezier(.2,.8,.2,1) both;
}
.admin-panel:not([hidden]).is-animating {
  animation: adminPanelIn 0.38s cubic-bezier(.2,.8,.2,1) both;
}
.admin-shell.is-ready .admin-sidebar {
  animation: adminSidebarIn 0.45s cubic-bezier(.2,.8,.2,1) both;
}
.admin-shell.is-ready .admin-workspace {
  animation: adminFadeUp 0.5s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 0.08s;
}
.status-pill {
  transition: transform 0.18s ease, background 0.18s ease;
}

@keyframes adminRise {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@keyframes adminFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes adminFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes adminPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes adminDrawerIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}
@keyframes adminDrawerOut {
  from { opacity: 1; transform: none; }
  to { opacity: 0; transform: translateX(18px); }
}
@keyframes adminRowIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes adminTitleIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
@keyframes adminSidebarIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: none; }
}
@keyframes adminPop {
  from { opacity: 0; transform: translateY(6px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .admin-gate-card,
  .admin-panel:not([hidden]).is-animating,
  .admin-detail:not([hidden]),
  .admin-detail.is-leaving,
  .admin-detail-inner.is-swap,
  .admin-stat,
  .admin-card,
  .admin-shell.is-ready .admin-sidebar,
  .admin-shell.is-ready .admin-workspace,
  .admin-welcome,
  body.admin-app .form-card,
  body.admin-app .form-status.success,
  body.admin-app .form-status.error,
  body.admin-app .admin-order-table tbody tr,
  .admin-top h1.is-animating {
    animation: none !important;
  }
  body.admin-app .btn:hover,
  .admin-stat:hover,
  .admin-contact-btn:hover,
  body.admin-app .chip:hover {
    transform: none;
  }
}
.admin-gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  background: #EFEFF4;
}
.admin-gate-card {
  width: min(440px, 100%);
  margin: var(--space-5) auto;
  animation: adminRise 0.55s cubic-bezier(.2,.8,.2,1) both;
}
.admin-gate-card h1,
.admin-gate-card h2 { margin: 0.4rem 0 0.75rem; font-family: var(--font-body); }
.admin-gate-card p { color: var(--ink-500); margin-top: 0; }
.admin-gate-foot { margin-top: var(--space-3); font-size: 0.9rem; }
.admin-gate-foot a { text-decoration: underline; color: var(--navy-700); }
.login-alt {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0.85rem 0 0.35rem;
}
.login-alt-btn {
  border: 0;
  background: transparent;
  padding: 0;
  color: #0A1F44;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
}
.login-alt-btn:hover { color: #C9A227; }

.admin-shell {
  display: flex;
  min-height: 100vh;
  background: #EFEFF4;
}
.admin-sidebar {
  width: 248px;
  flex-shrink: 0;
  background: #17181B;
  color: rgba(255,255,255,0.78);
  padding: 1.35rem 0.9rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  padding: 0.2rem 0.55rem;
}
.admin-brand img { width: 34px; height: 34px; object-fit: contain; }
.admin-brand span { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; line-height: 1.15; }
.admin-brand small { display: block; font-size: 0.7rem; font-weight: 500; color: rgba(255,255,255,0.5); }
.admin-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin-bottom: 0;
  flex: 1;
}
.admin-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.72rem 0.85rem 0.72rem 1rem;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,0.72);
  cursor: pointer;
  position: relative;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.admin-nav-btn::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 99px;
  background: var(--gold-500);
  transform: translateY(-50%);
  transition: height 0.22s ease;
}
.admin-nav-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.admin-nav-btn:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.admin-nav-btn.active { background: #fff; color: #17181B; }
.admin-nav-btn.active::before { height: 16px; }
.admin-nav-secondary { margin-top: auto; }
.admin-sidebar-foot { display: flex; flex-direction: column; gap: 0.7rem; padding: 0.3rem 0.4rem 0.4rem; }
.admin-logout {
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.admin-logout:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-side-link {
  display: none;
  width: 100%;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
}
.admin-side-link:hover { background: rgba(255,255,255,0.06); color: #fff; }
.admin-nav-scrim {
  display: none;
}
.admin-workspace { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.admin-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 1.5rem 0.4rem;
  background: transparent;
  border: 0;
}
.admin-top h1 {
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.admin-top h1.is-animating {
  animation: adminTitleIn 0.35s cubic-bezier(.2,.8,.2,1) both;
}
.admin-top-link {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--ink-500);
  transition: color 0.18s ease;
}
.admin-top-link:hover { color: #17181B; }
.admin-welcome {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.55rem 1.3rem 0;
  padding: 0.95rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(201, 162, 39, 0.38);
  border-left: 4px solid #C9A227;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(10, 31, 68, 0.06);
  animation: adminWelcomeIn 0.42s cubic-bezier(.2,.8,.2,1) both;
}
.admin-welcome[hidden] { display: none !important; }
.admin-welcome-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C9A227;
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.16);
  flex-shrink: 0;
}
.admin-welcome-copy { min-width: 0; flex: 1; }
.admin-welcome-copy strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A227;
  margin-bottom: 0.15rem;
}
.admin-welcome-copy p {
  margin: 0;
  color: #0A1F44;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.admin-welcome-dismiss {
  border: 0;
  background: transparent;
  color: var(--ink-500);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
}
.admin-welcome-dismiss:hover { background: #F6F1E4; color: #0A1F44; }
@keyframes adminWelcomeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem 0.35rem 0.35rem;
  box-shadow: 0 6px 18px rgba(23,24,27,0.06);
}
.admin-user strong { display: block; font-size: 0.85rem; line-height: 1.2; }
.admin-user small { display: block; font-size: 0.72rem; color: var(--ink-500); max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.admin-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #17181B;
  background: #FFD56A;
  flex-shrink: 0;
}
.admin-menu-toggle {
  display: none;
  border: 0;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(23,24,27,0.06);
}
.admin-stage {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  padding: 0.7rem 1.3rem 1.3rem;
  min-height: 0;
  flex: 1;
}
.admin-content {
  flex: 1;
  min-width: 0;
  padding: 0;
}
.admin-detail {
  width: 340px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(23,24,27,0.08);
  overflow: auto;
  transform-origin: right center;
}
.admin-detail:not([hidden]) {
  animation: adminDrawerIn 0.38s cubic-bezier(.2,.8,.2,1) both;
}
.admin-detail.is-leaving {
  animation: adminDrawerOut 0.24s ease both;
  pointer-events: none;
}
.admin-detail-inner { padding: 1.15rem 1.15rem 1.4rem; }
.admin-detail-inner.is-swap {
  animation: adminFadeUp 0.28s ease both;
}
.admin-detail-head {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}
.admin-detail-head h2 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; }
.admin-detail-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #F3F4F6;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.18s ease, transform 0.18s ease;
}
.admin-detail-close:hover { background: #E8E8EE; transform: rotate(90deg); }
.admin-detail-profile { text-align: center; padding: 0.4rem 0 1rem; }
.admin-detail-profile .admin-avatar { width: 84px; height: 84px; font-size: 1.4rem; margin: 0 auto 0.75rem; }
.admin-detail-profile h3 { font-family: var(--font-body); font-size: 1.15rem; margin: 0; }
.admin-detail-profile p { margin: 0.25rem 0 0; color: var(--ink-500); font-size: 0.88rem; }
.admin-contact-row {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
}
.admin-contact-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: #F3F4F6;
  color: #17181B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}
.admin-contact-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.admin-contact-btn:hover { background: #FFD56A; transform: translateY(-2px); }
.admin-detail-meta { display: flex; flex-direction: column; gap: 0.7rem; font-size: 0.92rem; }
.admin-detail-meta dt { color: var(--ink-500); font-size: 0.75rem; margin-bottom: 0.15rem; }
.admin-detail-meta dd { margin: 0; }
.admin-detail-photo { width: 100%; border-radius: 14px; margin: 0.4rem 0 0.8rem; }
.admin-detail-actions { display: flex; gap: 0.55rem; margin-top: 1.1rem; }
.admin-detail-actions .btn { flex: 1; justify-content: center; }
.admin-detail-sms { margin-top: 1rem; }
.admin-detail-sms textarea {
  width: 100%;
  border: 1px solid #ECECEF;
  border-radius: 12px;
  padding: 0.7rem;
  min-height: 88px;
  font: inherit;
  resize: vertical;
}
.admin-detail-meta select {
  width: 100%;
  border: 0;
  background: #F3F4F6;
  border-radius: 10px;
  padding: 0.55rem 0.7rem;
  font: inherit;
}
.admin-detail-sms label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.2rem;
}
.admin-stat {
  background: var(--white);
  border: 0;
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 10px 24px rgba(23,24,27,0.05);
  animation: adminFadeUp 0.42s cubic-bezier(.2,.8,.2,1) both;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.admin-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(23,24,27,0.08);
}
.admin-stat:nth-child(1) { animation-delay: 0.02s; }
.admin-stat:nth-child(2) { animation-delay: 0.06s; }
.admin-stat:nth-child(3) { animation-delay: 0.10s; }
.admin-stat:nth-child(4) { animation-delay: 0.14s; }
.admin-stat:nth-child(5) { animation-delay: 0.18s; }
.admin-stat:nth-child(6) { animation-delay: 0.22s; }
.admin-stat:nth-child(7) { animation-delay: 0.26s; }
.admin-stat:nth-child(8) { animation-delay: 0.30s; }
.admin-stat strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.7rem;
  color: #17181B;
  line-height: 1;
}
.admin-stat span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-500);
}
.admin-overview-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1rem;
}
.admin-card {
  background: var(--white);
  border: 0;
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: 0 10px 24px rgba(23,24,27,0.05);
  animation: adminFadeUp 0.45s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: 0.12s;
}
.admin-card h2 { font-family: var(--font-body); font-size: 1.05rem; margin-bottom: 0.8rem; }
.admin-review-preview {
  border-top: 1px solid #F0F0F3;
  padding: 0.75rem 0;
}
.admin-review-preview:first-child { border-top: 0; padding-top: 0; }
.admin-review-preview span { font-family: var(--font-body); font-size: 0.75rem; color: #C9A227; margin-left: 0.4rem; }
.admin-review-preview p { margin: 0.35rem 0 0; color: var(--ink-500); font-size: 0.92rem; }
.admin-bar-tools { display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.admin-search {
  min-width: 220px;
  padding: 0.62rem 0.85rem;
  border: 0;
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  box-shadow: 0 6px 16px rgba(23,24,27,0.05);
}
.admin-table-compact { min-width: 0; }
@media (min-width: 801px) {
  .admin-table-compact { min-width: 520px; }
}
.admin-form h2 { margin: var(--space-2) 0 var(--space-3); font-family: var(--font-body); }
.admin-form .form-note { margin-top: 0; margin-bottom: var(--space-3); color: var(--ink-500); }
.sms-templates { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0 0 0.9rem; }
.sms-audience-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.65rem;
}
.sms-audience-toolbar .hint { margin: 0 0 0 0.2rem; }
.sms-audience {
  max-height: 260px;
  overflow: auto;
  margin: 0 0 1rem;
  padding: 0.25rem;
  border-radius: 14px;
  background: #F4F5F7;
}
.sms-audience-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  cursor: pointer;
}
.sms-audience-row:hover,
.sms-audience-row:has(input:checked) { background: #fff; }
.sms-audience-row input { margin-top: 0.2rem; accent-color: #17181B; }
.sms-audience-row strong { display: block; font-size: 0.92rem; }
.sms-audience-row small { display: block; color: var(--ink-500); font-size: 0.78rem; }
.sms-audience-empty {
  padding: 0.9rem 0.75rem;
  color: var(--ink-500);
  font-size: 0.88rem;
}
.admin-person { display: flex; align-items: center; gap: 0.7rem; }
.admin-person small { display: block; color: var(--ink-500); font-size: 0.78rem; }
.admin-order-row { cursor: pointer; }
.admin-order-row td {
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.admin-order-row:hover td { background: #fff; }
.admin-order-row.is-selected td { background: #fff; }
.admin-order-wrap {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
body.admin-app .admin-order-table { min-width: 0; border-collapse: separate; border-spacing: 0 8px; }
body.admin-app .admin-order-table thead th {
  background: transparent;
  border: 0;
  color: #9AA0A8;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  padding: 0.2rem 1rem;
}
body.admin-app .admin-order-table td {
  background: rgba(255,255,255,0.55);
  border: 0;
  padding: 0.95rem 1rem;
  vertical-align: middle;
}
body.admin-app .admin-order-table td:first-child { border-radius: 16px 0 0 16px; }
body.admin-app .admin-order-table td:last-child { border-radius: 0 16px 16px 0; }
body.admin-app .admin-order-table tbody tr {
  animation: adminRowIn 0.32s cubic-bezier(.2,.8,.2,1) both;
}
body.admin-app .admin-order-table tbody tr:nth-child(1) { animation-delay: 0.02s; }
body.admin-app .admin-order-table tbody tr:nth-child(2) { animation-delay: 0.05s; }
body.admin-app .admin-order-table tbody tr:nth-child(3) { animation-delay: 0.08s; }
body.admin-app .admin-order-table tbody tr:nth-child(4) { animation-delay: 0.11s; }
body.admin-app .admin-order-table tbody tr:nth-child(5) { animation-delay: 0.14s; }
body.admin-app .admin-order-table tbody tr:nth-child(6) { animation-delay: 0.17s; }
body.admin-app .admin-order-table tbody tr:nth-child(7) { animation-delay: 0.20s; }
body.admin-app .admin-order-table tbody tr:nth-child(8) { animation-delay: 0.23s; }
body.admin-app .admin-order-table tr.is-selected td {
  background: #fff;
  box-shadow: 0 12px 28px rgba(23,24,27,0.08);
}

@media (max-width: 1100px) {
  .admin-stat-grid { grid-template-columns: 1fr 1fr; }
  .admin-detail { position: fixed; top: 0.8rem; right: 0.8rem; bottom: 0.8rem; z-index: 25; }
}
@media (max-width: 960px) {
  .admin-stat-grid,
  .admin-overview-split { grid-template-columns: 1fr 1fr; }
}
body.admin-nav-open { overflow: hidden; }

@media (max-width: 800px) {
  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 30;
    width: min(280px, 86vw);
    transform: translateX(-105%);
    transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
    animation: none !important;
    padding-top: max(1.35rem, env(safe-area-inset-top));
    padding-bottom: max(1.1rem, env(safe-area-inset-bottom));
  }
  .admin-shell.nav-open .admin-sidebar { transform: translateX(0); }
  .admin-nav-scrim {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 29;
    border: 0;
    background: rgba(10, 16, 28, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .admin-shell.nav-open .admin-nav-scrim {
    opacity: 1;
    pointer-events: auto;
  }
  .admin-side-link { display: block; }
  .admin-menu-toggle { display: none; }
  .admin-top {
    gap: 0.55rem;
    padding: max(0.7rem, env(safe-area-inset-top)) 0.85rem 0.35rem;
  }
  .admin-top h1 {
    flex: 1;
    min-width: 0;
    font-size: 1.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .admin-top-link { display: none; }
  .admin-user { padding: 0.2rem; }
  .admin-user-copy { display: none; }
  .admin-stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.9rem;
  }
  .admin-stat { padding: 0.85rem 0.9rem; border-radius: 14px; }
  .admin-stat strong { font-size: 1.35rem; }
  .admin-stat span { font-size: 0.72rem; }
  .admin-overview-split { grid-template-columns: 1fr; }
  .admin-content { padding: 0; }
  .admin-search { min-width: 0; width: 100%; font-size: 16px; }
  .admin-stage {
    padding: 0.45rem 0.75rem max(1rem, env(safe-area-inset-bottom));
  }
  .admin-bar {
    align-items: stretch;
    flex-direction: column;
  }
  .admin-bar-tools { width: 100%; }
  .admin-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.15rem;
  }
  .admin-card { padding: 1rem 0.9rem; }
  .admin-form { padding: 1rem 0.9rem; }
  body.admin-app input,
  body.admin-app select,
  body.admin-app textarea {
    font-size: 16px;
  }
  .admin-detail {
    inset: 8vh 0 0 0;
    top: 8vh;
    right: 0;
    left: 0;
    bottom: 0;
    width: auto;
    border-radius: 22px 22px 0 0;
    z-index: 40;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .admin-detail:not([hidden]) { animation: adminRise 0.38s cubic-bezier(.2,.8,.2,1) both; }
  .admin-detail.is-leaving { animation: adminFade 0.2s ease both; }
  .admin-detail-actions { flex-wrap: wrap; }
  body.admin-app .table-wrap {
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }
  body.admin-app .admin-table,
  body.admin-app .admin-table-compact,
  body.admin-app .admin-order-table {
    min-width: 0;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.65rem;
  }
  body.admin-app .admin-table thead { display: none; }
  body.admin-app .admin-table tbody,
  body.admin-app .admin-table tr,
  body.admin-app .admin-table td {
    display: block;
    width: 100%;
  }
  body.admin-app .admin-table tr {
    background: #fff;
    border-radius: 16px;
    padding: 0.85rem 1rem;
    box-shadow: 0 8px 20px rgba(23,24,27,0.05);
  }
  body.admin-app .admin-table td,
  body.admin-app .admin-order-table td,
  body.admin-app .admin-order-table td:first-child,
  body.admin-app .admin-order-table td:last-child,
  body.admin-app .admin-order-table tr.is-selected td {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0.18rem 0;
    min-width: 0;
    white-space: normal;
  }
  body.admin-app .admin-table .cell-details { min-width: 0; }
  body.admin-app .admin-table .row-actions { flex-direction: row; flex-wrap: wrap; margin-top: 0.35rem; }
}

.admin-order-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.admin-order-card {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  box-shadow: 0 8px 20px rgba(23,24,27,0.05);
  cursor: pointer;
  font: inherit;
  color: inherit;
  animation: adminRowIn 0.32s cubic-bezier(.2,.8,.2,1) both;
}
.admin-order-card:hover,
.admin-order-card.is-selected {
  box-shadow: 0 12px 28px rgba(23,24,27,0.1);
}
.admin-order-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.admin-order-card strong { display: block; font-size: 0.98rem; }
.admin-order-card small {
  display: block;
  color: var(--ink-500);
  font-size: 0.8rem;
  margin-top: 0.12rem;
}
.admin-order-card p {
  margin: 0.4rem 0 0;
  color: var(--ink-500);
  font-size: 0.88rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.admin-dock { display: none; }

.admin-person { align-items: flex-start; }

body.admin-app .chip {
  border-radius: 10px;
  border: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(23,24,27,0.05);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
body.admin-app .chip:hover {
  transform: translateY(-1px);
}
body.admin-app .chip.active { background: #17181B; color: #fff; }
body.admin-app .table-wrap {
  border: 0;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(23,24,27,0.05);
}
@media (min-width: 801px) {
  body.admin-app .admin-table { min-width: 720px; }
}
body.admin-app .admin-table th {
  background: transparent;
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
  color: #9AA0A8;
  font-weight: 500;
}
body.admin-app .status-pill {
  margin-bottom: 0;
  border: 0;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.32rem 0.7rem;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
body.admin-app .status-pill.new { background: #FFE58A; color: #7A5B00; }
body.admin-app .status-pill.contacted { background: #D6E4FF; color: #1D39C4; }
body.admin-app .status-pill.quoted { background: #FFD8BF; color: #AD4E00; }
body.admin-app .status-pill.confirmed { background: #D9F7BE; color: #237804; }
body.admin-app .status-pill.closed { background: #F0F0F0; color: #595959; }

.admin-section { padding: var(--space-4) 0 var(--space-6); min-height: 55vh; }

.admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.admin-filters { display: flex; gap: var(--space-1); flex-wrap: wrap; }
.chip {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-500);
  cursor: pointer;
}
.chip:hover { border-color: var(--gold-500); }
.chip.active { background: var(--navy-900); color: var(--gold-400); border-color: var(--navy-900); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.admin-table { width: 100%; border-collapse: collapse; }
@media (min-width: 801px) {
  .admin-table { min-width: 720px; }
}
.admin-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-500);
  padding: 0.9rem;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  white-space: nowrap;
}
.admin-table td { padding: 0.9rem; border-bottom: 1px solid var(--line); font-size: 0.92rem; vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .cell-details { min-width: 260px; white-space: pre-wrap; }
.admin-table .cell-when { font-family: var(--font-mono); font-size: 0.75rem; color: var(--ink-300); white-space: nowrap; }
.admin-table .muted { color: var(--ink-300); }
.admin-table select {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink-700);
}
.admin-table .row-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  white-space: nowrap;
}
.admin-table .row-actions a { color: var(--navy-700); text-decoration: underline; }
.admin-table .row-actions a:hover { color: var(--gold-500); }

.status-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink-500);
  margin-bottom: 0.45rem;
}
.status-pill.new { background: var(--navy-900); color: var(--gold-400); border-color: var(--navy-900); }
.status-pill.contacted { background: #EEF3FA; color: var(--navy-700); border-color: #CFDDF0; }
.status-pill.quoted { background: #FDF6E3; color: #7A5F12; border-color: #EBD9A6; }
.status-pill.confirmed { background: #F0F6EC; color: #3B6B2E; border-color: #C6E0B4; }
.status-pill.closed { background: #F2F2F2; color: var(--ink-500); }

.admin-empty { padding: var(--space-5) var(--space-3); text-align: center; color: var(--ink-500); }
.admin-empty .code { font-family: var(--font-mono); color: var(--gold-500); font-size: 0.75rem; letter-spacing: 0.08em; display: block; margin-bottom: 0.5rem; }

.admin-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-500);
  margin-top: var(--space-2);
}

.admin-form { max-width: 640px; }
.admin-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: var(--radius); }

/* ---------------- Public products ---------------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); }
@media (max-width: 1020px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .product-grid { grid-template-columns: 1fr 1fr; } }
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1;
}
.product-card:hover {
  border-color: var(--gold-500);
}
.product-card img, .product-placeholder {
  display: block;
  width: 240px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1;
  max-height: 240px;
  object-fit: cover;
  background: #f3f1eb;
  padding: 0;
  border-radius: 1rem;
  margin: 0 auto;
}
.product-body { padding: 0.85rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.product-body .code { font-family: var(--font-body); font-size: 0.72rem; color: var(--ink-500); letter-spacing: 0.02em; text-transform: none; }
.product-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-body p:not(.product-tagline) { display: none; }
.product-price { font-family: var(--font-body); font-weight: 600; color: var(--gold-500); font-size: 1.12rem; margin-top: auto; }
.product-price small { font-family: var(--font-body); font-size: 0.78rem; font-weight: 400; color: var(--ink-500); text-transform: none; letter-spacing: 0; }
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0;
  padding: 0 0.85rem 0.85rem;
}
.product-actions .btn,
.product-body .btn {
  margin-top: 0;
  justify-content: center;
  padding: 0.55rem 0.35rem;
  font-size: 0.72rem;
}
.product-order {
  margin-top: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--gold-500);
  text-align: center;
  padding: 0.55rem 0.35rem;
  border: 0;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  display: block;
}
.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 var(--space-4);
}
.category-chips .chip {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy-deep);
  text-decoration: none;
}
.category-chips .chip.active,
.category-chips .chip:hover {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}
.catalog-lane { margin-bottom: var(--space-5); }
.catalog-lane .product-grid { margin-top: var(--space-2); }

.quote-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold-400);
  border: 1px solid rgba(201,162,39,0.45);
  border-radius: var(--radius);
  padding: 0.65rem 0.85rem;
  white-space: nowrap;
  display: inline-flex;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.quote-count {
  display: inline-flex;
  min-width: 1.2rem;
  justify-content: center;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 99px;
  padding: 0 0.35rem;
  margin-left: 0.25rem;
}
#mw-toast {
  position: fixed;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--navy-900);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: opacity .2s ease, transform .2s ease;
}
#mw-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.link-paste-band {
  background: var(--navy-800);
  color: var(--white);
  padding: var(--space-5) 0;
}
.link-paste-band h2 { color: var(--white); margin: 0.4rem 0 0.6rem; }
.link-paste-band p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 0 var(--space-3); }
.link-paste-form { display: flex; gap: 0; max-width: 720px; }
.link-paste-form input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--gold-500);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  font-size: 1rem;
}
.link-paste-form .btn { border-radius: 0 var(--radius) var(--radius) 0; }
@media (max-width: 640px) {
  .link-paste-form { flex-direction: column; }
  .link-paste-form input { border-right: 1px solid var(--gold-500); border-radius: var(--radius); margin-bottom: 0.6rem; }
  .link-paste-form .btn { border-radius: var(--radius); width: 100%; justify-content: center; }
}
.section-note { color: var(--ink-500); max-width: 640px; margin: 0 0 var(--space-3); }

.photo-preview img { width: 96px; height: 96px; object-fit: cover; border-radius: var(--radius); margin-top: 0.5rem; }
.photo-drop {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 1.1rem;
  border: 1.5px dashed var(--gold-500);
  background: color-mix(in srgb, var(--gold-500) 8%, var(--white));
  cursor: pointer;
  text-align: center;
}
.photo-drop input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}
.photo-drop-copy {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-800);
}
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(7, 20, 39, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.order-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.order-modal[hidden] { display: none; }
.order-modal-card {
  width: min(440px, 100%);
  background: var(--white);
  padding: 1.8rem 1.5rem;
  border-top: 4px solid var(--gold-500);
  box-shadow: 0 24px 60px rgba(7, 20, 39, 0.28);
  transform: translateY(10px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}
.order-modal.is-open .order-modal-card {
  transform: none;
  opacity: 1;
}
.order-modal-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 0.8rem;
}
.order-modal-card p {
  color: var(--ink-500);
  margin: 0 0 1.4rem;
  line-height: 1.55;
}
.order-modal-card .btn { width: 100%; justify-content: center; }
.order-modal-card .btn + .btn { margin-top: 0.6rem; }
.order-modal-card .login-alt-btn {
  display: block;
  width: 100%;
  margin-top: 0.85rem;
  background: none;
  border: 0;
  color: var(--ink-500);
  cursor: pointer;
  text-align: center;
}
body.order-modal-open { overflow: hidden; }
.empty-note { color: var(--ink-500); margin-bottom: var(--space-3); }
.quote-rows { list-style: none; margin: 0; padding: 0; }
.quote-rows li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.quote-rows img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.quote-rows .quote-row-main { flex: 1; min-width: 0; }
.quote-rows strong { display: block; }
.quote-rows span { color: var(--ink-500); font-size: 0.85rem; }
.cart-total {
  margin: 0.9rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-deep);
}
.cart-total strong { color: var(--gold-500); }
.cart-total small {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink-500);
}
.qty-controls { display: flex; align-items: center; gap: 0.45rem; }
.qty-controls button {
  width: 2rem; height: 2rem;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  border-radius: var(--radius);
}
.qty-controls .linkish { width: auto; border: 0; color: var(--gold-500); font-size: 0.8rem; }
#shipping-advice { display: none; }
#shipping-advice:not([hidden]) { display: block; }

/* ============================================================
   Import-desk redesign — homepage structure
   ============================================================ */
.bill-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 1rem;
}
.section-lede {
  color: var(--ink-500);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0.75rem 0 0;
}
.text-link {
  color: var(--gold-400);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
}
.text-link:hover { color: var(--gold-300); }

.desk-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(201,162,39,0.18), transparent 32%),
    linear-gradient(165deg, #0d2148 0%, var(--navy-900) 52%, #050b14 100%);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 5.5rem) 0 clamp(2.2rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.desk-hero::after {
  content: "MW";
  position: absolute;
  right: -4vw;
  bottom: -8%;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 0.8;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}
.desk-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.desk-copy h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.4vw, 4.15rem);
  letter-spacing: -0.03em;
  margin: 0 0 1.1rem;
}
.desk-copy h1 em {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-400);
}
.desk-copy .lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.12rem;
  max-width: 46ch;
  margin: 0 0 1.6rem;
}
.desk-copy .route-line {
  color: rgba(255,255,255,0.42);
  max-width: 340px;
  margin-bottom: 1.25rem;
}
.command-bar label, .link-paste-form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.45rem;
}
.command-row { display: flex; max-width: 560px; }
.command-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(201,162,39,0.55);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 0.95rem 1rem;
  font-size: 1rem;
  background: rgba(255,255,255,0.96);
  color: var(--navy-900);
}
.command-row .btn { border-radius: 0 var(--radius) var(--radius) 0; }
.desk-copy .hero-actions { margin-top: 1.15rem; align-items: center; }

.bill-card {
  background: var(--paper);
  color: var(--navy-900);
  border: 1px solid rgba(201,162,39,0.45);
  box-shadow: 0 28px 70px rgba(0,0,0,0.28);
  padding: 0;
}
.bill-card header,
.bill-card footer {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.15rem;
  background: var(--navy-900);
  color: var(--gold-400);
}
.bill-card ol { list-style: none; margin: 0; padding: 0.4rem 0; }
.bill-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border-top: 1px dashed rgba(10,31,68,0.12);
}
.bill-card li:first-child { border-top: 0; }
.bill-card strong { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; }
.bill-card li span { color: var(--ink-500); font-size: 0.92rem; }

.metric-band { background: #fffdf8; border-bottom: 1px solid var(--line); }
.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-row div {
  padding: 1.35rem 1.1rem 1.4rem;
  border-left: 1px solid var(--line);
}
.metric-row div:first-child { border-left: 0; padding-left: 0; }
.metric-row b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.metric-row span { color: var(--ink-500); font-size: 0.88rem; }

.process-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-rail li {
  padding: 1.5rem 1.2rem 0 0;
  border-left: 1px solid var(--line);
  padding-left: 1.2rem;
  position: relative;
}
.process-rail li:first-child { border-left: 0; padding-left: 0; }
.process-rail .code { display: block; margin-bottom: 0.7rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold-500); }
.process-rail h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.process-rail p { color: var(--ink-500); margin: 0; font-size: 0.95rem; }

.section-ink {
  background: var(--navy-900);
  color: var(--white);
}
.section-ink h2 { color: var(--white); }
.section-ink p { color: rgba(255,255,255,0.7); }
.lane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  align-items: end;
}
.lane-grid .link-paste-form { max-width: none; flex-direction: column; }
.lane-grid .link-paste-form input {
  border: 1px solid rgba(201,162,39,0.55);
  border-radius: var(--radius);
  margin-bottom: 0.7rem;
}
.lane-grid .link-paste-form .btn { border-radius: var(--radius); width: 100%; justify-content: center; }

.lane-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.lane-tiles a {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  min-height: 7.5rem;
  padding: 1.1rem 1rem;
  background: var(--navy-900);
  color: var(--white);
  border: 1px solid transparent;
}
.lane-tiles a:hover { border-color: var(--gold-500); color: var(--gold-300); }
.lane-tiles .code {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold-400);
}

.trust-plate {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
}
.trust-plate h2 { margin: 0.4rem 0 0.6rem; }
.trust-plate p { color: var(--ink-500); margin: 0; max-width: 52ch; }

.desk-form {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-4);
  align-items: start;
}
.desk-form .form-card { max-width: none; }
.desk-aside {
  background: var(--navy-900);
  color: rgba(255,255,255,0.72);
  padding: var(--space-4);
}
.desk-aside h3 { color: var(--white); margin: 0.4rem 0 0.8rem; }
.desk-aside ol { margin: 0; padding-left: 1.1rem; display: flex; flex-direction: column; gap: 0.65rem; }
.desk-aside a { color: var(--gold-400); }

@media (max-width: 960px) {
  .desk-hero-grid, .lane-grid, .desk-form { grid-template-columns: 1fr; }
  .process-rail, .metric-row, .lane-tiles { grid-template-columns: 1fr 1fr; }
  .metric-row div { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .metric-row div:nth-child(-n+2) { border-top: 0; }
  .process-rail li { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.2rem; }
  .bill-card { max-width: 420px; }
}
@media (max-width: 640px) {
  .process-rail, .metric-row, .lane-tiles { grid-template-columns: 1fr; }
  .metric-row div:nth-child(-n+2) { border-top: 1px solid var(--line); }
  .metric-row div:first-child { border-top: 0; }
  .command-row { flex-direction: column; }
  .command-row input { border-right: 1px solid rgba(201,162,39,0.55); border-radius: var(--radius); margin-bottom: 0.55rem; }
  .command-row .btn { border-radius: var(--radius); width: 100%; justify-content: center; }
  .trust-plate { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Logistics homepage (TransitFlow-style layout)
   ============================================================ */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gold-500);
  margin: 0 0 1rem;
}
.kicker::before {
  content: "";
  width: 4px;
  height: 1.15rem;
  background: var(--gold-500);
}
.kicker-dark { color: var(--navy-deep); }
.kicker-dark::before { background: var(--gold-500); }

.tf-head { background: var(--navy-deep); border-bottom: 0; }
.tf-head::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500) 0 18%, transparent 18% 22%, var(--gold-500) 22% 40%, transparent 40% 44%, var(--gold-500) 44% 100%);
}
.home .tf-head .site-search,
.tf-head .site-search { display: none !important; }
.tf-head .announce-bar { display: none; }
.tf-head .header-phone,
.tf-head .header-account {
  color: var(--gold-500);
  border: 1px solid rgba(201, 162, 39, 0.4);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.tf-top { background: var(--navy-deep); }
.tf-top .header-main {
  padding: 1.05rem 0;
  gap: 1.25rem;
}
.tf-contacts {
  display: none;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  gap: 1.6rem;
}
.tf-contacts li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.82);
}
.tf-contacts strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
}
.tf-contacts small {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.tf-ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.45);
  display: grid;
  place-items: center;
  color: var(--gold-500);
  flex-shrink: 0;
}
.tf-nav {
  background: #0c1654;
  padding: 0;
  justify-content: stretch;
}
.tf-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}
.tf-nav .nav-links { gap: 1.6rem; }
.tf-nav .nav-cta { display: inline-flex; }
.tf-socials {
  display: none;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tf-socials a:hover { color: var(--gold-500); }
.tf-nav-row .quote-link {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.22);
}
.tf-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 6rem;
  background-color: var(--navy-900);
  color: var(--white);
}
.tf-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.tf-hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.tf-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,20,39,0.92) 0%, rgba(9,18,66,0.62) 48%, rgba(9,18,66,0.2) 100%);
}
.tf-hero > .container {
  position: relative;
  z-index: 1;
}
.hero-route {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  padding: 0.4rem 0.75rem;
  border: 1px dashed rgba(201, 162, 39, 0.55);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--gold-400);
}
.hero-route span { color: var(--white); }
.tf-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.05rem, 5.2vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  max-width: 16ch;
  margin: 0 0 1.35rem;
}
.tf-hero .lead {
  display: block;
  max-width: 46ch;
  color: rgba(255,255,255,0.86);
  font-size: 1.125rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.tf-services { background: var(--cream); padding: var(--space-6) 0; }
.tf-services h2,
.tf-why h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
.stamp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: var(--space-4);
  border: 1px solid var(--line);
  background: var(--white);
}
.stamp-grid article {
  padding: 1.4rem 1.2rem;
  border-right: 1px solid var(--line);
}
.stamp-grid article:last-child { border-right: 0; }
.stamp-grid .code {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold-500);
}
.stamp-grid h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.stamp-grid p { margin: 0; color: var(--ink-500); font-size: 0.95rem; }
.tf-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  margin-top: var(--space-4);
}
.tf-service-grid article {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.tf-service-grid h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.tf-service-grid p { margin: 0; color: var(--ink-500); }
.tf-ico-lg {
  width: 56px;
  height: 56px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.tf-why {
  position: relative;
  padding: 0 0 5rem;
  background:
    linear-gradient(180deg, transparent 42%, var(--paper) 42%),
    url("https://images.unsplash.com/photo-1494412575407-df4b7e0c6d00?auto=format&fit=crop&w=2200&q=80") center 30%/cover no-repeat;
  min-height: 520px;
}
.tf-why-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  background: var(--white);
  padding: 2.4rem 2.2rem;
  box-shadow: 0 24px 60px rgba(9,18,66,0.16);
  transform: translateY(7.5rem);
}
.tf-why-copy p { color: var(--ink-500); max-width: 48ch; margin: 0 0 1.3rem; }
.tf-why-inset {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

@media (min-width: 960px) {
  .tf-contacts { display: flex; }
  .tf-socials { display: flex; }
  .tf-head .header-main .nav-toggle { margin-left: 0; }
}
@media (max-width: 960px) {
  .tf-service-grid, .tf-why-card, .stamp-grid { grid-template-columns: 1fr 1fr; }
  .stamp-grid article:nth-child(2n) { border-right: 0; }
  .stamp-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .tf-why { background: var(--paper); min-height: 0; padding: var(--space-5) 0; }
  .tf-why-card { transform: none; }
  .tf-hero { min-height: 64vh; padding: 3.4rem 0 3.8rem; }
}
@media (max-width: 860px) {
  .tf-nav { position: relative; }
  .tf-nav .nav-cta { display: none; }
}
@media (max-width: 640px) {
  .stamp-grid { grid-template-columns: 1fr; }
  .stamp-grid article { border-right: 0; border-bottom: 1px solid var(--line); }
  .stamp-grid article:last-child { border-bottom: 0; }
}

.account-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 39, 0.45);
  z-index: 80;
  opacity: 0;
  transition: opacity 0.22s ease;
}
body.account-drawer-open .account-backdrop { opacity: 1; }
.account-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(86vw, 360px);
  background: var(--white);
  z-index: 85;
  display: flex;
  flex-direction: column;
  box-shadow: 12px 0 40px rgba(7, 20, 39, 0.18);
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}
body.account-drawer-open .account-drawer { transform: none; }
.account-drawer[hidden],
.account-backdrop[hidden] { display: none !important; }
body.account-drawer-open { overflow: hidden; }
.account-drawer-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.15rem 1rem;
  background: #f3f4f6;
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
}
.account-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-head-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.account-head-copy strong {
  font-family: var(--font-body);
  font-size: 1.05rem;
}
.account-head-copy small {
  color: var(--ink-500);
  font-size: 0.78rem;
}
.account-drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 0.35rem 0;
}
.account-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.1rem;
  color: var(--navy-900);
  font-size: 1rem;
  border-bottom: 1px solid #f0eee8;
}
.account-drawer-nav a span { width: 1.4rem; text-align: center; }
.account-drawer-signout {
  margin: 0.75rem 1rem 0;
  background: none;
  border: 0;
  color: var(--ink-500);
  text-align: left;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem 0;
}
.account-drawer-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem calc(1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--navy-900);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.review-grid:empty {
  min-height: 16rem;
}
@media (max-width: 720px) {
  .review-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  padding: 1.25rem 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars {
  color: var(--gold-500);
  letter-spacing: 0.12em;
  font-size: 1rem;
}
.review-card p {
  color: var(--ink-700);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.5;
}
.review-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
}
.review-card footer span {
  color: var(--ink-500);
  font-size: 0.85rem;
}

.account-wrap { max-width: 720px; }
.account-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.account-order-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.account-order {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.account-order span,
.account-order small { color: var(--ink-500); font-size: 0.85rem; }
.account-order em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  margin: 0.55rem 0;
}
.admin-check input { width: 1.05rem; height: 1.05rem; }

@media (max-width: 800px) {
  body.admin-app .admin-table,
  body.admin-app .admin-table-compact,
  .admin-table {
    min-width: 0 !important;
  }
  .admin-table .cell-details { min-width: 0 !important; }
  body.admin-app .field-row { grid-template-columns: 1fr; }
  .admin-form { max-width: none; }
  .admin-welcome {
    margin: 0.4rem 0.85rem 0;
    padding: 0.85rem 0.9rem;
    flex-wrap: wrap;
  }
  .admin-stage {
    padding-bottom: 0.5rem;
  }
  .admin-shell.is-ready .admin-workspace,
  .admin-shell.is-ready .admin-sidebar {
    animation: none !important;
  }
  .admin-stat:last-child { grid-column: 1 / -1; }
  .admin-dock {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    background: #fff;
    border-top: 1px solid #ECECEF;
    padding: 0.3rem 0.35rem calc(0.4rem + env(safe-area-inset-bottom));
    box-shadow: 0 -10px 28px rgba(23,24,27,0.08);
  }
  .admin-dock-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-height: 48px;
    border: 0;
    background: transparent;
    color: #8B919A;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
  }
  .admin-dock-btn svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .admin-dock-btn.active { color: #17181B; background: #F3F4F6; }
  .admin-detail {
    bottom: calc(4.6rem + env(safe-area-inset-bottom));
  }
}

/* ---------------- Customer account dashboard ---------------- */
body.account-page {
  background: #EEF1F5;
  background-image: none;
  min-height: 100dvh;
  color: var(--ink-700);
}
body.account-page.has-tabbar { padding-bottom: 0; }
body.account-page:not(.account-guest) .site-header,
body.account-page .site-footer,
body.account-page .wa-float,
body.account-page .tabbar,
body.account-page .account-drawer,
body.account-page .account-backdrop {
  display: none !important;
}
body.account-page.account-guest .site-header {
  display: block !important;
}
body.account-page.account-guest .udash-side,
body.account-page.account-guest .udash-scrim,
body.account-page.account-guest .udash-head {
  display: none !important;
}
body.account-page.account-guest .udash {
  grid-template-columns: 1fr;
  min-height: auto;
}
body.account-page.account-guest .udash-main {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
}
body.account-page.account-guest .udash-auth {
  max-width: none;
}
body.account-page.account-guest .udash-card-form {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
body.account-page.account-guest .account-tabs {
  margin-bottom: 1.1rem;
}
body.account-page.account-guest .page-hero-auth {
  display: block;
  padding: 1.6rem 0 0.4rem;
}
body.account-page.account-guest .page-hero-auth h1 {
  color: var(--navy-800);
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  max-width: 16ch;
}
body.account-page.account-guest .page-hero-auth p {
  color: var(--ink-500);
  margin-top: 0.55rem;
  max-width: 42ch;
}

.udash {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: stretch;
}
.udash-side {
  background: var(--navy-800);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.05rem 1.1rem;
  min-height: 100dvh;
  position: sticky;
  top: 0;
}
.udash-profile {
  text-align: center;
  padding: 0.4rem 0.4rem 1.4rem;
}
.udash-avatar {
  width: 78px;
  height: 78px;
  margin: 0 auto 0.85rem;
  border-radius: 50%;
  background: var(--navy-700);
  color: var(--gold-400);
  border: 1px solid rgba(201, 162, 39, 0.35);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
}
.udash-avatar svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.udash-profile strong {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  text-transform: lowercase;
}
.udash-profile small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}
.udash-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.udash-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font: 600 0.95rem var(--font-body);
  text-align: left;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
}
.udash-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.udash-link.active {
  background: var(--gold-500);
  color: var(--navy-900);
}
.udash-link:hover:not(.active) { background: rgba(255,255,255,0.08); }
.udash-side-foot { margin-top: auto; padding-top: 1rem; }
.udash-site {
  display: block;
  margin: 0.7rem 0.9rem 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.udash-site:hover { color: var(--gold-400); }

.udash-main {
  padding: 1.4rem 1.6rem 2rem;
  min-width: 0;
}
.udash-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.15rem;
}
.udash-head h1 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-800);
  margin: 0;
  flex: 1;
}
.udash-menu {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-800);
  font-size: 1.15rem;
  cursor: pointer;
}
.udash-search {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.udash-search input {
  border: 0;
  background: transparent;
  padding: 0.65rem 0.9rem;
  width: min(240px, 42vw);
  font: inherit;
  font-size: 0.92rem;
  color: var(--ink-700);
}
.udash-search input:focus { outline: none; }
.udash-search button {
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--ink-300);
}
.udash-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.udash-auth { max-width: 520px; }
.udash-auth .eyebrow { color: var(--gold-600); }
.udash-auth .form-card h2,
.udash-card-form h2 {
  color: var(--navy-800);
}
.udash-card-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.3rem 1.2rem;
}
.udash-card-form + .udash-card-form { margin-top: 1rem; }
.account-page .account-tabs .chip {
  background: var(--white);
  border-color: var(--line);
  color: var(--navy-800);
}
.account-page .account-tabs .chip.active {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--gold-400);
}
.account-page .account-tabs .chip:hover {
  border-color: var(--gold-500);
}

.udash-metrics {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.udash-metric {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 132px;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.udash-metric strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--navy-800);
  font-family: var(--font-body);
  font-weight: 700;
}
.udash-metric em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  color: var(--gold-600);
  font-size: 0.82rem;
  font-weight: 600;
}
.udash-metric-blue {
  background: linear-gradient(180deg, var(--navy-700) 0%, var(--navy-800) 100%);
  color: var(--white);
  border-color: transparent;
  display: grid;
  align-content: center;
  justify-items: start;
}
.udash-metric-blue span {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-400);
}
.udash-metric-blue small {
  margin-top: 0.25rem;
  opacity: 0.9;
  font-size: 0.82rem;
}
.udash-mini-ico {
  width: 42px;
  height: 42px;
  color: var(--ink-300);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.udash-charts {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.udash-chart-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  min-height: 230px;
  padding: 1rem 1.1rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.udash-chart-card h2 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 0.4rem;
}
.udash-rings {
  width: 168px;
  height: 168px;
  margin: 0.4rem auto 0.6rem;
  position: relative;
}
.udash-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(var(--ring, var(--gold-500)) calc(var(--p, 0) * 1%), #E8ECF1 0);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 10px), #000 calc(100% - 9px));
}
.udash-ring[data-ring="0"] { --ring: var(--gold-400); }
.udash-ring[data-ring="1"] { inset: 14px; --ring: var(--gold-500); }
.udash-ring[data-ring="2"] { inset: 28px; --ring: var(--navy-600); }
.udash-ring[data-ring="3"] { inset: 42px; --ring: var(--navy-800); }
.udash-legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  justify-content: center;
  color: var(--ink-500);
  font-size: 0.75rem;
}
.udash-legend i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.35rem;
}
.udash-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  height: 170px;
  padding: 0.4rem 0.2rem 0;
}
.udash-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  justify-content: flex-end;
}
.udash-bar i {
  display: block;
  width: 100%;
  max-width: 28px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--gold-400), var(--navy-800));
  min-height: 8px;
}
.udash-bar small {
  color: var(--ink-300);
  font-size: 0.68rem;
}

.udash-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.udash-pill {
  border-radius: var(--radius-lg);
  min-height: 92px;
  padding: 1rem 1.15rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  box-shadow: var(--shadow-sm);
}
.udash-pill span {
  text-transform: lowercase;
  font-size: 0.85rem;
  opacity: 0.9;
}
.udash-pill strong {
  font-size: 1.55rem;
  font-weight: 700;
}
.udash-pill-1 { background: var(--navy-700); }
.udash-pill-2 { background: var(--navy-800); }
.udash-pill-3 { background: var(--navy-900); color: var(--gold-400); }

.udash .account-order-list { margin-top: 0.85rem; }
.udash .account-order {
  background: #F3F5F8;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.55rem;
}
.udash .empty-note { color: var(--ink-500); }

.udash-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  z-index: 70;
}

@media (max-width: 980px) {
  .udash { grid-template-columns: 1fr; }
  .udash-menu { display: grid; place-items: center; }
  .udash-side {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(86vw, 280px);
    z-index: 80;
    transform: translateX(-105%);
    transition: transform .2s ease;
    min-height: 100dvh;
  }
  .udash.is-open .udash-side { transform: none; }
  .udash.is-open .udash-scrim { display: block; }
  .udash-metrics,
  .udash-charts,
  .udash-pills,
  .udash-fields,
  .udash-hero { grid-template-columns: 1fr; }
  .udash-hero { display: grid; }
  .udash-hero .btn { width: max-content; }
  .udash-main { padding: 1rem 0.9rem 1.5rem; }
  .udash-search input { width: min(160px, 38vw); }
}

@media (prefers-reduced-motion: reduce) {
  .udash-side { transition: none; }
}

.udash-hero {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1rem;
}
.udash-hero-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.udash-hero-copy { flex: 1; min-width: 0; }
.udash-hero-copy h2 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  margin: 0 0 0.15rem;
  color: var(--navy-800);
}
.udash-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.45rem 0 0;
}
.udash-hero-tags span {
  background: #F3F5F8;
  color: var(--ink-500);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.75rem;
  padding: 0.22rem 0.65rem;
}
.udash-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1rem;
}
.udash-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.85rem 0 0.2rem;
  font-size: 0.92rem;
  color: var(--ink-700);
  cursor: pointer;
}
.udash-check input { width: 1.05rem; height: 1.05rem; accent-color: var(--navy-800); }
.udash-line {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  margin: 0.35rem 0 0.85rem;
}
.udash .udash-card-form textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
}

@media (max-width: 980px) {
  .udash-hero { display: grid; }
  .udash-fields { grid-template-columns: 1fr; }
}

/* ============================================================
   Premium polish — skip links, trust, forms, catalog, location
   ============================================================ */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 0.7rem 1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.skip-link:focus { top: 0.75rem; }

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

.nav-scrim {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(7, 20, 39, 0.45);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
body.nav-open .nav-scrim {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  max-width: 46rem;
}
.trust-row li {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
}
.tf-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.tf-hero h1 { max-width: 18ch; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-500);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
}
.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}
.why-card p { margin: 0; color: var(--ink-500); font-size: 1rem; line-height: 1.55; }

.home-faq { max-width: 760px; }

.stamp-grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.skeleton-card,
.skeleton-copy span {
  background: linear-gradient(90deg, #ece8de 25%, #f6f3ea 50%, #ece8de 75%);
  background-size: 200% 100%;
  animation: skeleton 1.2s ease-in-out infinite;
}
.skeleton-card { aspect-ratio: 1; min-height: 180px; border: 1px solid var(--line); }
.skeleton-copy { display: grid; gap: 0.6rem; padding: 0.85rem 0; }
.skeleton-copy span { display: block; height: 0.9rem; width: 80%; }
.skeleton-copy span:nth-child(2) { width: 55%; }
.skeleton-copy span:nth-child(3) { width: 40%; }
@keyframes skeleton {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.catalog-search { flex: 1; min-width: 180px; max-width: 280px; }
.catalog-search input {
  width: 100%;
  min-height: var(--touch);
  font: inherit;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.catalog-search input:focus {
  border-color: var(--gold-500);
  outline: 2px solid var(--gold-500);
  outline-offset: 1px;
}

.field .optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-300);
  font-family: var(--font-body);
  font-size: 0.78rem;
}
.field-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}
.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: var(--danger);
  background: #FBEAEA;
  animation: mwShake 0.42s ease;
}
.form-status.loading {
  display: block;
  background: #EEF3FA;
  color: var(--navy-700);
  border: 1px solid #C9D7EA;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--navy-800);
  white-space: nowrap;
}
.status-badge.is-pending { background: #EEF3FA; border-color: #C9D7EA; }
.status-badge.is-review { background: #FFF6E0; border-color: #F0D48A; }
.status-badge.is-quoted { background: #F3EEE3; border-color: var(--gold-500); color: var(--navy-900); }
.status-badge.is-ok { background: #F0F6EC; border-color: #C6E0B4; color: var(--success); }
.status-badge.is-closed { background: #F3F3F3; color: var(--ink-500); }

.account-order .status-badge { justify-self: start; grid-column: 2; grid-row: 1; }

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-4);
  align-items: start;
}
.loc-grid p { color: var(--ink-500); max-width: 46ch; }
.loc-facts {
  list-style: none;
  margin: var(--space-3) 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.loc-facts strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.loc-map {
  min-height: 280px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.loc-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.item-skeleton {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-3);
}
.item-hero {
  display: flex;
  justify-content: center;
  background: #f3f1eb;
}
.item-hero img {
  width: 240px;
  height: 240px;
  max-width: 100%;
  max-height: 240px;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f3f1eb;
  padding: 0;
  border-radius: 1rem;
}

@media (max-width: 960px) {
  .why-grid,
  .loc-grid { grid-template-columns: 1fr; }
  .stamp-grid-4 { grid-template-columns: 1fr 1fr; }
  .stamp-grid-4 article:nth-child(2n) { border-right: 0; }
}
@media (max-width: 640px) {
  .stamp-grid-4 { grid-template-columns: 1fr; }
  .stamp-grid-4 article { border-right: 0; border-bottom: 1px solid var(--line); }
  .tf-hero .hero-actions .btn { width: 100%; }
  .catalog-search { max-width: none; width: 100%; }
  .request-sticky .btn { font-size: 0.72rem; padding-left: 0.6rem; padding-right: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .product-card:hover { transform: none; }
  .skeleton-card,
  .skeleton-copy span { animation: none; }
}

/* Lock: public header stays in document flow on every breakpoint */
header.site-header,
header.site-header.tf-head,
header.site-header.desk-head,
.home .site-header,
.home .tf-head,
.home .desk-head {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

/* ============================================================
   Motion system — transform/opacity only
   ============================================================ */
:root {
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 180ms;
  --motion-med: 420ms;
}

@keyframes mwRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes mwFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes mwHeroDrift {
  from { transform: scale(1.06); }
  to { transform: scale(1); }
}
@keyframes mwShipSail {
  from { transform: scale(1.08) translate3d(-4%, 0.6%, 0); }
  to   { transform: scale(1.08) translate3d(5%, -0.5%, 0); }
}
@keyframes mwSpin {
  to { transform: rotate(360deg); }
}
@keyframes mwShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}
@keyframes mwPageOut {
  to { opacity: 0; }
}
@keyframes mwPageIn {
  from { opacity: 0; }
}
@keyframes mwHeaderIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: mwPageOut 160ms ease-out both; }
  ::view-transition-new(root) { animation: mwPageIn 220ms var(--ease-out) both; }
}

html.mw-motion body {
  animation: mwFade 0.35s var(--ease-out) both;
}
html.mw-motion .site-header.desk-head,
html.mw-motion .site-header.tf-head {
  animation: mwHeaderIn 0.45s var(--ease-out) both;
}
html.mw-motion .desk-nav .nav-links {
  animation: mwRise 0.5s var(--ease-out) 0.08s both;
}

.tf-hero .hero-route { animation: mwRise 0.5s var(--ease-out) both; }
.tf-hero h1 { animation: mwRise 0.62s var(--ease-out) 0.06s both; }
.tf-hero .lead { animation: mwRise 0.62s var(--ease-out) 0.14s both; }
.tf-hero .hero-actions { animation: mwRise 0.62s var(--ease-out) 0.22s both; }
.tf-hero .trust-row { animation: mwRise 0.62s var(--ease-out) 0.3s both; }
.tf-hero-media img { animation: mwHeroDrift 16s ease-out 1 both; }

.page-hero h1,
.page-hero-auth h1 { animation: mwRise 0.55s var(--ease-out) both; }
.page-hero p,
.page-hero-auth p { animation: mwRise 0.55s var(--ease-out) 0.08s both; }
.account-tabs { animation: mwRise 0.5s var(--ease-out) 0.12s both; }

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
  transition-delay: var(--stagger, 0ms);
  will-change: opacity, transform;
}
.reveal.reveal-soft {
  transform: translateY(10px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.chip {
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.qty-controls button {
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.qty-controls button:active { transform: scale(0.92); }
.why-card,
.stamp-grid article,
.step-cards article,
.review-card,
.form-card,
.panel {
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease, border-color 0.22s ease;
}
.category-card img {
  transition: transform 0.7s var(--ease-out);
}
.product-card img {
  transition: transform 0.55s var(--ease-out);
}
.desk-cats a {
  transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s var(--ease-out);
}
.desk-cat-chips a {
  transition: transform 0.18s var(--ease-out), background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.footer-grid a {
  transition: color 0.18s ease, transform 0.18s ease;
}
.tabbar a,
.tabbar button {
  transition: color 0.18s ease, transform 0.18s ease;
}
.tabbar a:active,
.tabbar button:active { transform: scale(0.96); }

#mw-toast {
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover:not([disabled]) {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(7, 20, 39, 0.12);
  }
  .btn-gold:hover:not([disabled]) {
    box-shadow: 0 10px 22px rgba(201, 162, 39, 0.28);
  }
  .btn:active:not([disabled]) {
    transform: translateY(0) scale(0.98);
    box-shadow: none;
  }
  .product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .product-card:hover img {
    transform: scale(1.04);
  }
  .ticket:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
  }
  .category-card:hover { transform: translateY(-3px); }
  .category-card:hover img { transform: scale(1.05); }
  .why-card:hover,
  .stamp-grid article:hover,
  .step-cards article:hover,
  .review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }
  .chip:hover { transform: translateY(-1px); }
  .quote-link:hover { transform: translateY(-1px); }
  .nav-logo:hover { opacity: 0.92; }
  .wa-float:hover { transform: scale(1.06); }
  .desk-cats a:hover { padding-left: 0.35rem; }
  .desk-cat-chips a:hover { transform: translateY(-2px); }
  .footer-grid a:hover { transform: translateX(2px); }
  .desk-tiles a:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 162, 39, 0.55);
    box-shadow: var(--shadow-sm);
  }
}

@media (min-width: 861px) {
  .nav-links a {
    position: relative;
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 1px;
    background: var(--gold-400);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s var(--ease-out);
  }
  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: scaleX(1);
  }
  .desk-home .desk-nav .nav-links a::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .tf-hero-media img { animation: none; }
  .reveal {
    transform: translateY(10px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  html.mw-motion body,
  html.mw-motion .site-header.desk-head,
  html.mw-motion .site-header.tf-head,
  html.mw-motion .desk-nav .nav-links,
  .tf-hero .hero-route,
  .tf-hero h1,
  .tf-hero .lead,
  .tf-hero .hero-actions,
  .tf-hero .trust-row,
  .tf-hero-media img,
  .page-hero h1,
  .page-hero p,
  .page-hero-auth h1,
  .page-hero-auth p,
  .account-tabs,
  .form-status.success,
  .form-status.error,
  .form-status.loading,
  .field.is-invalid input,
  .field.is-invalid textarea,
  .field.is-invalid select,
  .btn.is-loading::before {
    animation: none !important;
  }
  .order-modal-card,
  .account-drawer,
  .account-backdrop,
  .nav-scrim,
  .nav-links {
    transition: none !important;
    transform: none !important;
  }
  .order-modal.is-open .order-modal-card,
  body.account-drawer-open .account-drawer {
    opacity: 1;
    transform: none;
  }
  .desk-slide { transition: none !important; }
  .desk-slide-copy,
  .desk-slide img {
    animation: none !important;
  }
  .desk-slide--ship img {
    transform: none !important;
    will-change: auto;
  }
}

/* ============================================================
   Homepage desk layout — white header, pill nav, 3-column stage
   ============================================================ */
body.desk-home {
  background-color: #EEF1F5;
  background-image: none;
}
.desk-home .container { max-width: 1240px; }
.desk-home .site-header,
.desk-home header.site-header.desk-head {
  background: var(--white);
  border-bottom: 0;
  box-shadow: 0 1px 0 var(--line);
}
.desk-home .announce-bar.desk-strip {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  background: #F3F5F8;
  color: var(--ink-500);
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.desk-home .nav-logo { color: var(--navy-800); }
.desk-home .logo-lockup em { color: var(--gold-500); }
.desk-home .logo-lockup small { color: var(--ink-300); }
.desk-home .header-phone { display: none !important; }
.desk-home .header-main {
  padding: 0.95rem 0;
  gap: 1rem;
}
.desk-home .site-search {
  max-width: none;
  flex: 1 1 280px;
}
.desk-home .site-search input,
.desk-home .search-cam {
  border-color: var(--navy-800);
}
.desk-home .desk-search-btn {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
  border-radius: 0 var(--radius) var(--radius) 0;
  min-width: 5.5rem;
}
.desk-home .desk-search-btn:hover {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}
.desk-utils {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.desk-home .quote-link {
  color: var(--navy-800);
  border-color: var(--line);
  background: var(--white);
}
.desk-home .quote-link[aria-current="page"] {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
}
.desk-home .quote-link[aria-current="page"] .quote-count,
.desk-home .quote-link[aria-current="page"] [data-quote-count] {
  background: var(--gold-500);
  color: var(--navy-900);
}
.desk-home .header-account {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--navy-800);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0.55rem 0.8rem;
  min-height: var(--touch);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
}
.desk-home .header-account:hover { border-color: var(--gold-500); }
.desk-home .nav.desk-nav {
  background: #E4E8EF;
  padding: 0.45rem 0;
  justify-content: flex-start;
}
.desk-home .desk-nav .nav-links {
  gap: 0.35rem;
}
.desk-home .desk-nav .nav-links a {
  color: var(--navy-700);
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  min-height: 2.4rem;
}
.desk-home .desk-nav .nav-links a:hover {
  color: var(--navy-900);
  background: rgba(10, 31, 68, 0.06);
}
.desk-home .desk-nav .nav-links a.active {
  color: var(--white);
  background: var(--navy-800);
}
.desk-home .desk-nav .nav-links a::after { display: none; }

.desk-stage {
  background: #EEF1F5;
  padding: 0.85rem 0 1.2rem;
}
.desk-stage > .container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.desk-grid {
  display: grid;
  grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) minmax(200px, 240px);
  gap: 0.75rem;
  align-items: stretch;
  min-width: 0;
}
.desk-grid > * { min-width: 0; }
.desk-cats {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.desk-cats h2 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--navy-800);
  margin: 0;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.desk-cats h2::before {
  content: "☰";
  color: var(--gold-500);
  font-size: 0.9rem;
}
.desk-cats ul { list-style: none; margin: 0; padding: 0; flex: 1; display: flex; flex-direction: column; }
.desk-cats a {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 0.72rem 1rem;
  color: var(--navy-700);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}
.desk-cats li:first-child a { border-top: 0; }
.desk-cats a:hover {
  color: var(--navy-900);
  background: #F7F5EF;
}

.desk-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  border-radius: var(--radius);
  background: var(--navy-900);
  min-height: 380px;
  height: 100%;
}
.desk-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.desk-slide.is-on {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.desk-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.desk-slide--ship img {
  transform: scale(1.08) translate3d(-4%, 0.6%, 0);
  transform-origin: center center;
  animation: mwShipSail 18s ease-in-out infinite alternate;
  will-change: transform;
  backface-visibility: hidden;
}
.desk-slide-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem 1.6rem 2.5rem;
  background: linear-gradient(to top, rgba(6, 16, 31, 0.78), rgba(6, 16, 31, 0.08) 72%, transparent);
  color: var(--white);
}
.desk-slide-copy h1,
.desk-slide-copy h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2.3rem);
  max-width: 16ch;
  margin: 0 0 0.45rem;
}
.desk-slide-copy p {
  margin: 0 0 1rem;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
}
.desk-dots,
.desk-dot { display: none; }

.desk-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.55rem;
  height: 100%;
  min-height: 0;
}
.desk-tiles a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.45rem;
  min-height: 0;
  height: 100%;
  color: var(--navy-800);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.desk-tiles a:hover { border-color: var(--gold-500); }
.desk-tile-ico {
  color: var(--gold-500);
  font-size: 1.05rem;
  font-weight: 700;
}

.desk-cat-chips {
  display: none;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0 0 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.desk-cat-chips::-webkit-scrollbar { display: none; }
.desk-cat-chips a {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
  color: var(--navy-800);
  white-space: nowrap;
}

.desk-slide.is-on .desk-slide-copy { animation: mwRise 0.55s var(--ease-out) both; }

@media (max-width: 1040px) {
  .desk-grid { grid-template-columns: minmax(180px, 200px) minmax(0, 1fr) minmax(180px, 200px); }
}
@media (max-width: 960px) {
  .desk-grid { grid-template-columns: 1fr; }
  .desk-cats { display: none; }
  .desk-cat-chips { display: flex; }
  .desk-tiles {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: none;
    height: auto;
  }
  .desk-tiles a { min-height: 92px; }
  .desk-banner {
    height: auto;
    min-height: 22rem;
  }
  .desk-slide {
    position: relative;
    inset: auto;
    min-height: 22rem;
    opacity: 1;
    pointer-events: auto;
  }
  .desk-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 860px) {
  .desk-home .header-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "logo utils toggle"
      "search search search";
    align-items: center;
    column-gap: 0.55rem;
    row-gap: 0.65rem;
  }
  .desk-home .nav-logo { grid-area: logo; min-width: 0; }
  .desk-home .site-search {
    grid-area: search;
    order: unset;
    flex: none;
    width: 100%;
    max-width: none;
  }
  .desk-home .desk-utils {
    grid-area: utils;
    margin-left: 0;
  }
  .desk-home .nav-toggle {
    grid-area: toggle;
    margin-left: 0;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--navy-800);
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
  }
  .desk-home .header-account-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .desk-home .header-account {
    width: 42px;
    height: 42px;
    min-height: 0;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
  .desk-home .nav.desk-nav {
    padding: 0;
    background: var(--white);
  }
  .desk-home .desk-nav .nav-links {
    background: var(--navy-900);
  }
  .desk-home .desk-nav .nav-links a {
    color: rgba(255, 255, 255, 0.82);
    border-radius: 0;
    display: block;
    padding: 1rem var(--space-2);
  }
  .desk-home .desk-nav .nav-links a.active {
    color: var(--gold-400);
    background: transparent;
  }
}
@media (max-width: 640px) {
  .desk-home .logo-lockup small { display: none; }
  .desk-tiles { grid-template-columns: 1fr 1fr; }
  .desk-slide {
    min-height: 26rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .desk-slide-copy {
    position: relative;
    z-index: 2;
    padding: 5rem 1rem 1.2rem;
  }
  .desk-slide-copy h1,
  .desk-slide-copy h2 {
    max-width: none;
    font-size: 1.55rem;
  }
  .desk-slide-copy p {
    max-width: none;
    font-size: 0.92rem;
  }
  .desk-home .announce-bar.desk-strip { justify-content: center; text-align: center; }
  .desk-home .announce-bar.desk-strip span:first-child { display: none; }
}

.desk-home .page-hero {
  background: #EEF1F5;
  color: var(--ink-700);
  padding: 2.1rem 0 1.6rem;
}
.desk-home .page-hero h1 { color: var(--navy-800); }
.desk-home .page-hero p { color: var(--ink-500); }
.desk-home .page-hero .eyebrow { color: var(--gold-500); }
.desk-home .page-hero .btn-outline {
  border-color: var(--navy-800);
  color: var(--navy-800);
}
.desk-home .page-hero .btn-outline:hover {
  background: var(--navy-800);
  color: var(--white);
}
.desk-home .section-alt { background: #F3F5F8; }
.desk-home .form-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.desk-home .process-list {
  color: var(--ink-500);
}
.desk-home .panel {
  background: var(--white);
  color: var(--ink-700);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.desk-home #quote-list-body {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.2rem 1.3rem;
  box-shadow: var(--shadow-sm);
}
.desk-home .panel h3 { color: var(--navy-800); font-family: var(--font-body); }
.desk-home .panel strong { color: var(--navy-800); }
.desk-home .btn-outline-dark {
  background: var(--white);
  color: var(--navy-800);
}

body.account-page {
  background: #EEF1F5;
}
.udash-side {
  background: var(--navy-800);
}
.udash-avatar,
.udash-hero-avatar {
  background: var(--navy-700);
  color: var(--gold-400);
}
.udash-link.active {
  background: var(--gold-500);
  color: var(--navy-900);
}
.udash-metric-blue {
  background: var(--navy-800);
}
.udash-ring {
  background: conic-gradient(var(--ring, var(--gold-400)) calc(var(--p, 0) * 1%), #E4E8EF 0);
}
.udash-ring[data-ring="1"] { --ring: var(--gold-500); }
.udash-ring[data-ring="2"] { --ring: var(--navy-600); }
.udash-ring[data-ring="3"] { --ring: var(--navy-800); }
.udash-bar i {
  background: linear-gradient(180deg, var(--gold-400), var(--navy-800));
}
.udash-pill-1 { background: var(--gold-500); color: var(--navy-900); }
.udash-pill-2 { background: var(--navy-700); }
.udash-pill-3 { background: var(--navy-800); }
.udash-hero-tags span {
  background: #E4E8EF;
  color: var(--navy-700);
}

.desk-home .field input,
.desk-home .field textarea,
.desk-home .field select {
  background: var(--white);
}

/* ============================================================
   Premium polish — 21st.dev step cards + product cards, adapted
   to navy/brass vanilla CSS. Header stays in document flow.
   ============================================================ */
:root {
  --radius-lg: 16px;
  --shadow-card: 0 10px 30px rgba(6, 16, 31, 0.07);
}

.desk-slide-copy .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 0.2rem;
}
.desk-slide-copy .hero-actions .btn { min-height: 46px; }
.desk-slide-copy .btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.desk-slide-copy .btn-outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
}

.trust-strip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.trust-strip-row div {
  padding: 0 0.75rem;
  border-left: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--navy-800);
  font-weight: 600;
  line-height: 1.4;
}
.trust-strip-row div:first-child { border-left: 0; padding-left: 0; }
.trust-strip-row strong,
.trust-strip-row span { display: inline; color: inherit; font-size: inherit; }
@media (max-width: 860px) {
  .trust-strip-row { grid-template-columns: 1fr 1fr; }
  .trust-strip-row div { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 0.65rem; }
  .trust-strip-row div:nth-child(-n+2) { border-top: 0; padding-top: 0; }
}
@media (max-width: 480px) {
  .trust-strip-row { grid-template-columns: 1fr; }
  .trust-strip-row div:nth-child(-n+2) { border-top: 1px solid var(--line); padding-top: 0.65rem; }
  .trust-strip-row div:first-child { border-top: 0; padding-top: 0; }
}

.step-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: var(--space-4);
  border: 0;
  background: transparent;
}
.step-cards article {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.45rem 1.25rem 1.35rem;
  box-shadow: var(--shadow-card);
  border-right: 1px solid var(--line);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease, border-color 0.22s ease;
}
.step-cards article:last-child { border-right: 1px solid var(--line); }
.step-cards .code {
  position: absolute;
  top: 1.15rem;
  right: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-300);
  background: var(--cream);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
}
.step-cards .step-ico {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--gold-500);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.step-cards h3 { margin-top: 0.15rem; padding-right: 2.2rem; }
@media (max-width: 960px) {
  .step-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .step-cards { grid-template-columns: 1fr; }
}
@media (hover: hover) and (pointer: fine) {
  .step-cards article:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 162, 39, 0.55);
  }
}

.product-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.product-card img {
  background: #f3f1eb;
  transition: transform 0.45s var(--ease-out);
  object-fit: cover;
}
.product-card .product-tagline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--ink-500);
}
.product-order {
  border-radius: 8px;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 600;
  font-size: 0.85rem;
}
.product-status {
  display: inline-flex;
  width: fit-content;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  letter-spacing: 0.04em;
}

.why-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.why-card .why-ico {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  background: rgba(201, 162, 39, 0.14);
  color: var(--gold-600);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.review-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.home-faq .faq-item,
.faq-list .faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 0.65rem;
  padding: 0 1.1rem;
}
.home-faq .faq-q,
.faq-list .faq-q { font-size: 1.05rem; }
.faq-q .icon {
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy-800);
  font-size: 0.85rem;
}

.form-block {
  border: 0;
  margin: 0 0 1.4rem;
  padding: 0;
  min-width: 0;
}
.form-block legend {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.85rem;
  padding: 0;
}
.form-card {
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.7rem;
}
.desk-aside {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.desk-aside h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.desk-aside ol { margin: 0; padding-left: 1.15rem; color: var(--ink-500); }
.desk-aside li { margin-bottom: 0.45rem; }

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.page-hero .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.category-card {
  border-radius: var(--radius-lg);
}
.category-card:hover { transform: translateY(-3px); }

.cta-band .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.wa-float {
  font-size: 0;
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

.ticket {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.empty-note {
  color: var(--ink-500);
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.1rem;
}

.review-card footer {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.review-card footer div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.sticky-chat svg {
  width: 22px;
  height: 22px;
  fill: var(--gold-600);
}

.form-status.success {
  animation: mwRise 0.45s var(--ease-out) both;
}
.order-modal.is-open .order-modal-card {
  animation: mwRise 0.4s var(--ease-out) both;
}

@media (max-width: 640px) {
  .desk-slide-copy .hero-actions .btn { width: 100%; }
  .page-hero-actions .btn { width: 100%; }
  .desk-slide--ship img {
    animation-duration: 14s;
    object-position: 28% 60%;
  }
}

/* ---------------- Password visibility ---------------- */
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 3rem;
}
.password-toggle {
  position: absolute;
  right: 0.35rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink-500);
  display: grid;
  place-items: center;
  cursor: pointer;
  border-radius: 10px;
}
.password-toggle:hover,
.password-toggle:focus-visible {
  color: var(--navy-900);
  background: rgba(10, 31, 68, 0.06);
  outline: none;
}
.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  grid-area: 1 / 1;
}
.password-toggle svg[hidden] {
  display: none !important;
}

.udash-card-form .btn,
.admin-gate-card .btn {
  width: 100%;
  justify-content: center;
}

.admin-gate {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(201, 162, 39, 0.14), transparent 55%),
    #EFEFF4;
}
.admin-gate .admin-gate-card {
  width: min(420px, 100%);
  margin: 0 auto;
}


