/* ── Design tokens ── */
:root {
  --bg:          #0f1419;
  --surface:     #1a2332;
  --surface-2:   #212d3d;
  --text:        #e8eef7;
  --muted:       #8b9aaf;
  --accent:      #3d9cfd;
  --accent-dim:  rgba(61, 156, 253, 0.15);
  --green:       #34d399;
  --green-dim:   rgba(52, 211, 153, 0.15);
  --amber:       #fbbf24;
  --amber-dim:   rgba(251, 191, 36, 0.15);
  --purple:      #a78bfa;
  --purple-dim:  rgba(167, 139, 250, 0.15);
  --red:         #f87171;
  --red-dim:     rgba(248, 113, 113, 0.15);
  --border:      rgba(255, 255, 255, 0.07);
  --radius:      10px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/*
 * Tailwind CDN is loaded with preflight:false, so author display rules
 * (e.g. #cart-breakdown { display:flex }) would override the UA stylesheet's
 * [hidden]→display:none.  This rule restores the correct behaviour.
 */
[hidden] { display: none !important; }

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  min-height: 100dvh;
}

.pos-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── POS: fixed top bar (overrides shared-nav.css sticky default) ── */
.top-bar {
  position: fixed;
  left: 0;
  right: 0;
  padding: 0.55rem 1.25rem;
}
.top-bar__brand { gap: 1rem; }

.pos-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding-top: 3.35rem;
}

@media (max-width: 720px) {
  .pos-body {
    padding-top: 4.35rem;
  }
}

/* ── Badges ── */
.badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
}
.badge--checking { background: var(--amber-dim); color: var(--amber); }
.badge--ok       { background: var(--green-dim); color: var(--green); }
.badge--error    { background: var(--red-dim);   color: var(--red); }

/* ── Main: flex two-column (menu flex-grow | order ~33% capped) ── */
.pos-layout {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem 0.5rem;
  flex: 1;
  min-height: 0;
}

@media (max-width: 900px) {
  .pos-layout {
    flex-direction: column;
    padding: 0.65rem 0.85rem 0.35rem;
    gap: 0.65rem;
    flex: 1 1 auto;
  }
}

/* ── Panels ── */
.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 0;
}
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}

/* ── Menu panel (left): toolbar, search, scrollable compact grid ── */
.menu-panel {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
  padding: 0.65rem 0.85rem 0.75rem;
  min-height: 0;
  gap: 0.55rem;
}
@media (max-width: 900px) {
  .menu-panel {
    flex: 1 1 auto;
    min-height: min(44dvh, 420px);
  }
}

.menu-panel__toolbar {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  flex-shrink: 0;
  min-height: 0;
}
.menu-panel__seed {
  flex-shrink: 0;
  margin-top: 0.12rem;
}

.category-tabs {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.32rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.12rem 0 0.35rem;
  scrollbar-width: thin;
}
.category-tab {
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.category-tab:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}
.category-tab--active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.menu-search-wrap {
  flex-shrink: 0;
  display: grid;
  gap: 0.25rem;
}
.menu-search-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.menu-search-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  color: var(--text);
  font-size: 0.88rem;
}
.menu-search-input:focus {
  outline: none;
  border-color: var(--accent);
}
.menu-search-input::placeholder {
  color: rgba(139, 154, 175, 0.65);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 0.45rem;
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.1rem 2px 0.35rem 0;
  align-content: start;
}
.menu-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.52rem 0.6rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-height: 0;
  cursor: pointer;
  transition: border-color 0.13s, background 0.13s, transform 0.1s;
  user-select: none;
}
.menu-card:hover  { border-color: var(--accent); background: rgba(61,156,253,0.07); }
.menu-card:active { transform: scale(0.97); }
.menu-card__name  { font-weight: 700; font-size: 0.8rem; line-height: 1.25; }
.menu-card__desc  {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1.28;
  flex: 1;
  margin-top: 0.06rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.45em;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
  gap: 0.35rem;
}
.menu-card__price { font-weight: 800; color: var(--accent); font-size: 0.82rem; font-variant-numeric: tabular-nums; }
.menu-card__add {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
}
.menu-card:hover .menu-card__add {
  color: #fff;
  border-color: var(--accent);
  background: rgba(61, 156, 253, 0.35);
}

@keyframes cart-flash {
  from { box-shadow: 0 0 0 2px var(--accent); background: rgba(61,156,253,0.12); }
  to   { box-shadow: none; background: var(--surface-2); }
}
.cart-row--flash {
  animation: cart-flash 0.45s ease-out;
}

