/* ===========================================================================
   hariverf — global styles
   A warm, crafted paint-shop identity: deep ink + terracotta accent, generous
   whitespace, real typographic hierarchy. Mobile-first, no framework.
   =========================================================================== */

:root {
  /* palette */
  --ink: #1d1b18;
  --ink-soft: #45413b;
  --paper: #faf7f1;
  --paper-2: #f1ebe0;
  --card: #ffffff;
  --line: #e4ddcf;
  --accent: #c25433;        /* terracotta — paint-can red, softened */
  --accent-deep: #9c3f25;
  --accent-2: #2e6f6b;      /* teal, from the supplier "Tevrede/Moedswillig" family */
  --gold: #d99a3c;
  --good: #3c7a4e;

  --shadow-sm: 0 1px 2px rgba(29, 27, 24, .06), 0 2px 6px rgba(29, 27, 24, .06);
  --shadow-md: 0 8px 24px rgba(29, 27, 24, .10);
  --shadow-lg: 0 24px 60px rgba(29, 27, 24, .16);

  --radius: 14px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-h: 72px;

  --font-head: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--ink-soft); }
a { color: var(--accent-deep); }

img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2rem); }

section { padding-block: clamp(3rem, 7vw, 6rem); }
.section-tight { padding-block: clamp(2rem, 4vw, 3rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 .8rem;
}
.lede { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 60ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  padding: .8rem 1.4rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, color .2s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #000; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.02rem; }

/* ===========================================================================
   Header
   =========================================================================== */
.skip-link {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(-150%);
  background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 8px;
  z-index: 1000; transition: transform .2s;
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.site-header[data-elevate="true"] { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--accent); }
.brand .brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.brand .brand-accent { color: var(--accent); }
.logo { display: inline-flex; color: var(--accent); }

.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: .5rem .8rem; border-radius: 8px;
  color: var(--ink-soft); text-decoration: none; font-weight: 500; font-size: .95rem;
  transition: background .15s, color .15s;
}
.main-nav a:hover { background: var(--paper-2); color: var(--ink); }
.main-nav a.active { color: var(--accent-deep); }
.main-nav a.active::after,
.main-nav a:hover::after { }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem .7rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--ink-soft); text-decoration: none; font-size: .85rem; font-weight: 600;
  background: var(--card); transition: border-color .15s, color .15s;
}
.lang-toggle:hover { border-color: var(--ink); color: var(--ink); }
.header-cta { padding: .55rem 1rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px;
  align-items: center; justify-content: center; background: var(--card); border: 1px solid var(--line);
  border-radius: 10px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { border-top: 1px solid var(--line); background: var(--paper); }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem 1rem 1.2rem; display: grid; gap: .2rem; }
.mobile-nav a { display: block; padding: .8rem .6rem; border-radius: 10px; text-decoration: none;
  color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--line); }
.mobile-nav a.active { color: var(--accent-deep); }

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ===========================================================================
   Hero
   =========================================================================== */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 8vw, 6.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 85% 0%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 55%),
    radial-gradient(90% 80% at 0% 100%, color-mix(in srgb, var(--accent-2) 14%, transparent), transparent 55%),
    var(--paper);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero h1 { margin-bottom: .4em; }
.hero .lede { margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-trust { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; color: var(--ink-soft); font-size: .9rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-trust svg { color: var(--accent-2); }

@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; } }

/* swatch fan in hero */
.swatch-fan { position: relative; aspect-ratio: 5/4; border-radius: var(--radius-lg);
  background: var(--card); box-shadow: var(--shadow-lg); overflow: hidden; border: 1px solid var(--line); }
.swatch-fan .fan-head { padding: 1rem 1.2rem; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; }
.swatch-fan .fan-head small { color: var(--ink-soft); }
.swatch-grid { display: grid; grid-template-columns: repeat(5, 1fr); height: calc(100% - 56px); }
.swatch-grid .sw { position: relative; }
.swatch-grid .sw span { position: absolute; left: 8px; bottom: 8px; font-size: .68rem; font-weight: 600;
  background: rgba(255,255,255,.82); color: #222; padding: 1px 6px; border-radius: 5px; }

/* ===========================================================================
   Cards / grids
   =========================================================================== */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.card.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card .icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent-deep); margin-bottom: 1rem; }
.card h3 { margin-bottom: .35rem; }
.card p { margin-bottom: 0; font-size: .96rem; }

/* range card with colour strip */
.range-card { padding: 0; overflow: hidden; }
.range-card .strip { display: flex; height: 76px; }
.range-card .strip i { flex: 1; }
.range-card .range-body { padding: 1.3rem 1.4rem 1.5rem; }
.range-card .range-body .tag { font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent); }
.range-card .count { font-size: .85rem; color: var(--ink-soft); }

.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split.reverse > *:first-child { order: 2; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse > *:first-child { order: 0; } }

