/* ============================================================
   Zenkia — Design tokens & global styles (v2 — modern)
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-2: #f6f6f7;
  --bg-3: #ececef;
  --ink: #0a0a0b;
  --ink-2: #4a4a52;
  --ink-3: #71717a;
  --muted: #a1a1aa;
  --line: #ececef;
  --line-2: #d4d4d8;
  --accent: #0064ff;
  --accent-deep: #0050d6;
  --accent-soft: #e4eeff;
  --green: #16a34a;
  --white: #ffffff;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 22px;

  --shadow-sm: 0 1px 2px rgba(10, 10, 11, 0.05);
  --shadow-md: 0 4px 14px rgba(10, 10, 11, 0.05), 0 1px 3px rgba(10, 10, 11, 0.04);
  --shadow-lg: 0 24px 50px -12px rgba(10, 10, 11, 0.12), 0 8px 16px -8px rgba(10, 10, 11, 0.06);

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, Menlo, monospace;

  --maxw: 1240px;
  --pad-x: clamp(16px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01";
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
@media (max-width: 600px) {
  .section { padding: 64px 0; }
}
.section.alt { background: var(--bg-2); }
.section + .section:not(.alt) { border-top: 1px solid var(--line); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.h-display {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
.h-display .ac { color: var(--accent); }
.h-display .muted { color: var(--ink-3); font-weight: 500; }
.h-display .sub {
  display: block;
  color: var(--ink-3);
  font-weight: 500;
  font-size: 0.62em;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0.18em;
}

.h1 { font-size: clamp(42px, 6.8vw, 84px); letter-spacing: -0.035em; line-height: 1.04; }
.h2 { font-size: clamp(34px, 4.8vw, 58px); letter-spacing: -0.03em; line-height: 1.06; }
.h3 { font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.025em; }

.lead {
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  font-weight: 400;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: clamp(48px, 5vw, 80px);
  max-width: 820px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: #1a1a1d; }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { background: var(--bg-2); border-color: var(--ink-3); }

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 1px 2px rgba(0,80,214,0.45);
}
.btn-accent:hover { background: var(--accent-deep); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--bg) 86%, transparent);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.wordmark .mark {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}
.wordmark .mark img,
.wordmark .mark svg { width: 100%; height: 100%; display: block; }
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-cta .btn { padding: 9px 14px !important; font-size: 13px !important; }
}
@media (max-width: 420px) {
  .wordmark { font-size: 17px; }
  .wordmark .mark { width: 22px; height: 22px; }
  .nav-inner { height: 60px; }
}

/* ---------- HERO shared ---------- */
.hero-wrap {
  padding-top: clamp(40px, 6vw, 96px);
  padding-bottom: clamp(56px, 7vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  font-size: 13px;
  color: var(--ink-3);
  font-family: var(--font-mono);
}
.hero-meta-row span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-row .ok { width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }

/* Hero variation: SPLIT */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-split .copy { max-width: 620px; }
.hero-split .copy h1 { margin-bottom: 24px; }
.hero-split .copy .lead { margin-bottom: 32px; }
.hero-split .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

@media (max-width: 1080px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-split .copy { max-width: 620px; margin-left: auto; margin-right: auto; width: 100%; }
  .hero-split .stage { width: 100%; }
}

/* Hero variation: EDITORIAL centered */
.hero-editorial { text-align: center; }
.hero-editorial h1 { margin: 0 auto 28px; max-width: 16ch; }
.hero-editorial .lead { margin: 0 auto 32px; }
.hero-editorial .cta-row {
  display: flex; gap: 12px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap;
}
.hero-editorial .stage { margin-top: 16px; }

/* Hero variation: ASYMMETRIC */
.hero-asym {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 28px;
}
.hero-asym .copy { grid-column: 1 / 2; grid-row: 1 / 2; max-width: 560px; }
.hero-asym .copy h1 { margin-bottom: 24px; }
.hero-asym .copy .lead { margin-bottom: 28px; }
.hero-asym .copy .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-asym .stage {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  align-self: end;
  transform: translateY(40px);
}
.hero-asym .metrics {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding-top: 28px;
}
.hero-asym .metric { padding-right: 16px; }
.hero-asym .metric:not(:last-child) { border-right: 1px solid var(--line); padding-left: 0; }
.hero-asym .metric + .metric { padding-left: 20px; }
.hero-asym .metric .v {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.hero-asym .metric .v .ac { color: var(--accent); }
.hero-asym .metric .v .unit { font-size: 22px; color: var(--ink-3); font-weight: 500; }
.hero-asym .metric .l {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 8px;
  font-family: var(--font-mono);
}

@media (max-width: 900px) {
  .hero-asym { grid-template-columns: 1fr; }
  .hero-asym .copy, .hero-asym .stage, .hero-asym .metrics { grid-column: 1; grid-row: auto; }
  .hero-asym .stage { transform: none; }
}
@media (max-width: 560px) {
  .hero-asym .metrics { grid-template-columns: 1fr; gap: 16px; }
  .hero-asym .metric { border-right: 0 !important; border-bottom: 1px solid var(--line); padding: 0 0 16px !important; }
  .hero-asym .metric:last-child { border-bottom: 0; padding-bottom: 0 !important; }
  .hero-asym .metric + .metric { padding-left: 0 !important; }
}

/* ---------- Mockup: POS terminal ---------- */
.mock-pos {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  font-size: 13px;
  position: relative;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.mock-pos .titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.mock-pos .titlebar .dots { display: flex; gap: 6px; }
.mock-pos .titlebar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--bg-3); }
.mock-pos .titlebar .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin-left: 8px;
}
.mock-pos .body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.mock-pos .catalog {
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.mock-pos .cat-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.mock-pos .cat-head h4 {
  margin: 0; font-weight: 600; font-size: 14px; letter-spacing: -0.015em;
}
.mock-pos .cat-head .pill {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--bg-2);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--ink-3);
}
.mock-pos .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mock-pos .item {
  aspect-ratio: 1;
  background: var(--bg-2);
  border-radius: var(--r-md);
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 11px;
  color: var(--ink-2);
  border: 1px solid transparent;
}
.mock-pos .item.sel { background: var(--accent-soft); border-color: var(--accent); color: var(--ink); }
.mock-pos .item .price { font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; }
.mock-pos .cart {
  padding: 18px;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
}
.mock-pos .cart h4 {
  margin: 0 0 14px; font-weight: 600; font-size: 14px; letter-spacing: -0.015em;
}
.mock-pos .cart-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-2);
}
.mock-pos .cart-row .pr { color: var(--ink); font-variant-numeric: tabular-nums; white-space: nowrap; }
.mock-pos .cart-row .qty {
  font-family: var(--font-mono);
  color: var(--ink-3);
  font-size: 11px;
}
.mock-pos .cart-row .name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.mock-pos .totals { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.mock-pos .totals .tr {
  display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.mock-pos .totals .total {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
  margin-top: 8px;
  font-variant-numeric: tabular-nums;
}
.mock-pos .totals .total > span { white-space: nowrap; }
.mock-pos .totals .total .v { color: var(--accent); }
.mock-pos .pay-btn {
  margin-top: 12px;
  background: var(--ink);
  color: var(--white);
  border: 0;
  padding: 12px 14px;
  border-radius: var(--r-md);
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
}
.mock-pos .pay-btn .price-out { font-variant-numeric: tabular-nums; }

/* ---------- Mockup: AI chat ---------- */
.mock-ai {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 20px;
}
.mock-ai .head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.mock-ai .avatar {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent); color: var(--white);
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; letter-spacing: -0.02em;
}
.mock-ai .head .name { font-size: 13px; font-weight: 500; }
.mock-ai .head .sub { font-size: 11px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.mock-ai .head .sub::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.mock-ai .msgs { display: flex; flex-direction: column; gap: 10px; }
.mock-ai .msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}
.mock-ai .msg.user { align-self: flex-end; background: var(--accent); color: var(--white); border-bottom-right-radius: 4px; }
.mock-ai .msg.bot { align-self: flex-start; background: var(--bg-2); color: var(--ink); border-bottom-left-radius: 4px; }
.mock-ai .msg .meta { font-family: var(--font-mono); font-size: 10px; opacity: .65; margin-top: 4px; }

/* ---------- Mockup: BI dashboard ---------- */
.mock-bi {
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 22px;
}
.mock-bi .head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.mock-bi .head h4 { margin: 0; font-weight: 600; font-size: 15px; letter-spacing: -0.02em; }
.mock-bi .head .range {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3);
  padding: 4px 10px; border: 1px solid var(--line); border-radius: 999px;
}
.mock-bi .kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px;
}
.mock-bi .kpi {
  padding: 14px;
  background: var(--bg-2);
  border-radius: var(--r-md);
}
.mock-bi .kpi .l { font-size: 10px; font-family: var(--font-mono); color: var(--ink-3); }
.mock-bi .kpi .v { font-weight: 600; font-size: 22px; margin-top: 4px; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.mock-bi .kpi .d { font-size: 11px; color: var(--green); margin-top: 2px; font-family: var(--font-mono); }
.mock-bi .chart {
  height: 120px;
  background: var(--bg-2);
  border-radius: var(--r-md);
  padding: 12px;
  position: relative;
}
.mock-bi .chart svg { width: 100%; height: 100%; display: block; }

/* ---------- Products section ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.product-card {
  background: var(--bg);
  padding: clamp(28px, 3.5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 320px;
  transition: background .15s ease;
}
.product-card:hover { background: var(--bg-2); }
.product-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.product-card h3 {
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.1;
  color: var(--ink);
}
.product-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
  max-width: 44ch;
}
.product-card ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.product-card ul li {
  padding-left: 22px;
  position: relative;
}
.product-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.product-card .more {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.product-card .more::after {
  content: "→";
  transition: transform .2s ease;
}
.product-card:hover .more::after { transform: translateX(4px); }

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

/* ---------- Vending Machine — wide product card ---------- */
.product-card.vm-card {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--bg-2);
  padding: clamp(28px, 3.5vw, 48px);
}
.product-card.vm-card:hover { background: var(--bg-3); }
.vm-content { display: flex; flex-direction: column; gap: 16px; }
.new-pill {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 8px;
  vertical-align: middle;
}