/* ── Order panel (right): column with pinned footer ──
   Allow vertical scroll on the whole panel so the footer (Place Order + receipt actions)
   can grow without being clipped when the right column is height-constrained. */
.order-panel {
  flex: 0 0 33%;
  max-width: 400px;
  min-width: 272px;
  padding: 0;
  gap: 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 900px) {
  .order-panel {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
    min-height: min(48dvh, 520px);
  }
}

.order-panel__header {
  flex-shrink: 0;
  padding: 0.85rem 1.25rem 0.5rem;
  border-bottom: 1px solid var(--border);
}
.order-panel__title {
  margin: 0;
}
.order-type-block {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.order-type-block__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.order-type-block__select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.48rem 0.65rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}
.order-type-block__select:focus {
  outline: none;
  border-color: var(--accent);
}
.dine-in-row {
  display: block;
}
.dine-in-row__label {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.dine-in-row__label input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.42rem 0.6rem;
  color: var(--text);
  font-size: 0.88rem;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}
.dine-in-row__label input:focus {
  outline: none;
  border-color: var(--accent);
}
.order-panel__top {
  flex-shrink: 0;
  padding: 0.55rem 1rem 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: min(38vh, 320px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.order-panel__cart-zone {
  flex: 1 1 0;
  min-height: 7.5rem;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.25rem 0.35rem;
  overflow: hidden;
  gap: 0.25rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.08);
}
.cart-zone__label {
  flex-shrink: 0;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.order-panel__footer {
  flex-shrink: 0;
  padding: 0.65rem 1.25rem 1rem;
  border-top: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.2);
}

/* ── Takeout / delivery customer fields ── */
.customer-extra {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.customer-extra__hint {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.35;
  margin: 0;
}
.customer-extra__row {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.customer-extra__row input,
.customer-extra__row textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.42rem 0.6rem;
  color: var(--text);
  font-size: 0.88rem;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}
.customer-extra__row textarea {
  resize: vertical;
  min-height: 52px;
  font-family: inherit;
}
.customer-extra__row input:focus,
.customer-extra__row textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.order-notes-label {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.order-notes-label input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.42rem 0.6rem;
  color: var(--text);
  font-size: 0.88rem;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
}
.order-notes-label input:focus {
  outline: none;
  border-color: var(--accent);
}

.cart-list {
  flex: 1 1 0;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.15rem 0 0.35rem;
}
.cart-list .empty-hint {
  padding: 1rem 0.5rem;
  align-self: center;
}
.cart-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
}
.cart-row__top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 0.35rem 0.65rem;
}
.cart-row__title-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
  grid-column: 1 / -1;
}
.cart-row__name  { font-size: 0.85rem; font-weight: 600; min-width: 0; }
.cart-row__price { font-size: 0.82rem; color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; flex-shrink: 0; }
.cart-row__qty   {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px;
}
.cart-row__bom-loading {
  font-size: 0.72rem;
  color: var(--muted);
  font-style: italic;
}
.cart-row__chips-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.cart-row__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}
.cart-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  max-width: 100%;
  padding: 0.28rem 0.4rem 0.28rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
}
.cart-chip--omitted {
  text-decoration: line-through;
  opacity: 0.72;
  background: rgba(248, 113, 113, 0.08);
  border-color: rgba(248, 113, 113, 0.25);
}
.cart-chip__x,
.cart-chip__undo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  min-height: 1.65rem;
  margin: -0.12rem -0.2rem -0.12rem 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1;
  cursor: pointer;
}
.cart-chip__x:hover   { color: var(--red); background: rgba(248, 113, 113, 0.15); }
.cart-chip__undo:hover { color: var(--green); background: rgba(52, 211, 153, 0.12); }
.cart-row__extras-block {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.cart-extra-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.32rem 0.42rem;
  border-radius: 6px;
  background: rgba(167, 139, 250, 0.1);
  border: 1px solid rgba(167, 139, 250, 0.22);
  font-size: 0.75rem;
}
.cart-extra-line__name { font-weight: 600; color: var(--text); min-width: 0; }
.cart-extra-line__adj {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.cart-extra-line__rm {
  flex-shrink: 0;
  min-width: 1.75rem;
  min-height: 1.75rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
}
.cart-extra-line__rm:hover { color: var(--red); border-color: var(--red); }
.cart-addons {
  margin-top: 0.1rem;
}
.cart-addons__summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  border: 1px dashed rgba(61, 156, 253, 0.45);
  background: rgba(61, 156, 253, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}
.cart-addons__summary::-webkit-details-marker { display: none; }
.cart-addons__summary::after {
  content: "";
  display: inline-block;
  margin-left: 0.35rem;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.12rem);
  opacity: 0.85;
}
.cart-addons[open] > .cart-addons__summary::after {
  transform: rotate(-135deg) translateY(0.1rem);
}
.cart-addons__list {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  margin-top: 0.4rem;
  padding: 0.35rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border);
}
.cart-addons__pick {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.cart-addons__pick:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.cart-addons__pick:not(:disabled):hover {
  border-color: var(--accent);
  background: rgba(61, 156, 253, 0.08);
}
.cart-addons__pick-pr {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
}
.cart-addons__empty {
  font-size: 0.74rem;
  color: var(--muted);
  padding: 0.25rem 0.35rem;
}
.qty-num { font-size: 0.82rem; min-width: 18px; text-align: center; }

/* Cart footer: column layout holds an optional breakdown section + total row.
 * #cart-breakdown is hidden (via the [hidden] attribute) when tax rate is 0. */
.cart-footer {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.5rem 0 0;
  border-top: 1px solid var(--border);
  margin-top: 0.15rem;
}
.cart-footer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
/* Subtotal + tax rows get a hairline under them before the total */
#cart-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.1rem;
}
.cart-footer__amount { font-variant-numeric: tabular-nums; }
/* Total row overrides the muted default to stand out */
.cart-footer__row--total {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
}
.cart-label { font-size: 0.82rem; color: var(--muted); }
.cart-total  { font-size: 1.08rem; font-weight: 700; }

