/* ============================================================================
   Ducey's — online ordering
   ----------------------------------------------------------------------------
   Same tokens as site.css so the ordering flow reads as part of the restaurant
   rather than a bolted-on checkout. Layout is the iChicken tablet wizard
   re-proportioned for a phone-first web page: category rail becomes a
   horizontal scroller under 900px, the cart becomes a bottom sheet.
============================================================================ */

@import url('site.css');

body.ordering { background: var(--navy-950); min-height: 100svh; }

/* ------------------------------------------------------------------ screens */
.screen { display: none; }
.screen.active { display: block; animation: screenIn .5s var(--ease-out); }
@keyframes screenIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .screen.active { animation: none; } }

/* ================================ ORDER HEADER ============================ */
.order-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .85rem var(--gutter);
  background: rgba(6, 21, 44, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 205, 42, .18);
}
.order-header .brand-lockup { min-width: 0; }
.order-header .brand-name { font-size: 1rem; }
.oh-left { display: flex; align-items: center; gap: .9rem; min-width: 0; }
.oh-right { display: flex; align-items: center; gap: .6rem; }

.icon-round {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 50%; border: 1px solid rgba(246, 241, 231, .28);
  background: transparent; cursor: pointer;
  display: grid; place-items: center;
  transition: border-color .3s, background .3s, transform .3s var(--ease-out);
  position: relative;
}
.icon-round:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.05); }
/* Symbols drawn as masks rather than text glyphs — a "+" character does not sit
   at optical centre in most fonts, and it shows badly in a 40px circle. */
.icon-round::before {
  content: ''; width: 15px; height: 15px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.icon-round[data-icon="plus"]  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16M4 12h16' stroke='%23000' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-round[data-icon="minus"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M4 12h16' stroke='%23000' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-round[data-icon="close"] { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 5l14 14M19 5L5 19' stroke='%23000' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E"); }
.icon-round[data-icon="back"]  { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 5l-7 7 7 7' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.cart-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .62rem 1.15rem;
  background: var(--gold); color: var(--navy-900);
  border: 0; border-radius: 999px; cursor: pointer;
  font-weight: 700; font-size: .82rem;
  transition: transform .35s var(--ease-out), box-shadow .35s;
  box-shadow: 0 8px 26px -12px rgba(255, 205, 42, .9);
}
.cart-btn:hover { transform: translateY(-1px) scale(1.02); }
.cart-btn.bump { animation: bump .45s var(--ease-out); }
@keyframes bump { 0%, 100% { transform: scale(1); } 40% { transform: scale(1.14); } }
.cart-btn-count {
  min-width: 22px; height: 22px; padding: 0 6px;
  background: var(--navy-900); color: var(--gold);
  border-radius: 999px; display: grid; place-items: center; font-size: .74rem;
}

.batch-pill {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .95rem; border-radius: 999px;
  background: rgba(255, 205, 42, .14); border: 1px solid rgba(255, 205, 42, .4);
  color: var(--gold); font-size: .76rem; font-weight: 700; cursor: pointer;
}
.batch-pill.hidden { display: none; }

/* ================================ SERVICE PICKER ========================== */
.service-hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; }
.service-hero .hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 1; transform: scale(1.05); animation: kenburns 22s ease-out infinite alternate; }
.service-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(4,16,31,.72), rgba(4,16,31,.94)); }
/* width:100% matters — .service-hero is a `place-items:center` grid, which
   sizes this child to its content rather than stretching it, and the service
   card grid then collapsed to two columns on a wide screen. */
.service-inner { position: relative; z-index: 2; text-align: center; padding: 6rem var(--gutter) 4rem; max-width: 1000px; width: 100%; }
.service-inner h1 { font-size: clamp(2.2rem, 5.4vw, 3.8rem); margin-top: .4rem; }
.service-inner > p { max-width: 620px; margin: 1.4rem auto 0; color: #D6DFEC; }

.service-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; margin-top: 3.2rem; }
.service-card {
  background: rgba(10, 29, 59, .72);
  border: 1px solid rgba(255, 205, 42, .26);
  padding: 2.4rem 1.6rem;
  cursor: pointer; text-align: center;
  transition: transform .5s var(--ease-out), border-color .4s, background .4s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(19, 64, 116, .68); }
