@font-face {
  font-family: Vazirmatn;
  src: url("/assets/fonts/Vazirmatn-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font: Vazirmatn, Tahoma, system-ui, sans-serif;
  --primary: #9f1d23;
  --primary-hover: #7f171c;
  --primary-pressed: #6a1218;
  --primary-soft: #f6ecec;
  --secondary: #2c2c2c;
  --bg: #f4f1ec;
  --surface: #ffffff;
  --text: #141414;
  --muted: #5e5a56;
  --faint: #8a847c;
  --success: #1f7a4d;
  --success-soft: #e8f5ee;
  --warning: #9a6414;
  --warning-soft: #f8efd9;
  --error: #b42318;
  --error-soft: #f8e8e6;
  --border: #e4dfd7;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(20, 20, 20, 0.04);
  --nav-h: 4.25rem;
  --top-h: 3.5rem;
  --side-w: 15.25rem;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --focus: 0 0 0 2px #fff, 0 0 0 4px var(--primary);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--bg); color: var(--text); font-family: var(--font); }
body { padding: 0; -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
button { color: inherit; }
.app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 52rem;
  margin: 0 auto;
  background: var(--bg);
  position: relative;
}
.app-main { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.boot, .state { padding: 2rem 1.25rem; color: var(--muted); text-align: center; }

.sidenav { display: none; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  height: calc(var(--top-h) + var(--safe-t));
  padding-top: var(--safe-t);
  display: grid; grid-template-columns: 2.75rem 1fr 2.75rem;
  align-items: center; gap: .5rem;
  padding-inline: .75rem;
  background: rgba(244, 241, 236, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topbar h1 { margin: 0; font-size: 1.05rem; font-weight: 700; text-align: center; letter-spacing: -0.01em; }
.icon-btn {
  width: 2.75rem; height: 2.75rem; border: 0; border-radius: 999px;
  background: transparent; color: var(--text); display: grid; place-items: center; cursor: pointer;
  position: relative;
}
.icon-btn:hover { background: rgba(20, 20, 20, 0.05); }
.icon-btn:focus-visible,
.btn:focus-visible,
.card:focus-visible,
.svc-card:focus-visible,
.menu-item:focus-visible,
.chip:focus-visible,
.note-card:focus-visible,
.order-card:focus-visible,
.list-card:focus-visible,
.pay-method:focus-visible,
.addr-card:focus-visible { outline: none; box-shadow: var(--focus); }
.icon-btn svg { width: 1.35rem; height: 1.35rem; }
.badge {
  position: absolute; top: .3rem; left: .3rem; min-width: 1.1rem; height: 1.1rem;
  background: var(--primary); color: #fff; border-radius: 999px; font-size: .65rem; font-weight: 800;
  display: grid; place-items: center; padding: 0 .25rem; line-height: 1;
}

.screen { flex: 1; padding: 1rem 1rem calc(var(--nav-h) + var(--safe-b) + .9rem); }
.page-lead { margin: 0 0 1.15rem; }
.page-lead p { margin: .35rem 0 0; }
h2.sec {
  margin: 1.5rem 0 .75rem;
  font-size: .8rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .02em;
}
.sec-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: .75rem;
  margin: 1.5rem 0 .75rem;
}
.sec-row .sec { margin: 0; }
.sec-row a, .sec-row button.link {
  border: 0; background: none; color: var(--primary); font-weight: 700; font-size: .85rem; cursor: pointer; padding: 0;
}
.hello { font-size: 1.45rem; font-weight: 800; margin: .15rem 0 .2rem; letter-spacing: -0.02em; }
.muted { color: var(--muted); font-size: .92rem; line-height: 1.7; }
.faint { color: var(--faint); font-size: .82rem; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.list { display: flex; flex-direction: column; gap: .75rem; }
.card {
  display: block; width: 100%; text-align: right; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem;
  box-shadow: var(--shadow); color: inherit; text-decoration: none;
}
button.card, .card[data-go] { cursor: pointer; }
.card h3 { margin: 0 0 .35rem; font-size: 1rem; }
.card p { margin: 0; color: var(--muted); font-size: .85rem; line-height: 1.6; }
.card.wide { grid-column: 1 / -1; }
.grid.svc { grid-template-columns: 1fr 1fr; gap: .75rem; }

.svc-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: .45rem;
  width: 100%; text-align: right; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem;
  box-shadow: var(--shadow); cursor: pointer; color: inherit; min-height: 8.25rem;
  position: relative;
}
.svc-card h3 { margin: 0; font-size: .98rem; font-weight: 800; line-height: 1.4; }
.svc-card p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.55; }
.svc-ico {
  width: 2.35rem; height: 2.35rem; border-radius: 12px;
  background: #f3eeea; color: var(--secondary);
  display: grid; place-items: center; margin-bottom: .15rem;
}
.svc-ico svg { width: 1.2rem; height: 1.2rem; }
.svc-card.featured { border-color: #ead0d2; }
.svc-card.featured .svc-ico { background: var(--primary-soft); color: var(--primary); }
.svc-card.featured h3 { color: var(--primary); }
.svc-badge {
  position: absolute;
  top: .55rem;
  inset-inline-end: .55rem;
  background: var(--primary);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  border-radius: 999px;
  padding: .18rem .55rem;
}
.card.featured {
  position: relative;
  background: var(--surface);
  border-color: #ead0d2;
  min-height: 7.25rem;
}
.card.featured h3 { color: var(--primary); }

.row { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.price { color: var(--primary); font-weight: 800; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  border: 1px solid var(--border); background: var(--surface); border-radius: 999px;
  padding: .55rem .9rem; min-height: 2.75rem; cursor: pointer; font-weight: 700; font-size: .85rem;
}
.chip.on { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 3rem; width: 100%; border: 0; border-radius: 14px; padding: .75rem 1rem;
  font-weight: 700; cursor: pointer;
}
.btn.primary { background: var(--primary); color: #fff; }
.btn.primary:hover { background: var(--primary-hover); }
.btn.primary:disabled { opacity: .45; cursor: not-allowed; }
.btn.ghost { background: transparent; border: 1px solid var(--border); }
.btn.ghost:hover { background: #faf8f5; }
.btn.warn { background: var(--error-soft); color: var(--error); }
.btn.inline { width: auto; min-width: 2.75rem; padding-inline: 1rem; }
.btn.busy { pointer-events: none; opacity: .7; }
.sticky-cta {
  position: sticky; bottom: calc(var(--nav-h) + var(--safe-b) + .4rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: .75rem; display: flex; gap: .75rem; align-items: center; box-shadow: 0 8px 24px rgba(20,20,20,.08);
  z-index: 15;
}
.field { display: flex; flex-direction: column; gap: .35rem; margin: .75rem 0; }
.field label { font-size: .85rem; color: var(--muted); font-weight: 600; }
.field .req { color: var(--primary); }
.field input, .field textarea, .field select {
  min-height: 3rem; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); padding: .75rem .9rem; font-size: 16px; color: var(--text);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(159, 29, 35, 0.12);
}
.field .hint { font-size: .78rem; color: var(--faint); }
.field.error input, .field.error textarea { border-color: var(--error); }
.field .ferr { font-size: .8rem; color: var(--error); min-height: 1.1em; }

.nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: repeat(5, 1fr);
  height: calc(var(--nav-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  background: #fff; border-top: 1px solid var(--border); max-width: 52rem; margin: 0 auto;
}
.nav button {
  border: 0; background: transparent; color: var(--faint); font-size: .7rem; font-weight: 700;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .15rem; cursor: pointer;
  position: relative; min-height: 44px;
}
.nav button.on { color: var(--primary); }
.nav svg, .sidenav svg { width: 1.35rem; height: 1.35rem; }
.nav .badge, .sidenav .badge { top: .15rem; left: calc(50% - 1.35rem); }

.sk {
  height: 4.5rem; border-radius: var(--radius);
  background: linear-gradient(90deg, #efebe4, #fff, #efebe4);
  background-size: 200% 100%; animation: sk 1.2s infinite; margin-bottom: .75rem;
}
.sk.sm { height: 1.1rem; width: 42%; }
.sk.md { height: 1.35rem; width: 70%; }
.sk.hero { height: 7rem; }
@keyframes sk { to { background-position: -200% 0; } }

.empty, .error, .okbox, .gate {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.25rem; text-align: center;
}
.gate { max-width: 26rem; margin: 2rem auto 0; }
.empty h3, .gate h2 { margin: 0 0 .4rem; font-size: 1.05rem; }
.empty p, .gate p { margin: 0 0 1rem; }
.empty .btn, .gate .btn { margin-top: .35rem; }
.error { border-color: #e7c9cb; color: var(--error); background: var(--error-soft); }
.okbox { color: var(--success); background: var(--success-soft); border-color: #cfe5d8; }
.banner {
  display: block; width: 100%;
  background: var(--primary-soft); color: var(--primary);
  border-radius: 12px; padding: .85rem 1rem; margin-bottom: .75rem;
  font-weight: 700; text-decoration: none; border: 0; text-align: right; cursor: pointer;
  overflow-wrap: anywhere;
}
.banner [dir="ltr"] { unicode-bidi: isolate; direction: ltr; }
.banner.ok { background: var(--success-soft); color: var(--success); }
.banner.warn { background: var(--warning-soft); color: var(--warning); }
.tag {
  display: inline-flex; align-items: center;
  background: #efebe4; color: var(--secondary);
  border-radius: 999px; padding: .2rem .6rem; font-size: .75rem; font-weight: 700; white-space: nowrap;
}
.tag.ok { background: var(--success-soft); color: var(--success); }
.tag.warn { background: var(--warning-soft); color: var(--warning); }
.tag.bad { background: var(--error-soft); color: var(--error); }
.msg { background: #efebe4; border-radius: 12px; padding: .75rem 1rem; margin: .4rem 0; }
.msg.admin { background: var(--primary-soft); }
.hidden { display: none !important; }

.hero-actions { display: flex; flex-direction: column; gap: .6rem; margin: 1rem 0 1.15rem; }
.action-card {
  display: flex; align-items: center; gap: .85rem;
  width: 100%; text-align: right; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: .9rem 1rem;
  box-shadow: var(--shadow); cursor: pointer;
}
.action-card strong { display: block; font-size: .95rem; }
.action-card span { color: var(--muted); font-size: .8rem; }
.action-card .go { color: var(--faint); margin-inline-start: auto; font-size: 1.2rem; }

.order-card, .note-card {
  display: block; width: 100%; text-align: right; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem;
  box-shadow: var(--shadow); cursor: pointer; color: inherit;
}
.order-card .order-main {
  display: block; width: 100%; border: 0; background: transparent;
  text-align: right; padding: 0; cursor: pointer; color: inherit;
}
.btn svg { width: 1.2rem; height: 1.2rem; }
.copy-row .btn { width: 3rem; padding: 0; flex-shrink: 0; }
.order-card .meta, .note-card .meta { margin-top: .45rem; color: var(--muted); font-size: .85rem; }
.order-card .pay-mini { margin-top: .75rem; }
.note-card.unread { border-color: #ead0d2; background: #fffaf9; }
.note-card .dot {
  width: .5rem; height: .5rem; border-radius: 999px; background: var(--primary); flex-shrink: 0;
}
.note-card .body { display: none; margin-top: .65rem; color: var(--text); font-size: .9rem; line-height: 1.7; white-space: pre-wrap; }
.note-card.open .body { display: block; }
.note-card .note-cta { margin-top: .75rem; display: none; }
.note-card.open .note-cta { display: block; }

.ident {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.15rem 1.1rem; box-shadow: var(--shadow); margin-bottom: 1rem;
}
.ident .sub { margin: .2rem 0 0; }
.wallet-chip {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  margin-top: .9rem; padding: .8rem 1rem; border-radius: 12px; background: #f7f4f0;
  border: 0; width: 100%; cursor: pointer; text-align: right;
}
.wallet-chip strong { color: var(--primary); font-size: 1.05rem; }

.menu-list {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow); margin: .75rem 0 1.1rem;
}
.menu-item {
  display: flex; align-items: center; gap: .75rem; width: 100%;
  padding: .95rem 1rem; border: 0; background: transparent; cursor: pointer; text-align: right;
  border-bottom: 1px solid var(--border); min-height: 3.25rem;
}
.menu-item:last-child { border-bottom: 0; }
.menu-item .ico {
  width: 2.1rem; height: 2.1rem; border-radius: 10px; background: #f3eeea;
  display: grid; place-items: center; color: var(--secondary); flex-shrink: 0;
}
.menu-item .ico svg { width: 1.1rem; height: 1.1rem; }
.menu-item span { flex: 1; font-weight: 700; }
.menu-item .go { color: var(--faint); }

.pref-row {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
}
.pref-row:last-child { border-bottom: 0; }
.pref-row input { width: 1.15rem; height: 1.15rem; accent-color: var(--primary); }
.pref-row .locked { font-size: .75rem; color: var(--faint); display: block; }
.adv { margin-top: 1.25rem; }
.adv summary {
  cursor: pointer; font-weight: 800; color: var(--muted); font-size: .9rem; padding: .4rem 0;
}
.copy-row { display: flex; gap: .5rem; align-items: stretch; }
.copy-row input { flex: 1; min-height: 3rem; border-radius: 12px; border: 1px solid var(--border); padding: .75rem; background: #faf8f5; }

.filters { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .25rem; margin-bottom: .85rem; -webkit-overflow-scrolling: touch; }
.filters .chip { flex: 0 0 auto; }

.detail-hero { margin-bottom: 1rem; }
.detail-hero .price { font-size: 1.25rem; display: block; margin-top: .35rem; }
.kv { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.kv:last-child { border-bottom: 0; }
.kv span { color: var(--muted); }

.toast {
  position: fixed; z-index: 80; left: 50%; bottom: calc(var(--nav-h) + var(--safe-b) + 1rem);
  transform: translateX(-50%);
  background: var(--secondary); color: #fff; border-radius: 999px;
  padding: .7rem 1.15rem; font-size: .88rem; font-weight: 700;
  max-width: calc(100% - 2rem); box-shadow: 0 8px 24px rgba(20,20,20,.16);
}
.toast.ok { background: var(--success); }
.toast.err { background: var(--error); }

.dlg-back {
  position: fixed; inset: 0; z-index: 90; background: rgba(20,20,20,.4);
  display: grid; place-items: end center; padding: 1rem;
}
.dlg {
  width: min(100%, 26rem); background: var(--surface); border-radius: 18px;
  padding: 1.25rem; box-shadow: 0 16px 40px rgba(20,20,20,.18);
}
.dlg h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.dlg p { margin: 0 0 1.1rem; }
.dlg-actions { display: flex; gap: .6rem; }
.dlg-actions .btn { flex: 1; }

@media (min-width: 720px) {
  .hero-actions { flex-direction: row; }
  .hero-actions .btn { width: auto; min-width: 10rem; }
  .grid.regs { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .grid.svc { grid-template-columns: 1fr 1fr; }
  .screen { padding-inline: 1.5rem; }
}

@media (min-width: 1024px) {
  html, body { background: #ebe6df; }
  .app {
    flex-direction: row;
    max-width: 72rem;
    min-height: calc(100vh - 2.5rem);
    margin: 1.25rem auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow);
  }
  .sidenav {
    display: flex; flex-direction: column; gap: .25rem;
    width: var(--side-w); flex-shrink: 0;
    background: #fff; border-inline-end: 1px solid var(--border);
    padding: 1.25rem .85rem 1.25rem;
  }
  .sidenav .brand {
    font-weight: 800; font-size: 1.05rem; padding: .35rem .75rem 1rem;
  }
  .sidenav button {
    display: flex; align-items: center; gap: .7rem;
    width: 100%; border: 0; background: transparent; color: var(--muted);
    border-radius: 12px; padding: .7rem .75rem; font-weight: 700; cursor: pointer;
    text-align: right; position: relative; min-height: 2.75rem;
  }
  .sidenav button.on { background: var(--primary-soft); color: var(--primary); }
  .sidenav button:hover { background: #f7f4f0; }
  .sidenav button.on:hover { background: var(--primary-soft); }
  .sidenav .badge { position: static; margin-inline-start: auto; }
  .nav { display: none; }
  .topbar { background: rgba(244, 241, 236, .96); }
  .topbar .icon-btn.bell-btn { display: none; }
  .topbar.tab-root { display: none; }
  .screen { padding: 1.35rem 1.75rem 2rem; }
  .sticky-cta { bottom: 1rem; }
  .toast { bottom: 1.5rem; }
  .dlg-back { place-items: center; }
}

@media (min-width: 1280px) {
  .app { max-width: 80rem; }
  .grid.svc { grid-template-columns: repeat(3, 1fr); }
}

.search-box { margin-bottom: .85rem; }
.search-box input {
  width: 100%; min-height: 3rem; border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); padding: .75rem .9rem; font-size: 16px; color: var(--text);
}
.search-box input:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(159, 29, 35, 0.12);
}

.list-card {
  display: block; width: 100%; text-align: right; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem;
  box-shadow: var(--shadow); cursor: pointer; color: inherit;
}
.list-card .meta { margin: .4rem 0 0; color: var(--muted); font-size: .85rem; line-height: 1.55; }
.list-card .price { display: block; margin-top: .45rem; font-size: .92rem; }
.list-card .tags { display: flex; flex-wrap: wrap; gap: .35rem; flex-shrink: 0; }

@media (max-width: 719px) {
  .list-card .row { align-items: flex-start; }
  .list-card .tags { max-width: 42%; justify-content: flex-end; }
}

.prog {
  height: .4rem; background: #efebe4; border-radius: 999px; overflow: hidden; margin: .15rem 0 .45rem;
}
.prog > span { display: block; height: 100%; background: var(--primary); border-radius: 999px; }
.prog-lab { margin: 0 0 1rem; }

.prose {
  white-space: pre-wrap; overflow-wrap: anywhere; line-height: 1.85;
  font-size: .92rem; color: var(--text); margin: 0;
}

.pay-method {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  width: 100%; text-align: right; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.1rem;
  min-height: 3.5rem; cursor: pointer; margin-bottom: .6rem; color: inherit;
}
.pay-method.featured { border-color: #ead0d2; background: #fffaf9; }
.pay-method strong { display: block; font-size: .98rem; }
.pay-method .hint { color: var(--muted); font-size: .8rem; margin-top: .15rem; font-weight: 500; }
.pay-method .go { color: var(--faint); font-size: 1.15rem; }

.cart-item { cursor: default; }
.cart-item .rm {
  width: auto; min-width: 0; padding-inline: .85rem; min-height: 2.5rem; font-size: .8rem; flex-shrink: 0;
  margin-top: .65rem;
}
.detail-hero .tag { margin-top: .55rem; }

.addr-card {
  display: block; width: 100%; text-align: right; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); padding: .9rem 1rem;
  margin-bottom: .5rem; cursor: pointer; color: inherit;
}
.addr-card.on { border-color: var(--primary); background: var(--primary-soft); }
.addr-card strong { display: block; }
.addr-card span { color: var(--muted); font-size: .82rem; }

.msg-thread { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1rem; }
.msg .who { display: block; font-size: .72rem; font-weight: 800; color: var(--muted); margin-bottom: .25rem; }
.msg.admin .who { color: var(--primary); }
.msg .txt { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; line-height: 1.7; }

.composer {
  position: sticky; bottom: calc(var(--nav-h) + var(--safe-b) + .4rem);
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  padding: .75rem; z-index: 15; box-shadow: 0 8px 24px rgba(20,20,20,.08);
}
.composer .field { margin: 0 0 .6rem; }
.composer-actions { display: flex; gap: .5rem; }
.composer-actions .btn { flex: 1; }

.contact-row {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  padding: .65rem 0; border-bottom: 1px solid var(--border); font-size: .92rem;
}
.contact-row:last-child { border-bottom: 0; }
.contact-row span { color: var(--muted); flex-shrink: 0; }
.contact-row a, .contact-row strong { font-weight: 700; overflow-wrap: anywhere; }
.contact-row a { color: var(--primary); }

.wiz-block { margin-bottom: 1.35rem; }
.wiz-block h3 { margin: 0 0 .55rem; font-size: .88rem; font-weight: 800; color: var(--muted); }
.chip-filter { margin-bottom: .5rem; }

.sticky-cta .sum {
  display: flex; flex-direction: column; gap: .1rem; min-width: 0;
}
.sticky-cta .sum .price { font-size: 1.05rem; }
.sticky-cta .btn { flex: 1; }

.ticket-form { margin-bottom: 1.25rem; }
.ticket-form.hidden-form { display: none; }

@media (min-width: 1024px) {
  .composer { bottom: 1rem; }
}