.media-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); background: var(--card); }

/* steps */
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: flex; gap: 1rem; align-items: flex-start; }
.step .num { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--ink); color: var(--paper);
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; }
.step h3 { margin-bottom: .2rem; }
.step p { margin: 0; }

/* CTA band */
.cta-band { background: var(--ink); color: var(--paper); border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center; }
.cta-band h2 { color: var(--paper); }
.cta-band p { color: color-mix(in srgb, var(--paper) 80%, transparent); margin: 0; }
.cta-band .actions { display: flex; gap: .8rem; flex-wrap: wrap; }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } }

/* reveal */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===========================================================================
   Footer
   =========================================================================== */
.site-footer { background: var(--ink); color: color-mix(in srgb, var(--paper) 78%, transparent); margin-top: 2rem; }
.site-footer .brand .brand-name { color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.4fr; gap: 2rem; padding-block: clamp(2.5rem, 5vw, 4rem); }
.footer-brand p { color: color-mix(in srgb, var(--paper) 65%, transparent); max-width: 34ch; }
.footer-col h3 { color: var(--paper); font-size: 1rem; margin-bottom: 1rem; }
.footer-links, .hours { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-links a { color: color-mix(in srgb, var(--paper) 78%, transparent); text-decoration: none; }
.footer-links a:hover { color: var(--paper); }
.site-footer address { font-style: normal; color: color-mix(in srgb, var(--paper) 78%, transparent); line-height: 1.7; }
.site-footer address a { color: color-mix(in srgb, var(--paper) 88%, transparent); }
.hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.hours li span:last-child { color: var(--paper); white-space: nowrap; }
.social { display: flex; gap: 1rem; margin-top: 1rem; }
.social a { color: color-mix(in srgb, var(--paper) 80%, transparent); text-decoration: none; font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid color-mix(in srgb, var(--paper) 14%, transparent); padding-block: 1.3rem; font-size: .85rem; }
.footer-bottom p { margin: 0; color: color-mix(in srgb, var(--paper) 60%, transparent); }
.footer-bottom a { color: color-mix(in srgb, var(--paper) 85%, transparent); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===========================================================================
   Misc page bits
   =========================================================================== */
.page-hero { background: var(--paper-2); border-bottom: 1px solid var(--line); padding-block: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero .eyebrow { color: var(--accent); }
.breadcrumb { font-size: .85rem; color: var(--ink-soft); margin-bottom: .6rem; }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }

.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.pill { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: .35rem .9rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }

.note { background: color-mix(in srgb, var(--gold) 14%, var(--paper)); border: 1px solid color-mix(in srgb, var(--gold) 40%, var(--line));
  border-radius: var(--radius); padding: 1rem 1.2rem; font-size: .92rem; color: var(--ink-soft); }
.note strong { color: var(--ink); }

.faq { display: grid; gap: .8rem; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.2rem; }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 0; font-weight: 600; font-family: var(--font-head); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p { padding-bottom: 1.1rem; margin: 0; }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .75rem .9rem; border: 1px solid var(--line); border-radius: 10px;
  font: inherit; background: var(--card); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.contact-cards { display: grid; gap: 1rem; }
.contact-cards .card { display: flex; gap: 1rem; align-items: flex-start; }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ===========================================================================
   Colour visualiser
   =========================================================================== */
.vis-layout { display: grid; grid-template-columns: 1fr 360px; gap: 1.5rem; align-items: start; }
@media (max-width: 980px) { .vis-layout { grid-template-columns: 1fr; } }

.vis-main { min-width: 0; }
.vis-tabs { display: inline-flex; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 1rem; }
.vis-tab { border: 0; background: transparent; padding: .55rem 1.1rem; border-radius: 999px; font: inherit; font-weight: 600; font-size: .9rem; color: var(--ink-soft); cursor: pointer; }
.vis-tab.active { background: var(--card); color: var(--ink); box-shadow: var(--shadow-sm); }

.stage { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.scene { width: 100%; height: auto; display: block; }
.scene [data-surface] { transition: fill .25s var(--ease); }
.scene .surface-active { outline: 3px dashed rgba(0,0,0,.001); }
.scene-host { position: relative; }
.scene-host::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 3px transparent; }

.scene-tabs { display: flex; gap: .4rem; margin: 1rem 0; flex-wrap: wrap; }
.scene-tab { border: 1px solid var(--line); background: var(--card); border-radius: 10px; padding: .5rem .9rem; font: inherit; font-weight: 600; font-size: .88rem; cursor: pointer; color: var(--ink-soft); }
.scene-tab.active { border-color: var(--ink); color: var(--ink); }

.surface-bar { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .4rem; }
.surf-btn { display: inline-flex; align-items: center; gap: .5rem; border: 1px solid var(--line); background: var(--card); border-radius: 999px; padding: .4rem .8rem .4rem .4rem; font: inherit; font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--ink-soft); }
.surf-btn .sw { width: 20px; height: 20px; border-radius: 50%; border: 1px solid rgba(0,0,0,.15); }
.surf-btn.active { border-color: var(--accent); color: var(--ink); box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent) 25%, transparent); }