.service-card .emj { font-size: 2.4rem; display: block; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.5rem; }
.service-card .hrs { display: block; margin-top: .8rem; font-size: .76rem; color: var(--stone); letter-spacing: .04em; }
.service-card .cnt { display: block; margin-top: 1rem; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }

.service-foot { margin-top: 2.6rem; font-size: .84rem; color: var(--stone); }
.service-foot a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* ================================ MENU BROWSE ============================= */
.order-body { display: grid; grid-template-columns: 268px 1fr; gap: 0; min-height: calc(100svh - 66px); }
@media (max-width: 900px) { .order-body { grid-template-columns: 1fr; } }

.category-nav {
  border-right: 1px solid rgba(255, 205, 42, .16);
  padding: 2rem 1rem 4rem;
  position: sticky; top: 66px; align-self: start;
  max-height: calc(100svh - 66px); overflow-y: auto;
}
.category-nav .svc-switch {
  width: 100%; margin-bottom: 1.4rem; padding: .8rem;
  background: rgba(255, 205, 42, .1); border: 1px solid rgba(255, 205, 42, .32);
  color: var(--gold); cursor: pointer; border-radius: 2px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
}
.cat-btn {
  display: flex; align-items: center; gap: .85rem;
  width: 100%; padding: .85rem 1rem;
  background: transparent; border: 0; border-left: 2px solid transparent;
  color: rgba(246, 241, 231, .78); cursor: pointer; text-align: left;
  font-size: .93rem;
  transition: background .3s, color .3s, border-color .3s;
}
.cat-btn:hover { background: rgba(255, 255, 255, .04); color: #fff; }
.cat-btn.active { background: rgba(255, 205, 42, .1); color: var(--gold); border-left-color: var(--gold); font-weight: 700; }
.cat-btn .emj { font-size: 1.1rem; }

@media (max-width: 900px) {
  .category-nav {
    display: flex; gap: .6rem; overflow-x: auto; overflow-y: hidden;
    border-right: 0; border-bottom: 1px solid rgba(255, 205, 42, .16);
    padding: .9rem var(--gutter); max-height: none;
    scrollbar-width: none;
  }
  .category-nav::-webkit-scrollbar { display: none; }
  .category-nav .svc-switch { width: auto; margin: 0 .4rem 0 0; flex-shrink: 0; padding: .7rem 1rem; }
  .cat-btn {
    flex-shrink: 0; width: auto; border-left: 0; border-bottom: 2px solid transparent;
    border-radius: 999px; background: rgba(255, 255, 255, .05); padding: .6rem 1.05rem;
    font-size: .84rem;
  }
  .cat-btn.active { border-bottom-color: transparent; background: var(--gold); color: var(--navy-900); }
}

.item-pane { padding: 2.6rem var(--gutter) 7rem; }
.item-pane h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.cat-note {
  margin: 1rem 0 0; max-width: 720px;
  font-size: .88rem; color: var(--sand);
  border-left: 2px solid var(--gold-deep); padding-left: 1rem;
}

.item-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 1px; margin-top: 2.4rem; background: rgba(255, 205, 42, .14); }
.item-card {
  background: var(--navy-900);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: .6rem;
  cursor: pointer; text-align: left; border: 0;
  transition: background .4s var(--ease-out), transform .4s var(--ease-out);
  position: relative;
}
.item-card:hover { background: var(--navy-800); transform: translateY(-3px); z-index: 2; }
.item-card .emj { font-size: 1.7rem; }
.item-card .nm { font-family: var(--font-display); font-size: 1.16rem; line-height: 1.25; }
.item-card .ds { font-size: .82rem; color: var(--stone); line-height: 1.55; flex: 1; }
.item-card .ft { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.item-card .pr { font-family: var(--font-display); color: var(--gold); font-size: 1.3rem; }
.item-card .in-cart {
  position: absolute; top: 12px; right: 12px;
  background: var(--gold); color: var(--navy-900);
  font-size: .7rem; font-weight: 700; padding: .18rem .55rem; border-radius: 999px;
}
.item-card .call-tag { font-size: .72rem; color: var(--gold); letter-spacing: .08em; }

.btn-add-mini {
  border: 1px solid rgba(255, 205, 42, .5); background: transparent; color: var(--gold);
  border-radius: 999px; padding: .42rem 1rem; font-size: .74rem; font-weight: 700;
  cursor: pointer; letter-spacing: .1em; text-transform: uppercase;
  transition: background .35s, color .35s, border-color .35s;
}
.item-card:hover .btn-add-mini { background: var(--gold); color: var(--navy-900); }

/* ================================ MODALS ================================= */
.overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 16, 31, .82);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: var(--gutter);
}
.overlay.open { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--navy-850);
  border: 1px solid rgba(255, 205, 42, .28);
  width: min(560px, 100%);
  max-height: 88svh; overflow-y: auto;
  position: relative;
  animation: modalIn .45s var(--ease-out);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.98); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 14px; right: 14px; z-index: 3; background: rgba(4,16,31,.7); }