.btn--place-order {
  padding: 0.78rem 1rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.order-msg {
  font-size: 0.8rem;
  min-height: 1.1em;
  text-align: center;
}
.order-msg--ok  { color: var(--green); }
.order-msg--err { color: var(--red); }

/* Print Receipt feature — prominent control; pairing with #receipt-actions in index.html */
.receipt-actions[hidden] {
  display: none !important;
}
.btn-print-receipt {
  min-height: 3.1rem;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.print-receipt-hint {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: center;
}
.print-receipt-hint kbd {
  display: inline-block;
  padding: 0.12rem 0.35rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.68rem;
  font-family: inherit;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: opacity 0.12s, background 0.12s, border-color 0.12s;
  line-height: 1;
}
.btn:disabled        { opacity: 0.38; cursor: not-allowed; }
.btn--primary        { background: var(--accent); color: #fff; }
.btn--primary:not(:disabled):hover { opacity: 0.84; }
.btn--ghost          { background: transparent; border-color: var(--border); color: var(--muted); }
.btn--ghost:hover    { color: var(--text); border-color: rgba(255,255,255,0.18); }
.btn--danger         { background: transparent; border-color: transparent; color: var(--red); }
.btn--danger:hover   { border-color: var(--red); }
.btn--sm             { padding: 0.28rem 0.6rem; font-size: 0.78rem; }
.btn--full           { width: 100%; }
.btn--icon           { padding: 0.2rem 0.4rem; border-color: var(--border); background: none; color: var(--muted); border-radius: 4px; }
.btn--icon:hover     { color: var(--text); border-color: rgba(255,255,255,0.18); }

/* ── Orders section ── */
.orders-section {
  flex-shrink: 0;
  padding: 0.5rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.orders-section__title {
  margin: 0;
}
.orders-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.25rem;
}
.orders-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Recent orders: show/hide closed */
.orders-closed-toggle.orders-closed-toggle--on {
  background: rgba(251, 191, 36, 0.14);
  border-color: rgba(251, 191, 36, 0.55);
  color: var(--amber);
}
.orders-closed-toggle.orders-closed-toggle--on:hover {
  border-color: var(--amber);
  color: #fcd34d;
}

/* Auto-refresh toggle button states */
.auto-refresh--on {
  border-color: var(--accent);
  color: var(--accent);
}
.auto-refresh--off {
  border-color: var(--border);
  color: var(--muted);
}
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── Status chips ── */
.status {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.status--open            { background: var(--accent-dim); color: var(--accent); }
.status--in_progress     { background: var(--amber-dim);  color: var(--amber); }
.status--ready           { background: var(--purple-dim); color: var(--purple); }
.status--awaiting_pickup { background: var(--green-dim);  color: var(--green); }
.status--closed          { background: rgba(255,255,255,0.06); color: var(--muted); }
/* Informational label shown on POS for orders still in the kitchen */
.status--kitchen         { background: rgba(255,255,255,0.05); color: var(--muted); font-style: italic; }

/* ── Misc ── */
.muted  { color: var(--muted); font-size: 0.85rem; }
.center { text-align: center; padding: 1.5rem 0; }
