/* Витрина v2 — по мотивам dodopizza.kz: белая страница, sticky-категории, промо-баннеры, сетка карточек.
   Палитра бренда: жёлтый + чёрный (как на фото сетов), зелёный логотипа — только для бейджа «новинка».
   Подключается ОТДЕЛЬНО от site.css (главный скин не трогаем). Vanilla, mobile-first, Rubik. */

:root {
  --ink: #1b1a17; --ink-2: #4a4740; --muted: #85807a; --line: #e9e5db;
  --bg: #ffffff; --sand: #f6f4ee; --sand-2: #eeeae0;
  --accent: #FFD100; --accent-deep: #F2B900; --accent-soft: #FFF2B8; --on-accent: #1b1a17;
  --green: #159447;
  /* радиусы: кнопки — pill, карточки/баннеры — 20px, мелкое — 12px */
  --r-card: 20px; --r-btn: 999px; --r-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(40, 34, 10, .06); --shadow: 0 16px 40px rgba(40, 34, 10, .16);
  --font: 'Rubik', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --maxw: 1280px; --pad: clamp(16px, 4vw, 40px);
  --hdr: 64px; --catbar: 54px;
  --ph-ratio: 4 / 5; --md-ratio: 1 / 1;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; padding-bottom: 90px; }
@media (min-width: 760px) { body { padding-bottom: 0; } }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); }
h1, h2, h3, h4 { margin: 0; }

/* ---------- header ---------- */
.hd { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.hd-in { max-width: var(--maxw); margin: 0 auto; height: var(--hdr); display: flex; align-items: center; gap: 18px; padding: 0 var(--pad); }
.logo { display: flex; align-items: center; gap: 10px; min-width: 0; }
.logo img { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.logo-t { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.logo-t b { font-size: 17px; font-weight: 700; letter-spacing: -.01em; white-space: nowrap; }
.logo-t small { font-size: 12px; color: var(--muted); font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hd-info { display: none; padding-left: 18px; border-left: 1px solid var(--line); line-height: 1.2; }
.hd-info b { display: block; font-size: 14px; font-weight: 600; }
.hd-info span { font-size: 12.5px; color: var(--muted); }
@media (min-width: 900px) { .hd-info { display: block; } }
.hd-sp { flex: 1; }
.hd-phone { display: none; font-weight: 600; font-size: 14.5px; }
.hd-phone:hover { color: var(--accent-deep); }
@media (min-width: 640px) { .hd-phone { display: block; } }
.hd-cart { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: var(--r-btn); background: var(--accent); color: var(--on-accent); font-weight: 600; font-size: 14px; transition: background .2s, transform .12s; }
.hd-cart:hover { background: var(--accent-deep); }
.hd-cart:active { transform: scale(.97); }
.hd-cart .n { min-width: 22px; height: 22px; padding: 0 6px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; display: inline-grid; place-items: center; }

/* ---------- категории (sticky) ---------- */
.cats { position: sticky; top: var(--hdr); z-index: 30; background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 1px 0 var(--line); }
.cats-in { max-width: var(--maxw); margin: 0 auto; height: var(--catbar); display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; padding: 0 var(--pad); }
.cats-in::-webkit-scrollbar { display: none; }
.cat { flex: none; padding: 8px 14px; border-radius: var(--r-btn); font-weight: 500; font-size: 14px; color: var(--ink-2); white-space: nowrap; transition: background .2s, color .2s; }
.cat:hover { background: var(--sand); color: var(--ink); }
.cat.on { background: var(--accent); color: var(--on-accent); font-weight: 600; }

/* ---------- промо-баннеры ---------- */
.promo { max-width: var(--maxw); margin: 0 auto; padding: 16px var(--pad) 0; }
.promo-row { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; margin: 0 calc(-1 * var(--pad)); padding: 0 var(--pad); }
.promo-row::-webkit-scrollbar { display: none; }
.bn { flex: none; width: min(80vw, 340px); min-height: 200px; scroll-snap-align: start; position: relative; overflow: hidden; border-radius: var(--r-card); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: #fff; background: var(--ink); animation: up .6s cubic-bezier(.2, .7, .2, 1) both; }
.bn:nth-child(2) { animation-delay: .08s; } .bn:nth-child(3) { animation-delay: .16s; }
@media (min-width: 900px) {
  .promo-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; overflow: visible; margin: 0; padding: 0; gap: 16px; }
  .bn { width: auto; min-height: 250px; padding: 26px; }
}
.bn img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.bn-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 16, 8, .05) 25%, rgba(20, 16, 8, .82) 100%); }
.bn-t { position: relative; z-index: 2; }
.bn h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -.02em; line-height: 1.08; }
.bn p { margin: 6px 0 0; font-size: 14px; line-height: 1.4; opacity: .9; max-width: 34ch; }
.bn-cta { display: inline-flex; align-items: center; height: 38px; margin-top: 14px; padding: 0 16px; border: 0; border-radius: var(--r-btn); background: #fff; color: var(--ink); font: 600 14px var(--font); cursor: pointer; transition: transform .12s, background .2s; }
.bn-cta:hover { background: var(--accent); }
.bn-cta:active { transform: scale(.97); }
.bn.photo { cursor: pointer; }
.bn.yellow { background: var(--accent); color: var(--ink); }
.bn.yellow .bn-cta { background: var(--ink); color: #fff; }
.bn.yellow .bn-cta:hover { background: #000; }
.bn.dark { background: var(--ink); }
.bn.dark .bn-cta:hover { background: var(--accent); }
.bn-big { font-size: clamp(34px, 4vw, 46px); font-weight: 700; letter-spacing: -.03em; line-height: 1; display: block; margin-bottom: 6px; }

/* ---------- каталог ---------- */
.catalog { max-width: var(--maxw); margin: 0 auto; padding: 4px var(--pad) 40px; }
.sec { scroll-margin-top: calc(var(--hdr) + var(--catbar) + 8px); padding-top: 34px; }
.sec h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 700; letter-spacing: -.02em; margin: 0 0 16px; }
.sec h2 small { font-weight: 400; color: var(--muted); font-size: .58em; margin-left: 10px; letter-spacing: 0; }
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 760px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 20px 20px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, 1fr); gap: 28px 24px; } }