.item-modal-head { padding: 2.6rem 2.2rem 0; }
.item-modal-head .emj { font-size: 3rem; display: block; margin-bottom: 1rem; }
.item-modal-head h3 { font-size: 1.9rem; }
.item-modal-head p { margin: .9rem 0 0; color: var(--stone); font-size: .92rem; }

.addons { margin: 1.8rem 2.2rem 0; border-top: 1px solid rgba(255, 205, 42, .18); padding-top: 1.3rem; }
.addons h4 { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 700; }
.addon-row { display: flex; align-items: center; gap: .8rem; padding: .6rem 0; cursor: pointer; }
.addon-row input { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.addon-row .an { flex: 1; font-size: .92rem; }
.addon-row .ap { color: var(--gold); font-size: .9rem; }

.item-modal-foot {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 1.8rem 2.2rem 2.2rem; margin-top: 1.4rem;
}
.qty-stepper { display: flex; align-items: center; gap: .9rem; }
.qty-stepper .v { min-width: 30px; text-align: center; font-family: var(--font-display); font-size: 1.4rem; }
.btn-add { flex: 1; min-width: 190px; justify-content: center; }

/* ================================ CART =================================== */
.cart-panel { width: min(520px, 100%); display: flex; flex-direction: column; max-height: 88svh; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem 1.9rem; border-bottom: 1px solid rgba(255, 205, 42, .18); }
.cart-head h3 { font-size: 1.5rem; }
.cart-items { flex: 1; overflow-y: auto; padding: .6rem 1.9rem; }
.cart-line { display: flex; align-items: center; gap: 1rem; padding: 1.05rem 0; border-bottom: 1px solid rgba(169, 180, 196, .14); }
.cart-line .emj { font-size: 1.5rem; }
.cart-line .info { flex: 1; min-width: 0; }
.cart-line .nm { font-size: .96rem; }
.cart-line .sub { font-size: .78rem; color: var(--stone); }
.cart-line .pr { font-family: var(--font-display); color: var(--gold); min-width: 68px; text-align: right; }
.cart-line .icon-round { width: 32px; height: 32px; }
.cart-line .icon-round::before { width: 12px; height: 12px; }
.cart-empty { padding: 3.5rem 1.9rem; text-align: center; color: var(--stone); }
.cart-foot { padding: 1.5rem 1.9rem 1.9rem; border-top: 1px solid rgba(255, 205, 42, .18); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.2rem; }
.cart-total-row span:first-child { font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }
.cart-total-row span:last-child { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); }
.cart-foot-btns { display: flex; gap: .8rem; }
.cart-foot-btns .btn { flex: 1; justify-content: center; padding-inline: 1rem; }