.vm-mock {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
}
.vm-mock-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}
.vm-mock-status { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); }
.vm-mock-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.vm-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.vm-slot {
  background: var(--bg-2);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid transparent;
}
.vm-slot.low { border-color: color-mix(in oklab, var(--accent) 30%, transparent); background: var(--accent-soft); }
.vm-slot-id {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}
.vm-slot.low .vm-slot-id { color: var(--accent-deep); }
.vm-bar {
  height: 4px;
  background: var(--bg-3);
  border-radius: 2px;
  overflow: hidden;
}
.vm-bar span {
  display: block;
  height: 100%;
  background: var(--ink);
  border-radius: 2px;
}
.vm-slot.low .vm-bar span { background: var(--accent); }
.vm-mock-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.vm-stat { display: flex; flex-direction: column; gap: 2px; }
.vm-stat .l { font-family: var(--font-mono); font-size: 10px; color: var(--ink-3); }
.vm-stat .v { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }

@media (max-width: 900px) {
  .product-card.vm-card { grid-column: span 2; grid-template-columns: 1fr; gap: 24px; }
  .product-card.vm-card .vm-content { order: 0; }
  .product-card.vm-card .vm-mock { order: 1; }
  .product-card.fiscal-card .vm-mock { order: 1; }
  .product-card.fiscal-card .vm-content { order: 0; }
}
@media (max-width: 760px) {
  .product-card.vm-card { grid-column: span 1; }
}