.vis-hint { font-size: .9rem; color: var(--ink-soft); margin: .2rem 0 0; }
.vis-hint.flash { color: var(--accent-deep); font-weight: 700; }

/* photo mode */
.photo-drop { position: relative; border: 2px dashed var(--line); border-radius: var(--radius); background: var(--paper-2); min-height: 320px; display: grid; place-items: center; text-align: center; padding: 2rem; }
.photo-drop.over { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, var(--paper-2)); }
.photo-drop.has-image { border-style: solid; background: var(--card); padding: 0; }
.photo-drop .drop-inner { max-width: 320px; }
.photo-drop.has-image .drop-inner { display: none; }
#photo-canvas { max-width: 100%; height: auto; display: none; cursor: crosshair; border-radius: var(--radius); }
.photo-drop.has-image #photo-canvas { display: block; }
.photo-upload-btn { margin-top: 1rem; }
.photo-controls { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
.photo-controls .ctrl { display: flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.photo-controls input[type="range"] { width: 130px; accent-color: var(--accent); }
.photo-controls .spacer { flex: 1; }

/* palette panel */
.vis-side { position: sticky; top: calc(var(--header-h) + 12px); display: grid; gap: 1rem; }
.panel { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow-sm); }
.panel h3 { font-size: 1rem; margin-bottom: .6rem; }
.selected-colour { display: flex; align-items: center; gap: .8rem; padding: .7rem; border: 1px dashed var(--line); border-radius: 10px; color: var(--ink-soft); font-size: .9rem; }
.selected-colour.has { border-style: solid; }
.selected-colour .dot { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(0,0,0,.12); flex: 0 0 auto; }
.selected-colour .meta { display: grid; }
.selected-colour .meta strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); }
.selected-colour .meta span { font-size: .82rem; }

.palette-search { width: 100%; padding: .6rem .8rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; margin-bottom: .6rem; }
.range-filter { display: flex; gap: .35rem; flex-wrap: wrap; margin-bottom: .8rem; }
.chip { border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: .3rem .7rem; font: inherit; font-size: .78rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.palette { max-height: 420px; overflow-y: auto; display: grid; gap: 1rem; padding-right: 4px; }
.pal-group-head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; margin-bottom: .4rem; }
.pal-group-head strong { font-size: .9rem; }
.pal-group-head span { font-size: .72rem; color: var(--ink-soft); }
.pal-swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(78px, 1fr)); gap: 6px; }
.pal-sw { aspect-ratio: 1; border: 1px solid rgba(0,0,0,.10); border-radius: 9px; cursor: pointer; position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 5px 6px; text-align: left; transition: transform .12s var(--ease), box-shadow .12s; overflow: hidden; }
.pal-sw:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-md); z-index: 1; }
.pal-sw .nm { font-size: .68rem; font-weight: 700; line-height: 1.05; }
.pal-sw em { font-size: .6rem; opacity: .8; font-style: normal; }
.pal-sw.sel { box-shadow: 0 0 0 3px var(--accent), var(--shadow-md); }

/* order list */
.order-list { list-style: none; margin: 0 0 .8rem; padding: 0; display: grid; gap: .4rem; max-height: 240px; overflow-y: auto; }
.order-list li { display: flex; align-items: center; gap: .6rem; padding: .4rem; border: 1px solid var(--line); border-radius: 10px; }
.order-list li.empty { border-style: dashed; color: var(--ink-soft); font-size: .85rem; justify-content: center; padding: 1rem; }
.order-list .sw { width: 30px; height: 30px; border-radius: 7px; border: 1px solid rgba(0,0,0,.12); flex: 0 0 auto; }
.order-list .li-meta { display: grid; flex: 1; min-width: 0; }
.order-list .li-meta strong { font-size: .9rem; }
.order-list .li-meta span { font-size: .75rem; color: var(--ink-soft); }
.order-list .li-remove { border: 0; background: var(--paper-2); width: 26px; height: 26px; border-radius: 50%; cursor: pointer; font-size: 1.1rem; line-height: 1; color: var(--ink-soft); }
.order-list .li-remove:hover { background: var(--accent); color: #fff; }
.list-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.list-actions .btn { justify-content: center; padding: .6rem .8rem; font-size: .85rem; }
.list-actions .full { grid-column: 1 / -1; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1fb457; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

.muted { color: var(--ink-soft); }

@media print {
  .site-header, .site-footer, .vis-main, .vis-tabs, .list-actions, .range-filter, .palette-search, .palette, .selected-colour { display: none !important; }
  .vis-layout { grid-template-columns: 1fr; }
  .panel { border: 0; box-shadow: none; }
}