.batch-note { margin: 0 1.9rem 1rem; padding: .8rem 1rem; background: rgba(255,205,42,.09); border-left: 2px solid var(--gold); font-size: .82rem; color: var(--sand); }
.batch-note.hidden { display: none; }

/* ============================== SUGGEST STRIP ============================ */
.suggest-strip {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(10, 29, 59, .97);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 205, 42, .32);
  /* translateY alone only clears the strip's own height, so any `bottom`
     offset lets it peek back above the fold. visibility does the hiding. */
  transform: translateY(105%);
  visibility: hidden;
  transition: transform .55s var(--ease-out), visibility .55s;
}
.suggest-strip.open { transform: none; visibility: visible; }
.suggest-inner { padding: 1.1rem var(--gutter) 1.4rem; }
.suggest-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: .9rem; }
.suggest-head .lbl { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.suggest-items { display: flex; gap: .8rem; overflow-x: auto; padding-bottom: .3rem; scrollbar-width: none; }
.suggest-items::-webkit-scrollbar { display: none; }
.suggest-card {
  flex-shrink: 0; width: 210px;
  background: var(--navy-800); border: 1px solid rgba(255, 205, 42, .18);
  padding: .95rem 1rem; display: flex; flex-direction: column; gap: .45rem;
}
.suggest-card .nm { font-family: var(--font-display); font-size: .98rem; line-height: 1.25; }
.suggest-card .pr { color: var(--gold); font-size: .86rem; }
.suggest-card .btn-add-mini { align-self: flex-start; margin-top: .3rem; }
.suggest-card .btn-add-mini.added { background: #2E7D57; border-color: #2E7D57; color: #fff; }

/* ============================== FLOW SCREENS ============================= */
.flow-wrap { max-width: 760px; margin-inline: auto; padding: 4rem var(--gutter) 6rem; }
.flow-wrap h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.flow-sub { margin: 1rem 0 0; color: var(--stone); }
.flow-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.6rem; }
.flow-actions .btn { flex: 1; min-width: 200px; justify-content: center; }
.link-back { background: none; border: 0; color: var(--gold); cursor: pointer; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding: 0 0 1.4rem; }

.upsell-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: rgba(255,205,42,.16); margin-top: 2.4rem; }
.upsell-card { background: var(--navy-900); padding: 1.6rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; }
.upsell-card .emj { font-size: 1.8rem; }
.upsell-card .nm { font-family: var(--font-display); font-size: 1.08rem; }
.upsell-card .ds { font-size: .8rem; color: var(--stone); flex: 1; }
.upsell-card .pr { color: var(--gold); font-family: var(--font-display); font-size: 1.15rem; }

/* rounds summary */
.round-block { border: 1px solid rgba(255,205,42,.2); padding: 1.3rem 1.5rem; margin-top: 1rem; }
.round-block h4 { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 700; }
.round-line { display: flex; justify-content: space-between; gap: 1rem; padding: .55rem 0; font-size: .92rem; border-bottom: 1px solid rgba(169,180,196,.1); }
.round-line:last-child { border-bottom: 0; }
.round-line .rl-left { display: flex; align-items: center; gap: .65rem; min-width: 0; }
.round-line .icon-round { width: 26px; height: 26px; border-color: rgba(246,241,231,.2); }
.round-line .icon-round::before { width: 10px; height: 10px; }
.round-sub { display: flex; justify-content: space-between; padding-top: .8rem; margin-top: .6rem; border-top: 1px solid rgba(255,205,42,.2); font-size: .86rem; color: var(--sand); }

.grand-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,205,42,.3); }
.grand-total span:first-child { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--stone); }
.grand-total span:last-child { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); }

