:root {
  --bg: #f4eee8;
  --panel: #fffdfb;
  --panel-soft: #faf5f0;
  --ink: #24150e;
  --ink-2: #5c4437;
  --muted: #9a8274;
  --line: #e9ded5;
  --accent: #c98b42;
  --accent-soft: #f8ebdc;
  --danger: #be3e4e;
  --danger-soft: #fff0f2;
  --success: #258557;
  --success-soft: #eaf7f0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 7px rgba(45,28,20,.05);
  --shadow: 0 14px 38px rgba(45,28,20,.09);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { min-height: 100dvh; background: var(--bg); color: var(--ink); -webkit-font-smoothing: antialiased; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
[hidden] { display: none !important; }

.section-kicker, .hero-kicker { color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.button { min-height: 44px; padding: 0 17px; border: 1px solid transparent; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 800; cursor: pointer; transition: .18s ease; }
.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(36,21,14,.15); }
.button.secondary { border-color: var(--line); background: #fff; color: var(--ink-2); }
.button.danger { border-color: #f0c8ce; background: var(--danger-soft); color: var(--danger); }
.button.wide { width: 100%; }
.input { width: 100%; min-height: 46px; padding: 10px 13px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); outline: none; transition: .18s ease; }
.input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent); }
.textarea { resize: vertical; min-height: 94px; }
.field { display: grid; gap: 7px; }
.field > span { color: var(--ink-2); font-size: 12px; font-weight: 800; }
.field small { color: var(--muted); font-weight: 600; }
.text-link { color: var(--muted); font-size: 12px; font-weight: 700; text-align: center; text-decoration: none; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 24px; max-width: min(90vw, 440px); padding: 12px 16px; border-radius: 12px; background: #24150e; color: #fff; box-shadow: var(--shadow); font-size: 13px; font-weight: 700; opacity: 0; transform: translate(-50%, 18px); pointer-events: none; transition: .22s ease; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.empty-state { min-height: 180px; padding: 24px; display: grid; place-items: center; align-content: center; gap: 8px; border: 1.5px dashed var(--line); border-radius: var(--radius); color: var(--muted); text-align: center; }
.empty-state span { font-size: 30px; }
.empty-state strong { color: var(--ink); }

/* Public QR menu */
.menu-page { background: #1a100b; }
.menu-hero { position: relative; overflow: hidden; min-height: 390px; padding: 20px clamp(20px,5vw,72px) 64px; color: #fff; background: radial-gradient(circle at 82% 14%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 30%), radial-gradient(circle at 15% 92%, rgba(255,255,255,.06), transparent 35%), linear-gradient(140deg,#110b08,#342015 72%,#1b100b); }
.menu-hero::after { content: ''; position: absolute; inset: auto -8% -120px 35%; height: 260px; border: 1px solid rgba(255,255,255,.06); border-radius: 50%; transform: rotate(-8deg); }
.menu-topline { position: relative; z-index: 1; max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mini-brand { display: inline-flex; align-items: center; gap: 10px; color: #fff; font-size: 13px; font-weight: 800; text-decoration: none; }
.mini-brand-mark { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.16); border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #f5bd77; font-family: Georgia, serif; font-size: 19px; }
.live-menu-badge { padding: 7px 10px; display: inline-flex; align-items: center; gap: 7px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.06); color: rgba(255,255,255,.68); font-size: 10px; font-weight: 800; }
.live-menu-badge i { width: 7px; height: 7px; border-radius: 50%; background: #49d485; box-shadow: 0 0 0 5px rgba(73,212,133,.12); }
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 78px auto 0; display: grid; justify-items: center; gap: 12px; text-align: center; }
.business-logo { width: 92px; height: 92px; margin-bottom: 4px; border-radius: 24px; object-fit: cover; border: 1px solid rgba(255,255,255,.16); box-shadow: 0 18px 45px rgba(0,0,0,.25); }
.hero-content h1 { max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px,8vw,78px); font-weight: 500; letter-spacing: -.045em; line-height: .98; }
.hero-content p { max-width: 540px; color: rgba(255,255,255,.66); font-size: clamp(14px,2vw,17px); line-height: 1.6; }
.contact-actions { margin-top: 12px; display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.contact-link { min-height: 40px; padding: 0 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.07); color: #fff; font-size: 11px; font-weight: 800; text-decoration: none; }
.category-nav { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(25,15,10,.92); backdrop-filter: blur(16px); }
.category-chips { max-width: 1180px; margin: 0 auto; padding: 12px 20px; display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.category-chips::-webkit-scrollbar { display: none; }
.category-chip { min-height: 38px; padding: 0 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.68); font-size: 11px; font-weight: 800; white-space: nowrap; cursor: pointer; }
.category-chip.active { border-color: color-mix(in srgb, var(--accent) 65%, transparent); background: color-mix(in srgb, var(--accent) 20%, transparent); color: #ffd8a7; }
.menu-main { min-height: 500px; padding: 46px max(20px,calc((100vw - 1180px)/2)) 80px; background: #20130d; }
.menu-intro { margin-bottom: 28px; display: flex; align-items: end; justify-content: space-between; gap: 18px; color: #fff; }
.menu-intro h2 { margin-top: 5px; font-family: Georgia, serif; font-size: clamp(29px,4vw,42px); font-weight: 500; }
.menu-intro p { max-width: 420px; color: rgba(255,255,255,.46); font-size: 12px; line-height: 1.6; text-align: right; }
.menu-status { min-height: 260px; display: grid; place-items: center; align-content: center; gap: 12px; color: rgba(255,255,255,.55); }
.loader { width: 34px; height: 34px; border: 3px solid rgba(255,255,255,.1); border-top-color: var(--accent); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.category-list { display: grid; gap: 18px; }
.menu-category { overflow: hidden; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: #2a1911; box-shadow: 0 18px 42px rgba(0,0,0,.12); }
.category-heading { width: 100%; min-height: 110px; padding: 22px; border: 0; display: grid; grid-template-columns: 66px minmax(0,1fr) auto; align-items: center; gap: 16px; background: linear-gradient(100deg,rgba(255,255,255,.025),rgba(255,255,255,.005)); color: #fff; text-align: left; cursor: pointer; }
.category-cover { width: 66px; height: 66px; overflow: hidden; border-radius: 16px; display: grid; place-items: center; background: #180e09; color: var(--accent); font-family: Georgia,serif; font-size: 25px; }
.category-cover img { width: 100%; height: 100%; object-fit: cover; }
.category-heading-copy { display: grid; gap: 5px; }
.category-heading-copy h3 { font-family: Georgia,serif; font-size: clamp(22px,3vw,31px); font-weight: 500; }
.category-heading-copy span { color: rgba(255,255,255,.43); font-size: 11px; }
.category-toggle { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; display: grid; place-items: center; color: var(--accent); transition: transform .2s; }
.menu-category.open .category-toggle { transform: rotate(180deg); }
.product-list { display: none; padding: 0 18px 18px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; }
.menu-category.open .product-list { display: grid; }
.menu-product { min-height: 118px; padding: 14px; display: grid; grid-template-columns: 78px minmax(0,1fr) auto; align-items: center; gap: 13px; border: 1px solid rgba(255,255,255,.06); border-radius: 16px; background: rgba(255,255,255,.035); }
.product-photo { width: 78px; height: 82px; overflow: hidden; border-radius: 12px; display: grid; place-items: center; background: #1a0f0a; color: rgba(255,255,255,.18); font-size: 26px; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-product-copy { min-width: 0; display: grid; gap: 6px; }
.menu-product-copy strong { color: #fff; font-size: 14px; }
.menu-product-copy p { color: rgba(255,255,255,.42); font-size: 11px; line-height: 1.45; }
.product-price { color: #efb96f; font-family: Georgia,serif; font-size: 20px; font-weight: 700; white-space: nowrap; }
.sold-out { opacity: .55; }
.sold-out .product-price { padding: 5px 8px; border-radius: 999px; background: rgba(190,62,78,.16); color: #f5a7b2; font-family: inherit; font-size: 9px; text-transform: uppercase; }
.menu-footer { padding: 46px 20px; display: grid; justify-items: center; gap: 7px; background: #130b07; color: rgba(255,255,255,.43); text-align: center; }
.menu-footer strong { color: #fff; font-family: Georgia,serif; font-size: 21px; }
.menu-footer p, .menu-footer small { max-width: 560px; font-size: 11px; line-height: 1.5; }

/* Login */
.login-layout { min-height: 100dvh; display: grid; grid-template-columns: minmax(0,1.1fr) minmax(380px,.9fr); }
.login-showcase { padding: clamp(38px,7vw,100px); display: grid; align-content: center; gap: 18px; color: #fff; background: radial-gradient(circle at 15% 18%,rgba(201,139,66,.24),transparent 30%),linear-gradient(145deg,#140c08,#3a2418); }
.login-showcase h1 { max-width: 680px; font-family: Georgia,serif; font-size: clamp(46px,6vw,78px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.login-showcase p { max-width: 580px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.6; }
.login-points { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; }
.login-points span { padding: 9px 11px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.74); font-size: 11px; font-weight: 800; }
.login-card { width: min(430px,calc(100% - 36px)); margin: auto; padding: 34px; display: grid; gap: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); }
.login-card h2 { margin-top: 5px; font-size: 28px; }
.login-card p { margin-top: 5px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.login-icon { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--accent-soft); font-size: 24px; }

/* Admin */
.admin-page { background: #f5f0eb; }
.admin-shell { min-height: 100dvh; display: grid; grid-template-columns: 240px minmax(0,1fr); }
.admin-sidebar { position: sticky; top: 0; height: 100dvh; padding: 22px 14px; display: flex; flex-direction: column; gap: 24px; background: #24150e; color: #fff; }
.admin-brand { padding: 0 8px; display: flex; align-items: center; gap: 11px; color: #fff; text-decoration: none; }
.admin-brand > span { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--accent); color: #fff; font-weight: 900; }
.admin-brand div { display: grid; gap: 2px; }
.admin-brand small { color: rgba(255,255,255,.42); font-size: 9px; }
.admin-nav { display: grid; gap: 5px; }
.admin-nav-item { width: 100%; min-height: 43px; padding: 0 12px; border: 0; border-radius: 11px; display: flex; align-items: center; gap: 10px; background: transparent; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 800; text-decoration: none; text-align: left; cursor: pointer; }
.admin-nav-item > span { width: 22px; color: rgba(255,255,255,.36); font-size: 16px; text-align: center; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,.08); color: #fff; }
.admin-nav-item.active > span { color: #efb96f; }
.admin-nav-item.logout { margin-top: auto; color: #e6a4ae; }
.admin-workspace { min-width: 0; padding: 26px clamp(18px,3vw,42px) 60px; }
.admin-header { margin-bottom: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.admin-header h1 { margin-top: 4px; font-size: clamp(25px,3vw,35px); }
.admin-header-actions { display: flex; gap: 8px; }
.admin-view { display: none; }
.admin-view.active { display: block; }
.summary-grid { margin-bottom: 16px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.summary-card { padding: 17px; display: grid; gap: 5px; border: 1px solid var(--line); border-radius: 15px; background: #fff; box-shadow: var(--shadow-sm); }
.summary-card small { color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; }
.summary-card strong { font-size: 24px; }
.menu-admin-layout { display: grid; grid-template-columns: 310px minmax(0,1fr); gap: 16px; align-items: start; }
.admin-card { border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm); }
.card-heading { min-height: 78px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 10px; border-bottom: 1px solid var(--line); }
.card-heading h2 { margin-top: 3px; font-size: 18px; }
.icon-button { width: 38px; height: 38px; border: 0; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: #fff; font-size: 21px; cursor: pointer; }
.admin-list { padding: 10px; display: grid; gap: 6px; }
.category-admin-item { width: 100%; padding: 10px; border: 1px solid transparent; border-radius: 12px; display: grid; grid-template-columns: 40px minmax(0,1fr) auto; align-items: center; gap: 10px; background: transparent; color: var(--ink); text-align: left; cursor: pointer; }
.category-admin-item:hover, .category-admin-item.active { border-color: var(--line); background: var(--panel-soft); }
.category-admin-thumb { width: 40px; height: 40px; overflow: hidden; border-radius: 10px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-weight: 900; }
.category-admin-thumb { padding: 0; border: 0; cursor: pointer; }
.category-admin-thumb img { width: 100%; height: 100%; object-fit: cover; }
.category-admin-copy { min-width: 0; display: grid; gap: 2px; }
.category-admin-copy { padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.category-admin-copy strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.category-admin-copy small { color: var(--muted); font-size: 9px; }
.row-actions { display: flex; gap: 4px; }
.row-icon { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--muted); cursor: pointer; }
.row-icon.danger { color: var(--danger); }
.search-box { min-width: 210px; min-height: 38px; padding: 0 10px; border: 1px solid var(--line); border-radius: 10px; display: flex; align-items: center; gap: 7px; background: var(--panel-soft); color: var(--muted); }
.search-box input { width: 100%; border: 0; outline: none; background: transparent; color: var(--ink); font-size: 12px; }
.product-admin-grid { padding: 14px; display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 10px; }
.product-admin-grid > .empty-state { grid-column: 1 / -1; }
.product-admin-card { min-width: 0; padding: 11px; display: grid; grid-template-columns: 62px minmax(0,1fr); gap: 11px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.product-admin-image { width: 62px; height: 70px; overflow: hidden; border-radius: 10px; display: grid; place-items: center; background: var(--panel-soft); color: var(--muted); font-size: 20px; }
.product-admin-image img { width: 100%; height: 100%; object-fit: cover; }
.product-admin-body { min-width: 0; display: grid; gap: 6px; }
.product-admin-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 8px; }
.product-admin-head strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.product-admin-price { color: var(--accent); font-family: Georgia,serif; font-size: 17px; font-weight: 700; }
.product-admin-meta { display: flex; gap: 5px; flex-wrap: wrap; }
.status-pill { padding: 4px 6px; border-radius: 999px; background: var(--success-soft); color: var(--success); font-size: 8px; font-weight: 900; text-transform: uppercase; }
.status-pill.off { background: var(--danger-soft); color: var(--danger); }
.product-admin-actions { margin-top: auto; display: flex; gap: 5px; }
.product-admin-actions button { min-height: 30px; padding: 0 9px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink-2); font-size: 9px; font-weight: 800; cursor: pointer; }
.product-admin-actions button.danger { color: var(--danger); }

.settings-grid { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(320px,.6fr); gap: 16px; align-items: start; }
.settings-main, .settings-side { padding-bottom: 18px; }
.settings-main .form-grid, .settings-side > :not(.card-heading) { margin-inline: 18px; }
.settings-main .form-grid { margin-top: 18px; }
.settings-side { display: grid; gap: 14px; }
.settings-side .card-heading { margin-inline: 0; }
.settings-side .button.wide { width: calc(100% - 36px); }
.form-grid { display: grid; gap: 13px; }
.form-grid.two { grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
.logo-preview { height: 150px; margin: 0 18px; overflow: hidden; border: 1.5px dashed var(--line); border-radius: 15px; display: grid; place-items: center; background: var(--panel-soft); color: var(--muted); font-weight: 900; }
.logo-preview img { width: 100%; height: 100%; object-fit: contain; }
.upload-field { min-height: 76px; padding: 13px; border: 1.5px dashed var(--line); border-radius: 13px; display: grid; place-items: center; gap: 3px; background: var(--panel-soft); color: var(--ink-2); text-align: center; cursor: pointer; }
.upload-field input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.upload-field span { font-size: 11px; font-weight: 900; }
.upload-field small { color: var(--muted); font-size: 9px; }
.color-input { width: 100%; height: 46px; padding: 4px; border: 1px solid var(--line); border-radius: 11px; background: #fff; cursor: pointer; }
.switch-row { display: flex; gap: 16px; flex-wrap: wrap; }
.switch-field { min-height: 46px; display: flex; align-items: center; gap: 9px; color: var(--ink-2); font-size: 12px; font-weight: 800; }
.switch-field input { width: 18px; height: 18px; accent-color: var(--accent); }

/* Dialogs */
.editor-dialog { width: min(620px,calc(100% - 24px)); max-height: 92dvh; margin: auto; padding: 0; border: 0; border-radius: 20px; background: transparent; box-shadow: var(--shadow); }
.editor-dialog::backdrop { background: rgba(29,18,13,.56); backdrop-filter: blur(5px); }
.editor-card { padding: 22px; display: grid; gap: 16px; background: #fff; }
.dialog-heading { display: flex; justify-content: space-between; gap: 12px; }
.dialog-heading h2 { margin-top: 4px; font-size: 24px; }
.dialog-close { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: var(--panel-soft); color: var(--ink); font-size: 21px; cursor: pointer; }
.dialog-actions { padding-top: 14px; display: flex; justify-content: flex-end; gap: 8px; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .product-list { grid-template-columns: 1fr; }
  .login-layout { grid-template-columns: 1fr; }
  .login-showcase { min-height: 40dvh; padding: 42px 24px; }
  .login-showcase h1 { font-size: 44px; }
  .login-card { margin-block: 32px; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: sticky; z-index: 20; height: auto; padding: 9px; flex-direction: row; align-items: center; overflow-x: auto; }
  .admin-brand div { display: none; }
  .admin-brand > span { width: 38px; height: 38px; }
  .admin-nav { display: flex; }
  .admin-nav-item { width: auto; white-space: nowrap; }
  .admin-nav-item.logout { margin: 0 0 0 auto; }
  .menu-admin-layout, .settings-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .menu-hero { min-height: 340px; padding-inline: 18px; }
  .hero-content { margin-top: 58px; }
  .menu-intro { align-items: start; flex-direction: column; }
  .menu-intro p { text-align: left; }
  .menu-main { padding-inline: 13px; }
  .category-heading { min-height: 92px; padding: 13px; grid-template-columns: 54px minmax(0,1fr) 34px; gap: 11px; }
  .category-cover { width: 54px; height: 54px; border-radius: 13px; }
  .category-heading-copy h3 { font-size: 21px; }
  .product-list { padding: 0 10px 10px; }
  .menu-product { min-height: 102px; padding: 10px; grid-template-columns: 62px minmax(0,1fr) auto; gap: 10px; }
  .product-photo { width: 62px; height: 70px; }
  .product-price { font-size: 17px; }
  .login-showcase { display: none; }
  .login-card { margin-block: 24px; padding: 25px; }
  .admin-sidebar { gap: 5px; }
  .admin-brand { padding: 0; }
  .admin-nav-item { min-height: 38px; padding-inline: 9px; font-size: 10px; }
  .admin-nav-item > span { display: none; }
  .admin-workspace { padding: 18px 12px 50px; }
  .admin-header { align-items: flex-start; flex-direction: column; }
  .admin-header-actions { width: 100%; }
  .admin-header-actions .button { flex: 1; min-width: 0; padding-inline: 10px; font-size: 10px; }
  .summary-grid { grid-template-columns: repeat(3,1fr); }
  .summary-card { padding: 12px; }
  .summary-card strong { font-size: 19px; }
  .card-heading { align-items: flex-start; flex-direction: column; }
  .category-manager .card-heading { flex-direction: row; }
  .search-box { width: 100%; min-width: 0; }
  .product-admin-grid { grid-template-columns: 1fr; padding: 10px; }
  .form-grid.two { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .editor-card { padding: 18px; }
}

@media (max-width: 390px) {
  .live-menu-badge { display: none; }
  .menu-product { grid-template-columns: 54px minmax(0,1fr); }
  .product-photo { width: 54px; height: 62px; }
  .product-price { grid-column: 2; justify-self: start; }
  .summary-card small { font-size: 7px; }
  .admin-brand { display: none; }
}

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