/* ==========================================================================
   ShopSync design system — Light Slate + the ShopSync palette.
   Primary #1E88E5 · dark #1565C0 · success #43A047 · danger #E53935
   warn #FB8C00 · canvas #F5F7FA · card #FFF · ink #212121 · muted #757575
   border #E0E0E0. Touch targets >= 48px. RTL-ready.
   ========================================================================== */
:root {
  --blue: #1E88E5; --blue-dark: #1565C0; --green: #43A047; --red: #E53935;
  --warn: #FB8C00; --canvas: #F5F7FA; --card: #FFF; --ink: #212121;
  --muted: #757575; --border: #E0E0E0; --radius: 8px;
  --shadow: 0 1px 2px rgba(33,33,33,.06), 0 1px 8px rgba(33,33,33,.04);
  --pad: 14px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.app {
  background: var(--canvas); color: var(--ink);
  font-family: Inter, Roboto, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 15px; line-height: 1.45;
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-tap-highlight-color: transparent;
}
body.rtl { direction: rtl; font-family: "Noto Nastaliq Urdu", Inter, Roboto, system-ui, sans-serif; }
h1, h2, h3 { font-weight: 700; margin: 0 0 8px; }
h1 { font-size: 20px; } h2 { font-size: 17px; } h3 { font-size: 16px; }
a { color: var(--blue-dark); text-decoration: none; }
.muted { color: var(--muted); }
.small { font-size: 12.5px; }
.nowrap { white-space: nowrap; }
.mono { font-family: ui-monospace, Menlo, Consolas, monospace; letter-spacing: .5px; }
.inline { display: inline; }

/* ------------------------------------------------- appbar (header + top nav) */
/* The header and the bar stick together, so the buttons are reachable from the
   bottom of a long inventory list instead of scrolling back up first. */
.appbar {
  position: sticky; top: 0; z-index: 30; background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 2px rgba(33,33,33,.04);
}
.topbar {
  padding: 9px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
/* A flat tab strip, not a boxed control. A hairline separates it from the brand row,
   each tab is a line icon plus its label, and the tab you are on is underlined in the
   app blue — the same "you are here" as a desktop app's tab bar. It swipes sideways on
   a phone (no wasted screen height); from 860px up it wraps into as many rows as it
   needs. No pill, no grey track, no lift: a shopkeeper's screen is a tool, not a
   landing page. */
.topnav { padding: 0 var(--pad); border-top: 1px solid #EEF1F5; }
.topnav-track {
  display: flex; gap: 2px;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.topnav-track::-webkit-scrollbar { display: none; }
.topnav-btn {
  position: relative; display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto;
  min-height: 44px; padding: 0 11px;
  color: #455A64; font-size: 13px; font-weight: 600; white-space: nowrap;
  transition: color .15s ease;
}
.topnav-btn:hover { color: var(--ink); }
.topnav-btn:active { color: var(--blue-dark); }
/* Where you are, said twice: the label darkens to the app blue AND an underline appears,
   so it survives a greyscale screen and does not rely on colour alone. */
.topnav-btn.active { color: var(--blue-dark); font-weight: 700; }
.topnav-btn.active::after {
  content: ""; position: absolute; left: 8px; right: 8px; bottom: 0; height: 2px;
  border-radius: 2px 2px 0 0; background: var(--blue);
}
.topnav-ico { display: inline-flex; align-items: center; }
/* On a phone the strip runs off the edge, which is how the rest of the screens are
   reached. A soft fade on the far edge says "there is more" instead of looking like a
   label someone forgot to finish. Decorative only: never eats a tap. */
@media (max-width: 859px) {
  .topnav { position: relative; }
  .topnav::after {
    content: ""; position: absolute; top: 0; bottom: 1px; inset-inline-end: 0; width: 28px;
    pointer-events: none;
    background: linear-gradient(to left, #fff 25%, rgba(255,255,255,0));
  }
  .topnav[dir="rtl"]::after, .rtl .topnav::after {
    background: linear-gradient(to right, #fff 25%, rgba(255,255,255,0));
  }
}
/* Inline SVG sprite: one definition, sized here, coloured by currentColor so the icon
   turns with the label when a tab lights up. */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico { display: block; width: 18px; height: 18px; flex: 0 0 auto; }
.topnav-ico .ico { width: 17px; height: 17px; }
@media (min-width: 860px) {
  .topnav-track { flex-wrap: wrap; overflow-x: visible; }
  .topnav-btn { padding: 0 14px; }
}
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; color: inherit; }
.brand-mark {
  display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 10px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .4px;
  background: linear-gradient(150deg, #42A5F5, var(--blue) 45%, var(--blue-dark));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 1px 3px rgba(21,101,192,.35);
}
.brand-mark--lg { width: 54px; height: 54px; flex-basis: 54px; font-size: 20px; }
.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-text strong { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.brand-sub { color: var(--muted); font-size: 12px; }
/* On a 375px phone the header chips squeeze the shop name into an ellipsis, so a
   shopkeeper cannot read the name of their own shop. Wrap the name to two lines and
   drop the role line instead of truncating. */
@media (max-width: 430px) {
  .brand-text strong { font-size: 14.5px; white-space: normal; overflow-wrap: anywhere;
    line-height: 1.15; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
  .brand-sub { display: none; }
}
.top-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 40px; padding: 0 11px; border: 1px solid var(--border); border-radius: 999px;
  background: var(--card); color: var(--ink); font-size: 12.5px; font-weight: 600;
  white-space: nowrap; transition: background .15s ease, border-color .15s ease;
}
.icon-btn:hover { background: var(--canvas); border-color: #CFD8DC; }
.icon-btn .ico { width: 16px; height: 16px; }
.icon-btn-lbl { max-width: 132px; overflow: hidden; text-overflow: ellipsis; }
/* A small inline pill (settings uses it for the "change licence" link). */
.chip {
  display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 11px; font-size: 12.5px; font-weight: 600;
  color: var(--ink); background: var(--canvas); white-space: nowrap;
}
.net-pill { border-radius: 999px; padding: 6px 10px; font-size: 12px; font-weight: 600; }
.net-pill--off { background: #FDECEA; color: var(--red); }
.net-pill--sync { background: #FFF4E5; color: #B26A00; }
@media (max-width: 430px) {
  /* Two word-long chips ate the header on a phone. Keep the icons, drop the words. */
  .icon-btn { width: 40px; padding: 0; }
  .icon-btn-lbl { display: none; }
  .top-actions { gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  .topnav-btn, .icon-btn, .tab, .action, .fab { transition: none; }
}

/* ---------------------------------------------------------------- layout */
.wrap { padding: var(--pad) var(--pad) 110px; max-width: 1100px; margin: 0 auto; }
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--pad); margin-bottom: var(--pad); box-shadow: var(--shadow);
}
.card-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.card-h h2 { margin: 0; }
.cols { display: grid; gap: var(--pad); }
@media (min-width: 860px) { .cols { grid-template-columns: 1fr 1fr; } }
.card--narrow { max-width: 560px; }

/* ---------------------------------------------------------------- stats */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: var(--pad); }
@media (min-width: 760px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  display: block; background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid var(--blue); border-radius: var(--radius);
  padding: 12px; box-shadow: var(--shadow); color: inherit;
}
body.rtl .stat { border-left: 1px solid var(--border); border-right: 4px solid var(--blue); }
.stat--green { border-left-color: var(--green); }
.stat--red { border-left-color: var(--red); }
.stat--warn { border-left-color: var(--warn); }
.stat-label { display: block; color: var(--muted); font-size: 12.5px; }
.stat-value { display: block; font-size: 20px; font-weight: 800; margin: 2px 0; }
.stat-sub { display: block; color: var(--muted); font-size: 12px; }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 48px; padding: 0 16px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); color: var(--ink); font-size: 15px; font-weight: 600;
  cursor: pointer; font-family: inherit;
}
.btn--primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn--success { background: var(--green); border-color: var(--green); color: #fff; }
.btn--danger { background: var(--red); border-color: var(--red); color: #fff; }
.btn--ghost { background: var(--canvas); }
.btn--block { width: 100%; }
.btn--lg { min-height: 52px; font-size: 16px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--pad); }
.link { background: none; border: 0; color: var(--blue-dark); font: inherit; font-weight: 600; cursor: pointer; padding: 4px; }
.link--danger { color: var(--red); }

/* ---------------------------------------------------------------- forms */
.form .field, .field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; min-width: 0; }
label { font-size: 13px; font-weight: 600; color: var(--ink); }
.input {
  min-height: 48px; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); color: var(--ink); font: inherit; width: 100%;
}
.input:focus { outline: 2px solid rgba(30,136,229,.35); border-color: var(--blue); }
.input--sm { min-height: 40px; padding: 6px 8px; }
.input--search { font-size: 16px; margin-bottom: 10px; }
.row { display: grid; gap: 10px; }
@media (min-width: 620px) { .row { grid-template-columns: 1fr 1fr; } }
.check { display: flex; align-items: center; gap: 8px; font-size: 14px; min-height: 48px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-bar .input { width: auto; flex: 1 1 160px; }

/* ---------------------------------------------------------------- tables */
.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th, .tbl td { text-align: left; padding: 10px 8px; border-bottom: 1px solid var(--border); vertical-align: top; }
body.rtl .tbl th, body.rtl .tbl td { text-align: right; }
.tbl th { color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .3px; }
.tbl .num { text-align: right; white-space: nowrap; }
body.rtl .tbl .num { text-align: left; }
.tbl .actions { text-align: right; white-space: nowrap; }
.row--low td { background: #FFF9F0; }
.pill { display: inline-block; border-radius: 999px; padding: 3px 9px; font-size: 11.5px; font-weight: 700; }
.pill--green { background: #E8F5E9; color: #2E7D32; }
.pill--red { background: #FDECEA; color: #C62828; }
.pill--warn { background: #FFF4E5; color: #B26A00; }
.pill--grey { background: #EEEEEE; color: #555; }
.empty { color: var(--muted); padding: 10px 2px; }

/* ---------------------------------------------------------------- flashes */
.flash-list { margin-bottom: 10px; }
.flash { border-radius: var(--radius); padding: 10px 12px; margin-bottom: 8px; font-size: 14px; }
.flash--ok { background: #E8F5E9; color: #2E7D32; }
.flash--warn { background: #FDECEA; color: #C62828; }
.flash--info { background: #E3F2FD; color: #1565C0; }

/* ---------------------------------------------------------------- bottom nav + fab */
.bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 30; background: var(--card);
  border-top: 1px solid var(--border); display: grid; grid-template-columns: repeat(4, 1fr);
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -2px 12px rgba(33,33,33,.05);
}
.tab {
  position: relative; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 3px; padding: 8px 2px 7px; min-height: 58px;
  color: var(--muted); font-size: 11px; font-weight: 600; letter-spacing: .1px;
  transition: color .15s ease;
}
.tab .ico--tab { width: 22px; height: 22px; }
.tab.active { color: var(--blue-dark); }
/* Where you are, marked twice: a blue tab and a bar over it. */
.tab.active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 26px; height: 3px; border-radius: 0 0 4px 4px; background: var(--blue);
}
.fab {
  position: fixed; right: 16px; bottom: 78px; z-index: 31; width: 60px; height: 60px;
  border-radius: 50%; color: #fff; display: grid; place-items: center;
  background: linear-gradient(150deg, #4CAF50, var(--green));
  box-shadow: 0 8px 20px rgba(67,160,71,.38), 0 2px 4px rgba(33,33,33,.12);
  transition: transform .15s ease;
}
.fab:active { transform: scale(.94); }
.fab .ico--fab { width: 26px; height: 26px; }
body.rtl .fab { right: auto; left: 16px; }
/* The day-close screen's one job is the Close button; the floating "+ new invoice"
   button would sit on top of the Expected / Difference figures on a 375px phone.
   A shopkeeper counting the drawer is not starting a sale. */
body.no-fab .fab { display: none; }
body.no-fab .wrap { padding-bottom: 90px; }
@media (min-width: 860px) { .bottomnav { display: none; } .fab { bottom: 24px; } .wrap { padding-bottom: 90px; } }

/* ---------------------------------------------------------------- POS */
.pos { display: grid; gap: var(--pad); }
@media (min-width: 900px) { .pos { grid-template-columns: 1.15fr .85fr; align-items: start; } }
.pick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (min-width: 520px) { .pick-grid { grid-template-columns: repeat(3, 1fr); } }
.pick {
  display: flex; flex-direction: column; gap: 2px; text-align: left; min-height: 84px;
  padding: 10px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); cursor: pointer; font: inherit; color: inherit;
}
.pick:active { background: #E3F2FD; }
.pick--out { border-color: #EF9A9A; background: #FFF7F7; }
.pick-price { color: var(--green); font-weight: 700; }
.pick-stock { color: var(--muted); font-size: 12px; }
.cart-line {
  display: grid; grid-template-columns: 1fr auto; gap: 6px 10px; align-items: center;
  padding: 10px 0; border-bottom: 1px dashed var(--border);
}
.cart-line .cl-name { display: flex; flex-direction: column; grid-column: 1 / 2; }
.cart-line .cl-qty { display: flex; align-items: center; gap: 4px; grid-column: 1 / 2; }
.cart-line .cl-price { grid-column: 2 / 3; }
.cart-line .cl-price .input { width: 92px; }
.cart-line .cl-total { grid-column: 2 / 3; text-align: right; font-weight: 700; }
body.rtl .cart-line .cl-total { text-align: left; }
.cart-line .cl-del {
  grid-column: 2 / 3; justify-self: end; background: none; border: 0; color: var(--red);
  font-size: 22px; cursor: pointer; line-height: 1; padding: 2px 6px;
}
.qty-btn { width: 40px; height: 40px; border: 1px solid var(--border); background: var(--canvas); border-radius: var(--radius); font-size: 18px; font-weight: 700; cursor: pointer; }
.qty-in { width: 62px; min-height: 40px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius); font: inherit; }
.method-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.method {
  min-height: 46px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--card); font: inherit; font-weight: 600; cursor: pointer;
}
.method.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.totals { border-top: 1px solid var(--border); margin-top: 10px; padding-top: 8px; }
.totals > div { display: flex; justify-content: space-between; padding: 3px 0; font-size: 14px; }
.totals-grand { font-size: 19px !important; font-weight: 800; border-top: 1px solid var(--border); margin-top: 4px; padding-top: 6px !important; }
.pos-actions { display: grid; gap: 8px; margin-top: 10px; }

/* ---------------------------------------------------------------- modal */
/* [hidden] must win over any class that sets a display value: without this the
   receipt modal stays clickable-but-invisible and the POS page goes dead. */
[hidden] { display: none !important; }
.modal { position: fixed; inset: 0; background: rgba(33,33,33,.45); display: grid; place-items: center; z-index: 60; padding: 16px; }
.modal-card { background: var(--card); border-radius: 12px; padding: 18px; width: 100%; max-width: 420px; }
.done-amount { font-size: 30px; font-weight: 800; margin: 6px 0; }

/* ---------------------------------------------------------------- auth */
.auth-body { display: grid; place-items: center; min-height: 100vh; padding: 16px; }
.auth-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 20px; width: 100%; max-width: 430px; box-shadow: var(--shadow); }
.auth-head { text-align: center; margin-bottom: 16px; }
.auth-head h1 { margin: 8px 0 2px; }
.auth-card .btn { margin-top: 6px; }
.auth-foot { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }
.auth-shop { text-align: center; margin-bottom: 12px; }

/* ---------------------------------------------------------------- reports */
.report-list { display: grid; gap: 6px; }
.report-line { display: flex; justify-content: space-between; gap: 10px; border-bottom: 1px dashed var(--border); padding: 6px 0; }
.report-line strong { white-space: nowrap; }
/* a figure that wraps ("-Rs / 240.00") reads like a typo; the label may wrap, the money may not */
.report-line > span:last-child { white-space: nowrap; }
.range-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.range-tabs a {
  border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px;
  background: var(--card); color: var(--ink); font-size: 13px; font-weight: 600;
}
.range-tabs a.active { background: var(--blue); border-color: var(--blue); color: #fff; }

/* ---------------------------------------------------------------- receipt */
.receipt-wrap { display: grid; place-items: start center; }
.receipt {
  background: #fff; color: #000; padding: 8px 6px; border: 1px solid var(--border);
  font-family: ui-monospace, "Courier New", monospace; font-size: 12px; line-height: 1.35;
  width: 58mm; max-width: 100%;
}
.receipt--80 { width: 80mm; }
.receipt .r-center { text-align: center; }
.receipt .r-shop { font-size: 15px; font-weight: 800; }
.receipt hr { border: 0; border-top: 1px dashed #000; margin: 5px 0; }
.receipt table { width: 100%; border-collapse: collapse; font-size: 11.5px; }
.receipt th, .receipt td { padding: 1px 0; }
.receipt .r-right { text-align: right; }
.receipt .r-total { font-size: 14px; font-weight: 800; }
.receipt .r-foot { margin-top: 6px; text-align: center; font-size: 10.5px; }
.receipt .r-small { font-size: 10px; color: #333; }

/* ---------------------------------------------- v2: stock in, returns, buying */
/* A row of the actions a shopkeeper reaches for on the inventory screen. Wraps on a
   375px phone into two tidy lines instead of overflowing off-screen. */
/* A table with five columns is wider than a 375px phone. Scrolling the card sideways
   is what a phone user expects and keeps the PAGE from drifting, which is the thing
   that made the app feel broken on a small screen. */
.card { overflow-x: auto; }
.report-line strong { min-width: 0; overflow-wrap: anywhere; }
.mono { overflow-wrap: anywhere; }
.quickrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.quickrow .btn { flex: 1 1 auto; min-width: 132px; text-align: center; }
.card--warn { border-color: var(--warn); background: #FFF8F0; }
.plainlist { margin: 0; padding-left: 18px; }
body.rtl .plainlist { padding-left: 0; padding-right: 18px; }
.plainlist li { margin: 4px 0; }
/* One product line on the stock-in form: its own panel so a long purchase bill does
   not turn into a wall of inputs. */
.line-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px; margin: 10px 0; background: var(--canvas);
}
.line-card .row { margin-bottom: 8px; }
.field--grow { flex: 1 1 220px; }
.fieldset { border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; margin: 10px 0; }
.fieldset legend { font-weight: 700; font-size: 13px; padding: 0 6px; }
/* Two columns inside the filter bar still fit a 375px phone: these size to content. */
.input--tiny { width: 78px; padding: 6px 8px; text-align: right; margin: 0 auto; display: block; }
@media (max-width: 430px) {
  .input--tiny { width: 64px; }
}

@media print {
  /* .appbar is the whole header, and it used to survive printing at 1px tall — its
     bottom border printed as a stray line above every receipt. Hide the box, not just
     the pieces inside it. */
  .appbar, .sprite, .topbar, .topnav, .bottomnav, .fab, .no-print, .flash-list,
  .btn-row { display: none !important; }
  body.app { background: #fff; padding: 0; }
  .wrap { padding: 0; max-width: none; }
  .card { border: 0; box-shadow: none; padding: 0; margin: 0; overflow: visible; }
  .receipt { border: 0; }
  @page { margin: 3mm; }
}

/* ------------------------------------------------------- dashboard actions */
/* The dashboard used to repeat eight of the top bar's eleven buttons as ghost pills,
   which is what made the top of the screen look like a wall of identical buttons.
   What is left is only the three things a screen cannot be reached from anywhere
   else: start a sale, record a purchase, add an item. On a phone they sit side by side
   as three app-style shortcuts instead of three full-width rows. */
.actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: var(--pad); }
.action {
  display: flex; align-items: center; gap: 12px; padding: 13px 14px;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); color: inherit;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.action:hover { border-color: #B0BEC5; transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(33,33,33,.08); }
.action:active { transform: none; }
.action-ico {
  display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 11px; background: #E3F2FD; color: var(--blue-dark);
}
.action--sale .action-ico { background: #E8F5E9; color: #2E7D32; }
.action-txt { display: flex; flex-direction: column; min-width: 0; }
.action-txt strong { font-size: 15px; }
.action-txt .small { color: var(--muted); }
@media (max-width: 639px) {
  /* 375px: three tiles in one row, icon over label, hint dropped — the same three
     doors, 200px of scroll shorter. */
  .action { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 10px; }
  .action-ico { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 10px; }
  .action-txt strong { font-size: 13px; line-height: 1.25; }
  .action-txt .small { display: none; }
}