/* forms */
.field { margin-top: 1.5rem; }
.field label { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: .6rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .95rem 1.1rem;
  background: rgba(255,255,255,.05); border: 1px solid rgba(246,241,231,.2);
  color: var(--cream); font: inherit; border-radius: 2px;
  transition: border-color .3s, background .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--gold); background: rgba(255,255,255,.08); }
.field textarea { min-height: 96px; resize: vertical; }
.field select option { background: var(--navy-850); color: var(--cream); }
.field .err { color: #FF9A8B; font-size: .8rem; margin-top: .45rem; display: none; }
.field.invalid input, .field.invalid select { border-color: #FF9A8B; }
.field.invalid .err { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.pickup-note { margin-top: 1.6rem; padding: 1rem 1.2rem; background: rgba(255,205,42,.08); border-left: 2px solid var(--gold); font-size: .86rem; color: var(--sand); }

/* success */
.success-wrap { text-align: center; max-width: 620px; margin-inline: auto; padding: 6rem var(--gutter); }
.success-check {
  width: 88px; height: 88px; margin: 0 auto 2rem;
  border-radius: 50%; border: 1px solid var(--gold); color: var(--gold);
  display: grid; place-items: center; font-size: 2.4rem;
  animation: pop .6s var(--ease-out);
}
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: none; opacity: 1; } }
.success-meta { margin-top: 1.6rem; font-size: 1.05rem; }
.success-meta b { color: var(--gold); font-family: var(--font-display); font-size: 1.4rem; }
.success-card { margin-top: 2.4rem; border: 1px solid rgba(255,205,42,.28); padding: 1.6rem; text-align: left; }

/* toast */
.toast {
  /* 140% of its own height did not clear `bottom: 32px`, so the hidden toast
     peeked above the fold as a stray yellow bar. Opacity does the hiding now;
     the translate only carries the motion. */
  position: fixed; left: 50%; bottom: 32px; transform: translate(-50%, 160%);
  opacity: 0; pointer-events: none;
  z-index: 300;
  background: var(--gold); color: var(--navy-900);
  padding: .95rem 1.7rem; border-radius: 999px;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 16px 40px -14px rgba(0, 0, 0, .8);
  transition: transform .5s var(--ease-out), opacity .35s ease;
  max-width: calc(100vw - 40px); text-align: center;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; pointer-events: auto; }

/* ============================== DASHBOARD =============================== */
.dash-wrap { padding: 2rem var(--gutter) 5rem; }
.dash-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.dash-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; align-items: start; }
.dash-col h3 { font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); font-weight: 700; margin-bottom: 1rem; }
.dash-col .count { color: var(--stone); }
.ticket { border: 1px solid rgba(255,205,42,.26); background: var(--navy-900); padding: 1.3rem 1.4rem; margin-bottom: 1rem; }
.ticket.new { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(255,205,42,.25); }
.ticket-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.ticket-num { font-family: var(--font-display); font-size: 1.35rem; color: var(--gold); }
.ticket-time { font-size: .76rem; color: var(--stone); }
.ticket-cust { margin-top: .5rem; font-size: .88rem; }
.ticket-cust b { color: var(--cream); }
.ticket-pickup { margin-top: .35rem; font-size: .82rem; color: var(--gold); }
.ticket-round { margin-top: 1rem; padding-top: .8rem; border-top: 1px solid rgba(169,180,196,.14); }
.ticket-round .rlabel { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); margin-bottom: .4rem; }
.ticket-line { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; padding: .22rem 0; }
.ticket-note { margin-top: .9rem; padding: .7rem .9rem; background: rgba(255,205,42,.1); border-left: 2px solid var(--gold); font-size: .84rem; }
.ticket-foot { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid rgba(255,205,42,.24); }
.ticket-total { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold); }
.dash-empty { color: var(--stone); font-size: .88rem; padding: 1.4rem 0; }