/* ---------- Fiscal — reversed wide card ---------- */
.product-card.fiscal-card {
  background: var(--bg-2);
}
.product-card.fiscal-card:hover { background: var(--bg-3); }
.product-card.fiscal-card .vm-mock {
  order: 0;
}
.product-card.fiscal-card .vm-content {
  order: 1;
}
.fiscal-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.fiscal-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12.5px;
}
.fiscal-list li:last-child { border-bottom: 0; }
.fiscal-list .f-type {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-2);
  padding: 3px 8px;
  border-radius: 4px;
  text-align: center;
  letter-spacing: 0.02em;
}
.fiscal-list .f-num {
  font-family: var(--font-mono);
  color: var(--ink-2);
  font-size: 12px;
}
.fiscal-list .f-status {
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.fiscal-list .f-status::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.fiscal-list .f-status.ok { color: #15803d; background: #dcfce7; }
.fiscal-list .f-status.ok::before { background: var(--green); }
.fiscal-list .f-status.pending { color: #a16207; background: #fef3c7; }
.fiscal-list .f-status.pending::before { background: #ca8a04; }
.fiscal-list .f-status.canceled { color: #6a6a74; background: var(--bg-2); }
.fiscal-list .f-status.canceled::before { background: var(--ink-3); }
.fiscal-list .f-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}

@media (max-width: 760px) {
  .product-card.fiscal-card .vm-mock { order: 1; }
  .product-card.fiscal-card .vm-content { order: 0; }
  .fiscal-list li { grid-template-columns: 50px 1fr auto; }
  .fiscal-list .f-time { display: none; }
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.step {
  padding: 32px 24px 0 0;
  border-right: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-right: 0; padding-right: 0; }
.step .n {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 28px;
  display: block;
}
.step h4 {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  line-height: 1.15;
}
.step p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 28ch;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { padding: 24px 16px 24px 0; }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(3), .step:nth-child(4) { border-top: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .step, .step:nth-child(n) { border-right: 0; border-top: 1px solid var(--line); padding: 24px 0; }
  .step:first-child { border-top: 0; }
}

/* ---------- Demo section ---------- */
.demo {
  background: var(--bg-2);
  border-radius: var(--r-xl);
  padding: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  border: 1px solid var(--line);
}
.demo .copy h3 { margin: 16px 0 14px; font-weight: 600; }
.demo .copy p { color: var(--ink-2); font-size: 16px; max-width: 42ch; }
.demo .tabs {
  display: flex; gap: 4px;
  margin: 24px 0 8px;
  background: var(--white);
  padding: 4px;
  border-radius: 10px;
  width: fit-content;
  border: 1px solid var(--line);
}
.demo .tabs button {
  border: 0;
  background: transparent;
  padding: 8px 14px;
  border-radius: 7px;
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
.demo .tabs button.active { background: var(--ink); color: var(--white); }
.demo .tab-body { display: none; }
.demo .tab-body.active { display: block; }

@media (max-width: 900px) {
  .demo { grid-template-columns: 1fr; }
}
/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.plan.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  position: relative;
}
.plan.featured .tag {
  position: absolute;
  top: -10px; left: 24px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 999px;
}
.plan h4 {
  margin: 0;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.plan .desc { font-size: 13.5px; color: var(--ink-3); margin: -4px 0 0; }
.plan.featured .desc { color: #b8b8c4; }
.plan .price {
  display: flex; align-items: baseline; gap: 6px;
  padding: 8px 0 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}
.plan.featured .price { border-bottom-color: #2a2a30; }
.plan .price .v {
  font-weight: 600;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.plan .price .v::before { content: "R$"; font-size: 16px; font-weight: 500; margin-right: 6px; color: var(--ink-3); vertical-align: top; position: relative; top: 6px; }
.plan.featured .price .v::before { color: #8c8c98; }
.plan .price .per { font-size: 12px; color: var(--ink-3); font-family: var(--font-mono); }
.plan.featured .price .per { color: #8c8c98; }
.plan ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13.5px;
}
.plan ul li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-2);
}
.plan.featured ul li { color: #d0d0d8; }
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 8px;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(-45deg, var(--accent) 50%, transparent 50%);
  background-size: 8px 8px, 8px 8px;
  background-position: 0 0, 5px 0;
  background-repeat: no-repeat;
  clip-path: polygon(0 50%, 35% 100%, 100% 0, 100% 25%, 35% 75%, 12% 50%);
}
.plan .plan-cta { margin-top: auto; }
.plan .plan-cta .btn { width: 100%; }
.plan.featured .btn-ghost { color: var(--white); border-color: #2e2e36; }
.plan.featured .btn-ghost:hover { background: #1a1a1d; border-color: #4a4a52; }

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

/* Simpler checkmark fallback */
.plan ul li::before {
  content: "✓";
  font-size: 13px;
  color: var(--accent);
  background: none;
  width: auto; height: auto;
  clip-path: none;
  top: 0;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial blockquote {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.testimonial blockquote::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 14px;
}
.testimonial .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.testimonial .who .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  color: var(--ink);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
}
.testimonial .who .n { font-size: 13.5px; font-weight: 500; }
.testimonial .who .r { font-size: 11.5px; color: var(--ink-3); font-family: var(--font-mono); }

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

/* ---------- Integrations ---------- */
.integrations {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.integration {
  background: var(--bg);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-height: 110px;
  justify-content: center;
  transition: background .15s ease;
}
.integration:hover { background: var(--bg-2); }
.integration .lg {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-2);
  display: grid; place-items: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.integration .nm { font-size: 12px; color: var(--ink-2); font-family: var(--font-mono); }

@media (max-width: 900px) {
  .integrations { grid-template-columns: 1fr; }
  .integration-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 19px);
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--ink-3);
  transition: transform .2s ease;
  flex-shrink: 0;
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details > p {
  margin: 14px 0 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ---------- Final CTA ---------- */
.cta-final {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  right: -160px;
  top: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: .55;
  pointer-events: none;
  filter: blur(20px);
}
.cta-final h2 { color: var(--white); position: relative; }
.cta-final h2 .ac { color: var(--accent); }
.cta-final .copy p { color: #b8b8c4; font-size: 16px; max-width: 36ch; margin: 20px 0 0; position: relative; }
.cta-final .form {
  background: #15151a;
  border: 1px solid #26262e;
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  z-index: 1;
}
.cta-final .form label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #8c8c98;
  margin-bottom: 6px;
}
.cta-final .form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.cta-final .form .field { display: flex; flex-direction: column; }
.cta-final .form input,
.cta-final .form select {
  background: #0a0a0d;
  border: 1px solid #2a2a32;
  color: var(--white);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color .15s ease, background .15s ease;
}
.cta-final .form input::placeholder { color: #5a5a64; }
.cta-final .form input:focus,
.cta-final .form select:focus {
  outline: none;
  border-color: var(--accent);
  background: #0d0d12;
}
.cta-final .form .full { grid-column: 1 / -1; }
.cta-final .form .submit-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 18px;
}
.cta-final .form .fine { font-size: 11px; color: #6a6a74; max-width: 24ch; line-height: 1.4; font-family: var(--font-mono); }
.cta-final .form button[type="submit"] {
  background: var(--accent);
  color: var(--white);
  border: 0;
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s ease, transform .12s ease;
}
.cta-final .form button[type="submit"]:hover { background: var(--accent-deep); transform: translateY(-1px); }
.cta-final .form .success {
  background: #0d2417;
  border: 1px solid #1e5a36;
  color: #9ce0b3;
  border-radius: var(--r-md);
  padding: 16px;
  font-size: 14px;
  text-align: center;
  display: none;
}
.cta-final .form.sent .form-body { display: none; }
.cta-final .form.sent .success { display: block; }

@media (max-width: 900px) {
  .cta-final { grid-template-columns: 1fr; }
  .cta-final .form .row { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  padding: 56px 0 32px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-3);
}
.footer .top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.footer .col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  margin: 0 0 14px;
  font-weight: 500;
}
.footer .col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer .col a { color: var(--ink-2); font-size: 13.5px; }
.footer .col a:hover { color: var(--ink); }
.footer .brand p { margin: 12px 0 0; font-size: 13.5px; color: var(--ink-2); max-width: 36ch; }
.footer .bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}

@media (max-width: 760px) {
  .footer .top { grid-template-columns: 1fr 1fr; }
}

/* ---------- Articles ---------- */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.article {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s ease, border-color .15s ease, box-shadow .2s ease;
}
.article:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-md);
}
.article-cover {
  aspect-ratio: 16 / 9;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  overflow: hidden;
  isolation: isolate;
}
.article-cover .a-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}
.article-cover .a-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.article-cover.c-1 { background: var(--ink); }
.article-cover.c-1 .a-shape {
  background:
    radial-gradient(circle at 80% 25%, color-mix(in oklab, var(--accent) 65%, transparent) 0%, transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,0.04) 22px 23px);
}
.article-cover.c-2 { background: var(--accent); }
.article-cover.c-2 .a-shape {
  background:
    radial-gradient(circle at 18% 85%, rgba(255,255,255,0.25) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255,255,255,0.08) 18px 19px);
}
.article-cover.c-3 { background: var(--bg-3); }
.article-cover.c-3 .a-num { color: var(--ink-2); }
.article-cover.c-3 .a-shape {
  background:
    radial-gradient(circle at 70% 30%, color-mix(in oklab, var(--ink) 12%, transparent) 0%, transparent 55%),
    repeating-linear-gradient(0deg, transparent 0 28px, rgba(10,10,11,0.06) 28px 29px);
}

.article-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.a-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  align-self: flex-start;
}
.article-body h3 {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
}
.article-body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.a-meta {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
}

@media (max-width: 900px) {
  .articles { grid-template-columns: 1fr 1fr; }
  .articles .article:last-child { grid-column: span 2; }
  .articles .article:last-child .article-cover { aspect-ratio: 21 / 9; }
}
@media (max-width: 600px) {
  .articles { grid-template-columns: 1fr; }
  .articles .article:last-child { grid-column: span 1; }
  .articles .article:last-child .article-cover { aspect-ratio: 16 / 9; }
}

/* ---------- Mobile-wide pass ---------- */
@media (max-width: 600px) {
  .demo { padding: 28px 18px; }
  .demo .tabs { width: 100%; }
  .demo .tabs button { flex: 1; padding: 8px 6px; font-size: 12px; }
  .vm-mock-grid { gap: 6px; }
  .vm-mock-foot { grid-template-columns: 1fr; gap: 6px; }
  .vm-stat { flex-direction: row; justify-content: space-between; align-items: center; padding: 4px 0; border-bottom: 1px dashed var(--line); }
  .vm-stat:last-child { border-bottom: 0; }
  .vm-mock-head { flex-direction: column; align-items: flex-start; gap: 4px; }
  .product-card { padding: 22px 20px; min-height: 0; }
  .product-card.vm-card { padding: 20px; }
  .product-card h3 { font-size: 22px; }
  .vm-mock { padding: 14px; }
  .vm-slot { padding: 8px; gap: 6px; }
  .integration-grid { grid-template-columns: repeat(2, 1fr); }
  .integration { min-height: 96px; padding: 18px 12px; }
  .cta-final { padding: 28px 20px; gap: 28px; }
  .cta-final .form { padding: 20px; }
  .cta-final .form .row { gap: 10px; margin-bottom: 10px; }
  .cta-final .form .submit-row { flex-direction: column; align-items: stretch; }
  .cta-final .form .submit-row .fine { text-align: center; max-width: none; }
  .cta-final .form button[type="submit"] { justify-content: center; }
  .footer { padding: 40px 0 28px; }
  .footer .top { grid-template-columns: 1fr; gap: 24px; padding-bottom: 24px; margin-bottom: 18px; }
  .footer .bottom { flex-direction: column; align-items: flex-start; }
  .lead { font-size: 16px; }
  .hero-meta-row { gap: 8px 16px; font-size: 12px; }
  .faq summary { font-size: 17px !important; gap: 16px; }
  .step h4 { font-size: 20px; }

  /* Hero copy — tighter, breaks earlier */
  .h1 { font-size: 36px !important; line-height: 1.06; letter-spacing: -0.025em; }
  .h2 { font-size: 30px !important; line-height: 1.1; }
  .h-display .sub { font-size: 0.6em; }

  /* CTAs full width feel */
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-row .btn { width: 100%; }

  /* PDV mockup catalog items shrink slightly */
  .mock-pos .items { gap: 6px; }
  .mock-pos .item { padding: 6px; font-size: 10.5px; }
  .mock-pos .item .price { font-size: 11px; }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section { padding: 56px 0; }

  /* Steps */
  .steps { gap: 0; }
}

/* Tablet-ish (601–900) — products wide cards already stack at 900 via above rule */
@media (min-width: 601px) and (max-width: 900px) {
  .h1 { font-size: 56px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Floating WhatsApp button ---------- */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(10, 10, 11, 0.18);
  z-index: 40;
  transition: transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
.wa-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.6;
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
.wa-fab svg { width: 32px; height: 32px; display: block; }
.wa-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 6px 14px rgba(10, 10, 11, 0.2); }
.wa-fab-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 4px 12px rgba(10, 10, 11, 0.15);
}
.wa-fab-tip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--ink);
}
.wa-fab:hover .wa-fab-tip { opacity: 1; transform: translateY(-50%) translateX(0); }

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.5); opacity: 0;   }
  100% { transform: scale(1.5); opacity: 0;   }
}