.card { display: flex; flex-direction: column; cursor: pointer; border-radius: var(--r-card); animation: up .5s cubic-bezier(.2, .7, .2, 1) both; animation-delay: calc(var(--i, 0) * 35ms); }
.card-ph { position: relative; aspect-ratio: var(--ph-ratio); border-radius: var(--r-card); overflow: hidden; background: var(--sand); }
.card-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .7, .2, 1); }
.card:hover .card-ph img { transform: scale(1.04); }
.badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; flex-wrap: wrap; z-index: 2; }
.bdg { font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 8px; background: var(--accent); color: var(--on-accent); }
.bdg.new { background: var(--green); color: #fff; }
.bdg.spicy { background: var(--ink); color: #fff; }
.card-b { display: flex; flex-direction: column; gap: 5px; padding: 12px 2px 0; flex: 1; }
.card-n { font-weight: 600; font-size: 16px; line-height: 1.25; letter-spacing: -.01em; }
.card-w { font-size: 13px; color: var(--muted); }
.card-d { font-size: 13px; color: var(--muted); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-f { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 10px; }
.price { font-weight: 700; font-size: 16px; white-space: nowrap; }
.price s { color: var(--muted); font-weight: 400; font-size: 13px; margin-left: 6px; }
.add { flex: none; height: 36px; padding: 0 16px; border: 0; border-radius: var(--r-btn); background: var(--accent-soft); color: var(--ink); font: 600 14px var(--font); cursor: pointer; transition: background .2s, transform .12s; }
.add:hover { background: var(--accent); }
.add:active { transform: scale(.95); }
.add.done { animation: pop .4s ease; background: var(--accent); }

/* карточка без фото — плитка на песочном фоне */
.card.txt { background: var(--sand); padding: 16px 16px 14px; min-height: 118px; transition: background .2s; }
.card.txt:hover { background: var(--sand-2); }
.card.txt .card-b { padding: 0; }
.card.txt .add { background: #fff; }
.card.txt .add:hover { background: var(--accent); }

/* мобильный список — как у Dodo: фото слева, текст справа */
@media (max-width: 639px) {
  .grid { grid-template-columns: 1fr; gap: 0; }
  .card { flex-direction: row; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); border-radius: 0; animation: none; }
  .card-ph { width: 116px; flex: none; border-radius: 14px; align-self: center; }
  .badges { top: 8px; left: 8px; }
  .bdg { font-size: 10px; padding: 3px 7px; }
  .card-b { padding: 2px 0 0; }
  .card-n { font-size: 15px; }
  .card.txt { background: none; padding: 12px 0; min-height: 0; }
  .card.txt .card-b { flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
  .card.txt .card-n { flex: 1 1 140px; }
  .card.txt .card-d { flex-basis: 100%; order: 3; }
  .card.txt .card-f { margin: 0; padding: 0; gap: 14px; }
  .card.txt .add { background: var(--accent-soft); }
  .sec { padding-top: 26px; }
  .sec h2 { font-size: 22px; margin-bottom: 4px; }
}

/* скелетон загрузки */
.sk { border-radius: var(--r-card); background: linear-gradient(90deg, var(--sand) 25%, var(--sand-2) 50%, var(--sand) 75%); background-size: 200% 100%; animation: shimmer 1.4s linear infinite; aspect-ratio: var(--ph-ratio); }
.sk-line { height: 14px; border-radius: 6px; margin-top: 12px; width: 70%; aspect-ratio: auto; }
.empty { color: var(--muted); text-align: center; padding: 50px 0; font-size: 15px; }
.empty button { margin-top: 12px; height: 40px; padding: 0 18px; border: 0; border-radius: var(--r-btn); background: var(--accent); font: 600 14px var(--font); cursor: pointer; }

/* ---------- футер (тёмный) ---------- */
.ft { background: var(--ink); color: #f3f1ea; margin-top: 48px; padding: 44px var(--pad) 24px; }
.ft-in { max-width: var(--maxw); margin: 0 auto; display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .ft-in { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; } }
.ft .logo img { background: #fff; padding: 2px; }
.ft .logo-t b { color: #fff; }
.ft .logo-t small { color: #a39e94; }
.ft h4 { font-size: 13px; font-weight: 500; color: #a39e94; margin: 0 0 10px; }
.ft-col a { display: block; font-size: 14.5px; padding: 4px 0; font-weight: 500; color: #fff; }
.ft-col a:hover { color: var(--accent); }
.ft-brand p { margin: 12px 0 0; color: #c9c4b9; font-size: 14px; line-height: 1.5; max-width: 36ch; }
.ft-phone { display: inline-block; font-size: 22px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 6px; color: var(--accent) !important; }
.ft-col .txt { font-size: 14.5px; padding: 4px 0; color: #c9c4b9; }
.ft-bot { max-width: var(--maxw); margin: 34px auto 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 18px; font-size: 13px; color: #a39e94; }

/* ---------- плавающая корзина (мобила) + тост ---------- */
.cart-fab { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50; display: flex; align-items: center; justify-content: space-between; height: 54px; padding: 0 20px; border-radius: var(--r-btn); background: var(--ink); color: #fff; font-weight: 600; font-size: 15px; box-shadow: var(--shadow); transform: translateY(140%); transition: transform .4s cubic-bezier(.2, .9, .25, 1.2); }
.cart-fab.show { transform: none; }
.cart-fab.bump { animation: bump .4s ease; }
.cart-fab .cart-count { background: var(--accent); color: var(--on-accent); min-width: 24px; height: 24px; border-radius: 999px; display: inline-grid; place-items: center; font-size: 13px; padding: 0 7px; margin-right: 10px; }
.cart-fab .dot { display: none; }
.cart-fab .l { display: flex; align-items: center; }
@media (min-width: 760px) { .cart-fab { display: none; } }
.toast { position: fixed; left: 50%; bottom: 84px; transform: translateX(-50%) translateY(8px); z-index: 60; background: var(--ink); color: #fff; padding: 12px 20px; border-radius: var(--r-btn); font-weight: 500; font-size: 14px; opacity: 0; transition: opacity .25s, transform .25s; pointer-events: none; box-shadow: var(--shadow); white-space: nowrap; max-width: calc(100vw - 32px); overflow: hidden; text-overflow: ellipsis; }
@media (min-width: 760px) { .toast { bottom: 28px; } }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.hidden { display: none !important; }

/* ---------- модалка товара ---------- */
.md { position: fixed; inset: 0; z-index: 70; display: flex; align-items: flex-end; justify-content: center; visibility: hidden; }
.md.open { visibility: visible; }
.md-bd { position: absolute; inset: 0; background: rgba(27, 26, 23, .55); opacity: 0; transition: opacity .3s; }
.md.open .md-bd { opacity: 1; }
.md-c { position: relative; background: #fff; width: 100%; max-height: 92dvh; overflow: auto; border-radius: 24px 24px 0 0; transform: translateY(100%); transition: transform .35s cubic-bezier(.2, .8, .25, 1); }
.md.open .md-c { transform: none; }
@media (min-width: 760px) {
  .md { align-items: center; padding: 24px; }
  /* одна колонка: крупное фото сверху, текст и размер под ним */
  .md-c { width: min(500px, 100%); max-height: 90vh; border-radius: 28px; transform: translateY(16px) scale(.98); }
}
.md-x { position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .92); box-shadow: var(--shadow-sm); font-size: 22px; line-height: 1; cursor: pointer; color: var(--ink); }
/* фото не режем: вписываем целиком, а фон добираем размытой копией того же кадра */
.md-ph { background: var(--sand); aspect-ratio: var(--md-ratio); position: relative; overflow: hidden; }
.md-ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.md-ph .md-blur { object-fit: cover; filter: blur(28px) saturate(1.25); transform: scale(1.25); opacity: .5; }
.md-c.noph .md-ph { display: none; }
.md-b { padding: 22px 22px 24px; display: flex; flex-direction: column; min-height: 100%; }
@media (min-width: 760px) { .md-b { padding: 30px 30px 28px; } }
.md-b h3 { font-size: 24px; font-weight: 700; letter-spacing: -.02em; line-height: 1.15; padding-right: 36px; }
.md-w { color: var(--muted); font-size: 14px; margin-top: 6px; }
.md-d { margin: 12px 0 0; color: var(--ink-2); font-size: 15px; line-height: 1.55; }
.md-lbl { margin-top: 16px; font-size: 13px; color: var(--muted); font-weight: 500; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.chip { background: var(--sand); border-radius: 999px; padding: 6px 11px; font-size: 13px; font-weight: 500; }
/* выбор размера/порции */
.md-sz { margin-top: 18px; }
.md-sz .md-lbl { margin-top: 0; }
.sz { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.sz button { flex: 1 1 0; min-width: 96px; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; padding: 10px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: #fff; color: var(--ink); font: 600 14px/1.15 var(--font); cursor: pointer; transition: border-color .15s, background .15s; }
.sz button small { font-weight: 500; font-size: 12.5px; color: var(--muted); }
.sz button:hover { border-color: var(--ink-2); }
.sz button.on { border-color: var(--accent); background: var(--accent-soft); }
.sz button.on small { color: var(--ink-2); }
.md-f { margin-top: auto; padding-top: 22px; }
.md-add { width: 100%; height: 52px; border: 0; border-radius: var(--r-btn); background: var(--accent); color: var(--on-accent); font: 600 16px var(--font); cursor: pointer; transition: background .2s, transform .12s; }
.md-add:hover { background: var(--accent-deep); }
.md-add:active { transform: scale(.98); }

@keyframes up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes pop { 0% { transform: scale(1); } 45% { transform: scale(1.12); } 100% { transform: scale(1); } }
@keyframes bump { 40% { transform: translateY(-8px) scale(1.02); } }
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .card, .bn { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- внутренние страницы: корзина / оформление / успех ---------- */
.page { max-width: 640px; margin: 0 auto; padding: 22px var(--pad) 60px; }
.page h1 { font-size: clamp(26px, 4vw, 34px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px; }
.back-link { display: inline-flex; gap: 6px; color: var(--muted); font-weight: 500; font-size: 14px; margin-bottom: 14px; }
.back-link:hover { color: var(--ink); }
.cart-row { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 72px; height: 72px; border-radius: 14px; background: var(--sand) center/cover; flex: none; }
.cart-main { flex: 1; min-width: 0; }
.cart-row-name { font-weight: 600; font-size: 15.5px; line-height: 1.25; }
.cart-row-unit { color: var(--muted); font-size: 13px; margin-top: 3px; }
.cart-row-ctl { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 10px; }
.qty { display: inline-flex; align-items: center; gap: 6px; background: var(--sand); border-radius: var(--r-btn); padding: 4px; }
.qty button { width: 32px; height: 32px; border-radius: 50%; border: 0; background: #fff; cursor: pointer; font-size: 18px; line-height: 1; color: var(--ink); box-shadow: var(--shadow-sm); transition: background .2s, transform .12s; }
.qty button:hover { background: var(--accent); }
.qty button:active { transform: scale(.92); }
.qty span { min-width: 22px; text-align: center; font-weight: 600; font-size: 15px; }
.cart-line-total { font-weight: 700; font-size: 16px; white-space: nowrap; }
.cart-del { flex: none; width: 30px; height: 30px; border: 0; background: transparent; color: var(--muted); font-size: 22px; line-height: 1; cursor: pointer; border-radius: 50%; transition: color .2s, background .2s; }
.cart-del:hover { color: var(--ink); background: var(--sand); }
.summary { margin: 22px 0; background: var(--sand); border-radius: var(--r-card); padding: 18px 20px; }
.summary .row { display: flex; justify-content: space-between; padding: 7px 0; color: var(--ink-2); font-size: 15px; }
.summary .row.total { font-size: 19px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; }
.btn-primary { display: block; width: 100%; text-align: center; cursor: pointer; border: 0; background: var(--accent); color: var(--on-accent); border-radius: var(--r-btn); padding: 17px 24px; font: 600 16px var(--font); transition: background .2s, transform .12s; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-primary:active { transform: scale(.99); }
.btn-primary:disabled { opacity: .6; cursor: default; }
.btn-primary.inline { display: inline-block; width: auto; margin-top: 16px; }
.seg { display: flex; gap: 4px; background: var(--sand); padding: 4px; border-radius: var(--r-btn); margin: 18px 0 20px; }
.seg-btn { flex: 1; padding: 12px; border: 0; background: transparent; border-radius: var(--r-btn); cursor: pointer; font: 600 15px var(--font); color: var(--muted); transition: background .2s, color .2s; }
.seg-btn.active { background: var(--accent); color: var(--on-accent); }
.pickup-info { background: var(--sand); border-radius: var(--r-card); padding: 16px 18px; margin-bottom: 18px; font-size: 14.5px; line-height: 1.5; }
.pickup-info a { display: inline-block; margin-top: 4px; color: var(--ink); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.fld { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fld > span { font-size: 13px; color: var(--ink-2); font-weight: 500; }
.fld input, .fld select, .fld textarea { padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm); font: 400 15px var(--font); background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.fld input::placeholder { color: #9d978f; }
.fld input:focus, .fld select:focus, .fld textarea:focus { outline: none; border-color: var(--accent-deep); box-shadow: 0 0 0 3px var(--accent-soft); }
.pay-options { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-opt { padding: 11px 16px; border: 1.5px solid var(--line); border-radius: var(--r-btn); background: #fff; cursor: pointer; font: 500 14px var(--font); color: var(--ink); transition: background .2s, border-color .2s; }
.pay-opt.active { border-color: var(--accent); background: var(--accent-soft); font-weight: 600; }
.err-box { background: #fdeceb; color: #a12b1f; padding: 13px 16px; border-radius: var(--r-sm); margin: 14px 0; font-weight: 500; font-size: 14px; }
.success-page { text-align: center; padding-top: clamp(30px, 8vw, 70px); }
.success-logo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 22px; animation: up .6s cubic-bezier(.2, .7, .2, 1) both; }
.order-num { display: inline-block; margin-top: 10px; background: var(--accent); color: var(--on-accent); padding: 11px 22px; border-radius: var(--r-btn); font-weight: 600; }
.muted { color: var(--muted); font-size: 15px; }
.muted a { color: var(--ink); font-weight: 600; }