@media (max-width: 560px) {
  .wa-fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .wa-fab svg { width: 28px; height: 28px; }
  .wa-fab-tip { display: none; }
}

/* ============================================================
   RESPONSIVE OVERRIDES — kept at the very end so they win the
   cascade over base rules that appear later in the file.
   ============================================================ */

/* Mock PDV — stack catalog above cart at tablet+mobile */
@media (max-width: 760px) {
  .mock-pos .body { grid-template-columns: 1fr; }
  .mock-pos .catalog { border-right: 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 480px) {
  .mock-pos .titlebar { padding: 8px 12px; }
  .mock-pos .titlebar .label { font-size: 10px; }
  .mock-pos .catalog,
  .mock-pos .cart { padding: 14px; }
  .mock-pos .items { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .mock-pos .item { aspect-ratio: auto; padding: 10px; gap: 4px; min-height: 60px; }
  .mock-pos .item .price { font-size: 11px; }
  .mock-pos .cat-head h4,
  .mock-pos .cart h4 { font-size: 13px; }
  .mock-pos .cart-row { font-size: 11.5px; padding: 6px 0; gap: 8px; }
  .mock-pos .cart-row .qty { font-size: 10px; }
  .mock-pos .totals .total { font-size: 16px; }
  .mock-pos .pay-btn { padding: 11px 12px; font-size: 12.5px; }
}
