:root {
  --red: #c1302e;
  --red-dark: #8e201f;
  --orange: #f15a29;
  --ink: #161616;
  --grey: #808285;
  --line: #e7e2df;
  --cream: #fffaf7;
  --white: #ffffff;
  --green: #267553;
  --shadow: 0 18px 45px rgba(46, 23, 18, 0.08);
  --hero-height: 570px;
  font-family: Poppins, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.section-pad { padding-left: clamp(20px, 5vw, 76px); padding-right: clamp(20px, 5vw, 76px); }
.topbar { width: min(1440px, 100%); margin: auto; min-height: 80px; padding: 18px clamp(20px, 5vw, 76px); display: flex; align-items: center; justify-content: space-between; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0.14em; font-size: 14px; }
.brand img, .footer-brand img { width: 30px; height: 30px; object-fit: contain; }
.brand .brand-wordmark { width: 154px; height: auto; max-height: 42px; object-fit: contain; }
.footer-brand .footer-wordmark { width: 208px; height: auto; max-height: 76px; object-fit: contain; }
.topbar-actions, .dash-top-actions { display: flex; align-items: center; gap: 14px; }
.location-chip, .verified-label { display: inline-flex; align-items: center; gap: 7px; color: #625f5c; font-size: 13px; font-weight: 700; }
.live-dot, .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); display: inline-block; }
.business-link { color: var(--red); font-weight: 800; font-size: 13px; }
.account-link { color: #625f5c; font-weight: 800; font-size: 13px; }
.icon-button { border: 0; background: transparent; color: inherit; min-width: 36px; min-height: 36px; border-radius: 12px; }
.icon-button:hover { background: #f0e8e5; }
.menu-button { display: none; font-size: 20px; }
.hero { position: relative; height: var(--hero-height); min-height: var(--hero-height); background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 50px; overflow: hidden; }
.hero-copy { position: relative; z-index: 2; }
.ad-ticker { position: relative; overflow: hidden; isolation: isolate; background: var(--ink); touch-action: pan-y; }
.ad-ticker::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.16) 52%, rgba(0,0,0,.24) 100%); }
.hero-ad-ticker { position: absolute; inset: 0; z-index: 0; }
.hero-ad-ticker::after { background: linear-gradient(90deg, rgba(0,0,0,.44) 0%, rgba(0,0,0,.15) 54%, rgba(0,0,0,.24) 100%); }
.ad-ticker-track { display: flex; height: 100%; width: max-content; animation: cityskape-ticker var(--ticker-duration, 16s) linear infinite; will-change: transform; }
.ad-ticker { cursor: grab; user-select: none; -webkit-user-select: none; overscroll-behavior-x: contain; }
.ad-ticker.is-dragging { cursor: grabbing; }
.ad-ticker.is-superswiping .ad-ticker-track { transition: transform 1.15s cubic-bezier(.12,.86,.18,1); }
.ad-ticker.is-swiping .ad-ticker-track { transition: transform .55s cubic-bezier(.18,.8,.26,1); }
.ad-ticker.ad-pause-enabled:hover .ad-ticker-track, .ad-ticker.ad-pause-enabled:focus-within .ad-ticker-track, .ad-ticker.is-paused .ad-ticker-track { animation-play-state: paused; }
.ad-ticker.is-boosted .ad-ticker-track { animation-duration: 7s !important; }
.ad-slide { position: relative; flex: 0 0 100vw; min-width: 100vw; height: 100%; overflow: hidden; color: var(--white); }
.ad-slide img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ad-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,22,22,.12), transparent 65%); pointer-events: none; }
.ad-slide-copy { position: absolute; left: clamp(20px, 5vw, 76px); right: clamp(20px, 5vw, 76px); bottom: 28px; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 18px; text-shadow: 0 2px 18px rgba(0,0,0,.28); }
.ad-slide-copy strong { display: block; font-size: clamp(16px, 2vw, 25px); line-height: 1; }
.ad-slide-copy small { display: block; margin-top: 8px; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #ffe7e2; }
.ad-slide-copy .ad-tag { border: 1px solid rgba(255,255,255,.48); border-radius: 99px; padding: 8px 12px; color: var(--white); background: rgba(22,22,22,.28); font-size: 10px; font-weight: 900; white-space: nowrap; }
.ad-slide-copy.ad-copy-top-left { top: clamp(20px, 5vw, 76px); bottom: auto; right: 50%; }
.ad-slide-copy.ad-copy-top-right { top: clamp(20px, 5vw, 76px); bottom: auto; left: 50%; }
.ad-slide-copy.ad-copy-bottom-right { left: 50%; }
.ad-slide-copy.ad-copy-center { top: 50%; bottom: auto; left: 50%; right: auto; transform: translate(-50%, -50%); max-width: 70%; text-align: center; }
.ad-slide-copy.ad-copy-center .ad-tag { margin-top: 12px; display: inline-flex; }
.ad-slide.image-missing { background: linear-gradient(135deg, var(--ink), var(--red)); }
.ad-slide.is-text { display: grid; place-items: center; background: var(--red); }
.ad-slide.is-text .ad-slide-copy { position: static; display: block; max-width: 800px; padding: 30px; text-align: center; text-shadow: none; }
.ad-slide.is-text .ad-slide-copy strong { font-size: clamp(24px, 5vw, 58px); line-height: 1; }
.ad-slide.is-text .ad-slide-copy small { color: #ffc8bd; }
@keyframes cityskape-ticker { from { transform: translate3d(var(--ticker-start, 0px), 0, 0); } to { transform: translate3d(calc(-50% + var(--ticker-start, 0px)), 0, 0); } }
.hero-copy { padding-top: 54px; padding-bottom: 54px; max-width: 690px; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; font-weight: 900; color: var(--red); }
.eyebrow.light { color: #ffc8bd; }
h1, h2, p { margin-top: 0; }
h1 { font-family: "Arial Black", Impact, sans-serif; font-size: clamp(44px, 7vw, 82px); line-height: 0.96; letter-spacing: -0.055em; margin-bottom: 24px; }
h1 span { color: #ffb4a8; }
h2 { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 14px; }
.hero-text { max-width: 560px; color: #ffe7e2; font-size: 17px; line-height: 1.6; margin-bottom: 26px; }
.search-box { width: min(600px, 100%); height: 58px; padding: 6px 7px 6px 18px; border-radius: 18px; display: flex; align-items: center; gap: 10px; background: var(--white); color: var(--grey); box-shadow: var(--shadow); }
.search-box > span { font-size: 25px; line-height: 0; }
.search-box input { min-width: 0; flex: 1; border: 0; outline: 0; color: var(--ink); background: transparent; }
.search-box input::placeholder { color: #9d9997; }
.search-go, .primary-button { border: 0; color: var(--white); background: var(--ink); font-weight: 800; border-radius: 13px; padding: 12px 20px; }
.quick-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 15px; }
.filter-pill { border: 1px solid rgba(255,255,255,.35); background: transparent; color: var(--white); border-radius: 99px; padding: 8px 14px; font-size: 12px; font-weight: 800; }
.filter-pill.active, .filter-pill:hover { background: var(--white); color: var(--red); }
.season-strip { background: var(--ink); color: var(--white); padding-top: 38px; padding-bottom: 38px; display: flex; justify-content: space-between; align-items: center; gap: 25px; }
.season-strip h2 { margin-bottom: 8px; }
.season-strip p:not(.eyebrow) { color: #bdb6b3; margin-bottom: 0; }
.outline-light, .secondary-button { border: 1px solid #d7ceca; background: transparent; color: inherit; padding: 12px 16px; border-radius: 12px; font-weight: 800; white-space: nowrap; }
.outline-light { border-color: #6c6663; }
.outline-light span, .text-button span, .arrow-link span { margin-left: 10px; }
.browse-section { padding-top: 44px; padding-bottom: 30px; background: var(--white); border-bottom: 1px solid var(--line); }
.browse-heading { align-items: end; margin-bottom: 18px; }
.browse-heading h2 { font-size: clamp(25px, 3vw, 36px); }
.location-status { color: var(--grey); font-size: 12px; margin: 0; text-align: right; }
.location-chips { display: flex; gap: 9px; overflow-x: auto; padding: 2px 1px 6px; scrollbar-width: thin; }
.location-chip-button { flex: 0 0 auto; border: 1px solid var(--line); border-radius: 99px; background: #fffaf7; color: #665e5a; padding: 10px 15px; font-size: 12px; font-weight: 800; white-space: nowrap; }
.location-chip-button:hover, .location-chip-button.active { border-color: var(--red); background: var(--red); color: var(--white); }
.time-section { padding-top: 36px; padding-bottom: 38px; background: #fffaf7; border-bottom: 1px solid var(--line); }
.time-filter-layout { display: grid; gap: 14px; }
.time-filter-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.time-filter-button { min-height: 68px; display: grid; align-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 14px; padding: 12px 14px; background: var(--white); color: #665e5a; text-align: left; }
.time-filter-button b { color: var(--ink); font-size: 12px; }
.time-filter-button small { color: var(--grey); font-size: 10px; }
.time-filter-button:hover, .time-filter-button.active { border-color: var(--red); background: #fff0ec; }
.time-filter-button.active b { color: var(--red); }
.date-filter-row { display: flex; align-items: center; gap: 12px; color: #665e5a; font-size: 12px; font-weight: 800; }
.date-filter-row input { border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; color: var(--ink); background: var(--white); font-size: 12px; }
.date-filter-row input:focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }
.interest-section { padding-top: 42px; padding-bottom: 48px; background: var(--white); }
.interest-section .section-heading { margin-bottom: 25px; }
.interest-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 15px; }
.interest-card { min-width: 0; border: 0; background: transparent; color: #312b29; display: grid; justify-items: center; gap: 11px; padding: 0 4px; font-size: 12px; font-weight: 900; text-align: center; }
.interest-icon { width: 82px; height: 82px; display: grid; place-items: center; border: 1px solid #dfe5ff; border-radius: 50%; color: #4e4c68; background: #fff; font-size: 28px; font-weight: 500; transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease; }
.interest-card:hover .interest-icon, .interest-card.active .interest-icon { border-color: var(--red); background: #fff1ed; color: var(--red); transform: translateY(-2px); }
.interest-card.active { color: var(--red); }
.master-search-hero { padding-top: 70px; padding-bottom: 70px; background: var(--ink); color: var(--white); }
.master-search-hero h1 { margin-bottom: 20px; }
.master-filter-panel { padding-top: 46px; padding-bottom: 18px; background: var(--white); }
.master-filter-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.master-filter-heading h2 { margin-bottom: 0; }
.master-filter-group { padding: 20px 0; border-top: 1px solid var(--line); }
.master-filter-group > b, .master-filter-label b { color: var(--ink); font-size: 13px; }
.master-filter-label { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 13px; }
.master-filter-label > span { color: var(--grey); font-size: 11px; }
.search-filter-pills { margin-top: 12px; }
.light-filter { border-color: var(--line); background: #fffaf7; color: #665e5a; }
.light-filter.active, .light-filter:hover { border-color: var(--red); background: var(--red); color: var(--white); }
.content-section { padding-top: 75px; padding-bottom: 72px; }
.section-heading, .card-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.section-heading h2, .card-heading h2 { margin-bottom: 0; }
.text-button, .arrow-link { border: 0; background: transparent; color: var(--red); font-size: 13px; font-weight: 900; padding: 8px 0; }
.listing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.listing-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 6px 20px rgba(28,20,18,.03); transition: transform .2s ease, box-shadow .2s ease; }
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; min-height: 190px; padding: 16px; display: flex; align-items: end; color: var(--white); overflow: hidden; }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 26%, rgba(0,0,0,.43)); }
.card-media > * { position: relative; z-index: 1; }
.card-media > .card-media-link { position: absolute; inset: 0; z-index: 0; display: block; }
.card-media > img, .card-media-link img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.food-media { background: radial-gradient(circle at 30% 25%, #fdba78, transparent 30%), linear-gradient(135deg, #6e1f1b, #f15a29); }
.event-media { background: radial-gradient(circle at 74% 22%, #ffb8a7, transparent 25%), linear-gradient(135deg, #171717, #9a1e2a); }
.stay-media { background: radial-gradient(circle at 60% 20%, #f7ca72, transparent 24%), linear-gradient(135deg, #263e49, #a24933); }
.card-media-label { font-size: 10px; letter-spacing: .16em; font-weight: 900; }
.save-button { position: absolute; top: 12px; right: 12px; z-index: 2; width: 34px; height: 34px; border: 0; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--ink); font-size: 19px; }
.save-button.saved { color: var(--red); }
.card-body { padding: 18px; }
.card-body h3 { font-size: 19px; line-height: 1.1; margin: 0 0 8px; letter-spacing: -.025em; }
.card-meta { color: var(--grey); font-size: 12px; margin-bottom: 14px; }
.card-bottom { display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.deal-label { color: var(--red); font-size: 12px; font-weight: 900; }
.card-action { border: 0; background: #f8ece9; color: var(--red); padding: 9px 12px; border-radius: 10px; font-size: 12px; font-weight: 900; }
.card-action { display: inline-flex; align-items: center; }
.listing-title-link:hover { color: var(--red); }
.demo-tag { position: absolute; top: 16px; left: 16px; z-index: 2; padding: 5px 8px; border-radius: 6px; color: var(--white); background: rgba(0,0,0,.32); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.empty-state { padding: 40px 0; color: var(--grey); text-align: center; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; color: var(--grey); font-size: 12px; font-weight: 800; }
.pagination-button { border: 1px solid var(--line); border-radius: 10px; padding: 9px 12px; background: var(--white); color: var(--red); font-size: 11px; font-weight: 900; }
.pagination-button:hover:not(:disabled) { background: #f9ece9; }
.pagination-button:disabled { cursor: not-allowed; opacity: .4; }
.cart-link { color: var(--red); font-size: 13px; font-weight: 900; }
.cart-link span { display: inline-grid; place-items: center; min-width: 20px; min-height: 20px; margin-left: 3px; padding: 0 5px; border-radius: 99px; background: var(--red); color: var(--white); font-size: 10px; }
.detail-page, .cart-page, .checkout-page, .confirmation-page { min-height: 620px; padding-top: 52px; padding-bottom: 80px; }
.detail-back { margin: 0 0 22px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 26px; align-items: stretch; }
.detail-media { position: relative; min-height: 510px; overflow: hidden; border-radius: 24px; background: var(--ink); }
.detail-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.42)); pointer-events: none; }
.detail-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.detail-media .demo-tag { top: 20px; left: 20px; }
.detail-copy { align-self: center; padding: 30px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
.detail-copy h1, .empty-detail h1, .cart-page-heading h1, .checkout-heading h1, .confirmation-card h1 { color: var(--ink); font-size: clamp(38px, 5vw, 64px); margin-bottom: 16px; }
.detail-meta, .detail-description, .cart-page-heading p, .checkout-heading p { color: var(--grey); line-height: 1.6; }
.detail-description { font-size: 15px; }
.detail-deal { display: grid; gap: 5px; margin: 24px 0; padding: 14px; border-radius: 13px; background: #fff1ed; color: var(--red); font-size: 12px; }
.detail-deal span { color: #716b68; }
.availability-status { margin: -3px 0 2px; color: #2f7a52; font-size: 11px; font-weight: 900; }
.availability-status.sold-out { color: var(--red); }
.purchase-form, .checkout-form { display: grid; gap: 13px; }
.purchase-form label, .checkout-form label { display: grid; gap: 7px; color: #5f5956; font-size: 11px; font-weight: 800; }
.purchase-form select, .purchase-form input, .checkout-form input { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px; color: var(--ink); background: var(--white); outline: 0; font-size: 12px; }
.purchase-form select:focus, .purchase-form input:focus, .checkout-form input:focus { border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }
.purchase-form .secondary-button { text-align: center; color: var(--red); border-color: #e1d4cf; }
.checkout-note { color: var(--grey); font-size: 11px; line-height: 1.5; }
.cart-page-heading, .checkout-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.cart-page-heading p, .checkout-heading p { margin-bottom: 0; max-width: 650px; }
.cart-layout, .checkout-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(270px, .6fr); gap: 22px; align-items: start; }
.cart-items { padding: 0 22px; }
.cart-row { display: grid; grid-template-columns: 70px minmax(0, 1fr) auto auto auto; align-items: center; gap: 14px; min-height: 100px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: 0; }
.cart-row > img { width: 70px; height: 70px; object-fit: cover; border-radius: 13px; }
.cart-row-copy { display: grid; gap: 5px; min-width: 0; }
.cart-row-copy a { color: var(--ink); }
.cart-row-copy a:hover { color: var(--red); }
.cart-row-copy span, .cart-row-copy strong { color: var(--grey); font-size: 11px; }
.cart-availability { color: #2f7a52; font-size: 10px; font-weight: 900; }
.cart-quantity { display: flex; align-items: center; gap: 8px; }
.cart-quantity button { width: 27px; height: 27px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); color: var(--red); font-weight: 900; }
.cart-line-total { min-width: 82px; color: var(--ink); font-size: 12px; text-align: right; }
.cart-remove { border: 0; background: transparent; color: var(--grey); font-size: 10px; font-weight: 800; }
.cart-remove:hover { color: var(--red); }
.cart-summary { position: sticky; top: 20px; }
.cart-summary h2 { font-size: 25px; }
.cart-summary-total { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; margin: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--grey); font-size: 12px; }
.cart-summary-total strong { color: var(--ink); font-size: 20px; }
.cart-summary > .primary-button { display: inline-flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.checkout-page { max-width: 1400px; margin: 0 auto; }
.checkout-form, .checkout-summary { max-width: 620px; }
.checkout-form { padding: 26px; }
.checkout-form .primary-button { margin-top: 8px; }
.checkout-summary { height: fit-content; }
.checkout-line, .confirmation-lines > div { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 12px; }
.checkout-line small, .confirmation-lines small { display: block; margin-top: 4px; color: var(--grey); font-size: 10px; }
.checkout-breakdown { display: grid; gap: 0; margin-top: 12px; border-top: 1px solid var(--line); }
.checkout-breakdown > div { display: flex; align-items: start; justify-content: space-between; gap: 18px; padding: 10px 0; color: var(--grey); font-size: 12px; }
.checkout-breakdown > div strong { color: var(--ink); white-space: nowrap; }
.checkout-breakdown > div small { display: block; margin-top: 3px; color: var(--grey); font-size: 10px; }
.checkout-breakdown .checkout-breakdown-total { margin-top: 3px; padding-top: 15px; border-top: 1px solid var(--line); color: var(--ink); font-weight: 800; }
.checkout-breakdown .checkout-breakdown-total strong { font-size: 20px; }
.checkout-breakdown.compact { margin: 10px 0 16px; }
.checkout-breakdown.compact > div { padding: 8px 0; font-size: 11px; }
.checkout-breakdown.compact .checkout-breakdown-total strong { font-size: 18px; }
.confirmation-page { display: grid; place-items: start center; }
.confirmation-card { width: min(760px, 100%); padding: clamp(24px, 5vw, 52px); text-align: center; }
.confirmation-card .detail-description { max-width: 590px; margin: 0 auto; }
.confirmation-mark { width: 62px; height: 62px; display: grid; place-items: center; margin: 0 auto 22px; border-radius: 50%; background: var(--green); color: var(--white); font-size: 30px; font-weight: 900; }
.confirmation-lines { margin: 30px 0; text-align: left; }
.confirmation-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.confirmation-actions .secondary-button { color: var(--red); border-color: #e1d4cf; }
.empty-detail { max-width: 650px; padding: 70px 0; }
.ad-strip-wrap { padding-top: 0; padding-bottom: 0; background: var(--cream); }
.ad-strip-ticker { height: calc(var(--hero-height) / 4); min-height: calc(var(--hero-height) / 4); border-radius: 20px; box-shadow: 0 10px 30px rgba(28,20,18,.08); }
.ad-strip-ticker .ad-slide { min-width: min(100vw, 1440px); flex-basis: min(100vw, 1440px); }
.ad-strip-ticker::after { background: linear-gradient(90deg, rgba(0,0,0,.34), rgba(0,0,0,.10) 60%, rgba(0,0,0,.20)); }
.ad-strip-ticker .ad-slide-copy { left: 24px; right: 24px; bottom: 18px; }
.ad-strip-ticker .ad-slide-copy strong { font-size: clamp(14px, 2vw, 21px); }
.ad-strip-ticker .ad-slide-copy small { margin-top: 5px; font-size: 9px; }
.ad-strip-ticker .ad-slide-copy .ad-tag { padding: 6px 9px; font-size: 9px; }
.ad-strip-ticker .ad-slide.is-text .ad-slide-copy { padding: 18px; }
.ad-strip-ticker .ad-slide.is-text .ad-slide-copy strong { font-size: clamp(17px, 3vw, 32px); }
.trust-panel { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 26px; padding-top: 54px; padding-bottom: 54px; background: #f1eae7; }
.trust-icon, .phone-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 18px; background: var(--red); color: var(--white); font-size: 25px; font-weight: 900; }
.trust-panel h2, .install-card h2 { max-width: 560px; }
.trust-panel p:not(.eyebrow), .install-card p:not(.eyebrow) { color: #716b68; line-height: 1.6; max-width: 620px; margin-bottom: 0; }
.install-card { display: flex; align-items: center; gap: 20px; padding-top: 48px; padding-bottom: 48px; background: var(--white); position: relative; }
.install-card h2 { font-size: clamp(24px, 3vw, 36px); }
.dismiss-button { margin-left: auto; align-self: start; color: var(--grey); }
.footer { padding-top: 38px; padding-bottom: 100px; background: var(--ink); color: var(--white); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: center; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer p { color: #a39b98; font-size: 13px; margin: 0; }
.footer-links { justify-self: end; display: flex; gap: 16px; color: #c7bfbc; font-size: 12px; }
.mobile-nav { display: none; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 20; transform: translate(-50%, 20px); background: var(--ink); color: var(--white); border-radius: 12px; padding: 12px 16px; font-size: 12px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .2s ease; width: max-content; max-width: calc(100% - 40px); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.whatsapp-chat { position: fixed; right: 20px; bottom: 22px; z-index: 19; display: grid; justify-items: end; gap: 10px; }
.whatsapp-fab { display: inline-flex; align-items: center; gap: 9px; border: 0; border-radius: 99px; padding: 12px 16px 12px 12px; background: var(--red); color: var(--white); box-shadow: 0 12px 28px rgba(193, 48, 46, .28); font-size: 12px; font-weight: 900; }
.whatsapp-fab:hover { background: var(--red-dark); transform: translateY(-1px); }
.whatsapp-fab-icon { width: 25px; height: 25px; display: grid; place-items: center; border: 2px solid currentColor; border-radius: 50%; font-size: 15px; line-height: 1; }
.whatsapp-panel { width: min(360px, calc(100vw - 32px)); max-height: min(680px, calc(100vh - 130px)); overflow: auto; padding: 20px; border: 1px solid #ead6d0; border-radius: 20px; background: var(--white); box-shadow: 0 20px 55px rgba(86, 35, 28, .2); }
.whatsapp-panel-heading { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.whatsapp-panel-heading h2 { font-size: 25px; margin-bottom: 0; }
.whatsapp-panel-heading .icon-button { color: var(--red); background: #fff1ed; }
.whatsapp-intro { color: #716b68; font-size: 12px; line-height: 1.55; margin: 12px 0 17px; }
.whatsapp-form { display: grid; gap: 11px; }
.whatsapp-form label, .platform-settings-form label { display: grid; gap: 6px; color: #5f5956; font-size: 11px; font-weight: 800; }
.whatsapp-form input, .whatsapp-form select, .whatsapp-form textarea, .platform-settings-form input, .platform-settings-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 10px 11px; color: var(--ink); background: var(--white); outline: 0; font-size: 12px; resize: vertical; }
.whatsapp-form input:focus, .whatsapp-form select:focus, .whatsapp-form textarea:focus, .platform-settings-form input:focus, .platform-settings-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }
.whatsapp-submit { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 10px; padding: 12px 14px; background: var(--red); color: var(--white); font-size: 12px; font-weight: 900; }
.whatsapp-submit:hover { background: var(--red-dark); }
.whatsapp-note { color: #7d7773; font-size: 10px; line-height: 1.45; margin: 12px 0 0; }
.settings-card { max-width: 760px; }
.platform-settings-form { display: grid; gap: 13px; }
.form-help { color: var(--grey); font-size: 11px; margin: -4px 0 2px; }

/* Local demo sign-in */
.login-body { position: relative; isolation: isolate; min-height: 100vh; overflow-x: hidden; background: var(--red); display: grid; place-items: center; padding: 24px; }
.login-body::before, .login-body::after { content: ""; position: fixed; inset: 0; pointer-events: none; }
.login-body::before { z-index: 0; background-image: var(--login-background-image, none); background-size: cover; background-position: center center; background-repeat: no-repeat; filter: blur(18px); transform: scale(1.06); opacity: 0; transition: opacity .35s ease; }
.login-body::after { z-index: 0; background: linear-gradient(135deg, rgba(116, 18, 18, .82), rgba(193, 48, 46, .62) 48%, rgba(72, 12, 12, .8)); }
.login-body.login-background-ready::before { opacity: 1; }
.login-shell { position: relative; z-index: 1; width: min(100%, 520px); }
.login-card { background: var(--white); border-radius: 26px; padding: clamp(24px, 6vw, 48px); box-shadow: 0 30px 80px rgba(52, 16, 13, .25); }
.login-logo { display: inline-flex; width: 174px; margin-bottom: 48px; }
.login-logo img { display: block; width: 100%; height: auto; }
.login-card h1 { font-size: clamp(38px, 7vw, 60px); color: var(--ink); margin-bottom: 14px; }
.login-intro, .login-note { color: var(--grey); font-size: 13px; line-height: 1.6; }
.panel-choices { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin: 28px 0; }
.panel-choice { border: 1px solid var(--line); background: #fffdfc; border-radius: 13px; padding: 13px 8px; text-align: left; display: grid; gap: 4px; color: #746d69; }.panel-choice span { color: var(--red); font-size: 16px; }.panel-choice b { font-size: 12px; color: var(--ink); }.panel-choice small { font-size: 10px; }.panel-choice.active, .panel-choice:hover { border-color: var(--red); background: #fff1ed; }.panel-choice.active b { color: var(--red); }
.login-form { display: grid; gap: 15px; }.login-form label { display: grid; gap: 7px; font-size: 12px; font-weight: 800; }.login-form input { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 13px 14px; color: var(--ink); outline: 0; }.login-form input:focus { border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }.login-button { width: 100%; display: flex; justify-content: center; gap: 12px; margin-top: 5px; }.login-note { font-size: 11px; margin: 0; }.login-note b { color: var(--ink); }.back-link { display: inline-block; margin-top: 24px; color: var(--red); font-size: 12px; font-weight: 900; }

/* Dashboard */
.dashboard-body { background: #f7f3f1; }
.dashboard-shell { min-height: 100vh; }
.dash-topbar { min-height: 72px; padding: 16px clamp(20px, 4vw, 60px); background: var(--white); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.avatar { width: 36px; height: 36px; display: grid; place-items: center; background: #f2e7e3; color: var(--red); border-radius: 50%; font-weight: 900; }
.dashboard-layout { width: min(1500px, 100%); margin: 0 auto; display: grid; grid-template-columns: 240px minmax(0, 1fr); }
.panel-menu-toggle { display: none; border: 0; background: #f4e9e5; color: var(--red); width: 38px; height: 38px; border-radius: 11px; font-size: 19px; }
.side-nav-close { display: none; border: 0; background: #f4e9e5; color: var(--red); width: 36px; height: 36px; border-radius: 50%; font-size: 22px; line-height: 1; margin-left: auto; margin-bottom: 18px; }
.dashboard-menu-scrim { display: none; }
.side-nav { min-height: calc(100vh - 72px); padding: 40px 22px; background: var(--white); border-right: 1px solid var(--line); }
.side-link { display: flex; align-items: center; gap: 12px; color: #79716d; padding: 13px 14px; border-radius: 12px; font-size: 13px; font-weight: 800; margin-bottom: 4px; }
.side-link.active, .side-link:hover { background: #f9ece9; color: var(--red); }
.side-help { margin-top: 80px; padding: 16px; background: #f6eeeb; border-radius: 15px; display: grid; gap: 8px; font-size: 12px; line-height: 1.45; }
.side-help span { color: var(--grey); }
.side-help a { color: var(--red); font-weight: 800; }
.dashboard-main, .admin-main { max-width: 1200px; width: 100%; padding: 50px clamp(22px, 4vw, 68px) 90px; }
.dash-heading { display: flex; justify-content: space-between; align-items: end; gap: 25px; margin-bottom: 30px; }
.dash-heading h1 { font-size: clamp(34px, 4.5vw, 58px); margin-bottom: 12px; }
.dash-heading p:not(.eyebrow) { color: var(--grey); margin-bottom: 0; }
.verification-banner { display: flex; align-items: center; gap: 14px; background: #fff3e6; border: 1px solid #f4dbc7; border-radius: 15px; padding: 16px; margin-bottom: 22px; }
.verification-banner p { color: #7a6d64; font-size: 12px; margin: 4px 0 0; }
.verification-banner .text-button { margin-left: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-bottom: 22px; }
.stat-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 18px; display: grid; gap: 8px; }
.stat-card span, .stat-card small { color: var(--grey); font-size: 11px; }
.stat-card strong { font-size: clamp(25px, 3vw, 36px); letter-spacing: -.05em; }
.stat-card small.up, .green { color: var(--green); }
.status-word { color: var(--green); font-size: 24px !important; }
.accent-number { color: var(--red); }
.dashboard-card { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 24px; margin-bottom: 22px; }
.card-heading { align-items: center; margin-bottom: 20px; }
.card-heading h2 { font-size: 24px; }
.listing-row, .review-row, .table-line { min-height: 66px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }
.mini-media { width: 54px; height: 44px; border-radius: 10px; display: grid; place-items: center; color: var(--white); font-size: 8px; letter-spacing: .1em; font-weight: 900; }
.mini-media.food-media { background: var(--orange); }.mini-media.event-media { background: var(--ink); }
.row-copy { display: grid; gap: 5px; min-width: 0; flex: 1; }.row-copy b { font-size: 13px; }.row-copy span { color: var(--grey); font-size: 11px; }
.row-number { font-size: 12px; color: var(--green); }.muted { color: var(--grey); }
.promo-callout { background: #f9ece9; border-radius: 14px; padding: 15px; display: flex; gap: 14px; align-items: center; margin-bottom: 12px; }.promo-mark { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--white); background: var(--red); }.promo-callout b { font-size: 13px; }.promo-callout p { color: var(--grey); font-size: 11px; margin: 4px 0 0; }.promo-price { margin-left: auto; color: var(--red); font-size: 12px; font-weight: 900; white-space: nowrap; }
.table-line { justify-content: space-between; color: #665f5c; font-size: 12px; }.table-line small { display: block; color: var(--grey); margin-top: 4px; }.audience-card { display: flex; justify-content: space-between; align-items: end; gap: 30px; }.audience-card p:not(.eyebrow) { color: var(--grey); line-height: 1.55; max-width: 520px; }.bars { height: 100px; display: flex; align-items: end; gap: 8px; padding: 0 12px; }.bars i { display: block; width: 14px; max-height: 100%; border-radius: 5px 5px 0 0; background: linear-gradient(var(--red), var(--orange)); }
.team-list, .customer-picks { display: grid; gap: 0; }.team-row, .customer-pick { min-height: 66px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 14px; }.team-row .review-status { margin-left: auto; }.customer-pick { justify-content: space-between; }.customer-pick > div { display: grid; gap: 5px; }.customer-pick span { color: var(--grey); font-size: 11px; }.customer-name { font-size: 22px !important; letter-spacing: -.04em; }
.admin-main { margin: 0 auto; }.review-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: var(--white); font-size: 10px; font-weight: 900; }.red-avatar { background: var(--red); }.orange-avatar { background: var(--orange); }.black-avatar { background: var(--ink); }.review-status { font-size: 11px; font-weight: 800; }.pending { color: var(--orange); }.approved { color: var(--green); }.small-button { border: 1px solid var(--line); background: var(--white); color: var(--red); border-radius: 9px; padding: 8px 11px; font-size: 11px; font-weight: 800; }
.dashboard-muted { color: var(--grey); font-size: 12px; line-height: 1.5; margin: 6px 0 0; max-width: 640px; }
.control-badge { align-self: start; border-radius: 99px; padding: 7px 10px; background: #f1eae7; color: var(--green); font-size: 10px; font-weight: 900; white-space: nowrap; }
.ad-settings-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 26px; }
.ad-setting-box { min-width: 0; border: 1px solid var(--line); border-radius: 15px; padding: 16px; display: grid; gap: 13px; }
.ad-setting-box legend { padding: 0 7px; color: var(--ink); font-size: 13px; font-weight: 900; }
.ad-setting-box label { display: grid; gap: 6px; color: #5f5956; font-size: 11px; font-weight: 800; }
.ad-setting-box select, .ad-input-list input { width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: 10px 11px; color: var(--ink); background: var(--white); outline: 0; font-size: 12px; }
.ad-setting-box select:focus, .ad-input-list input:focus { border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }
.check-row { display: flex !important; grid-template-columns: none; align-items: center; gap: 8px; }
.check-row input { accent-color: var(--red); }
.ad-content-fields { display: grid; gap: 11px; }
.ad-input-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 8px; }
.ad-input-list label { display: grid; gap: 6px; color: #5f5956; font-size: 10px; font-weight: 800; }
.ad-form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.ad-form-actions .secondary-button { color: var(--red); border-color: #e1d4cf; }
.ad-save-note { color: var(--grey); font-size: 11px; }
.ad-preview-link { color: var(--red); }
.clickable-row { cursor: pointer; }
.clickable-row:hover { background: #fff9f6; }
.dashboard-preview-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.dashboard-preview-card { min-height: 190px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); display: flex; flex-direction: column; align-items: flex-start; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.dashboard-preview-card:hover { transform: translateY(-3px); border-color: #d8aaa1; box-shadow: var(--shadow); }
.dashboard-preview-card h2 { font-size: 24px; margin-bottom: 8px; }
.dashboard-preview-card p:not(.eyebrow) { color: var(--grey); font-size: 12px; line-height: 1.55; max-width: 440px; margin-bottom: 14px; }
.preview-icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: #f9ece9; color: var(--red); font-size: 18px; margin-bottom: 20px; }
.preview-link { margin-top: auto; color: var(--red); font-size: 12px; font-weight: 900; }
.preview-callout { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.preview-callout h2, .preview-callout p { width: 100%; }
.management-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.management-heading h1 { font-size: clamp(34px, 4.5vw, 58px); margin-bottom: 12px; }
.management-heading p:not(.eyebrow) { color: var(--grey); line-height: 1.55; margin-bottom: 0; max-width: 680px; }
.broadcast-composer { margin-bottom: 22px; }
.broadcast-form { display: grid; gap: 14px; max-width: 760px; }
.broadcast-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 12px; color: var(--ink); background: var(--white); outline: 0; font: inherit; font-size: 12px; line-height: 1.5; resize: vertical; }
.broadcast-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }
.broadcast-channel-set { display: flex; flex-wrap: wrap; gap: 10px 16px; margin: 0; padding: 0; border: 0; }
.broadcast-channel-set legend { width: 100%; margin-bottom: 2px; color: #5f5956; font-size: 11px; font-weight: 800; }
.broadcast-channel-set .check-row { display: inline-flex; align-items: center; }
.broadcast-preview { display: grid; gap: 12px; }
.broadcast-preview h3 { margin: 0; font-size: 24px; }
.broadcast-preview p:not(.eyebrow) { margin: 0; padding: 14px; border-radius: 12px; background: #faf4f1; color: var(--grey); line-height: 1.55; white-space: pre-wrap; }
.broadcast-preview dl { display: grid; gap: 8px; margin: 0; }
.broadcast-preview dl div { display: flex; justify-content: space-between; gap: 18px; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.broadcast-preview dt { color: var(--grey); font-size: 11px; }
.broadcast-preview dd { margin: 0; color: var(--ink); font-size: 11px; font-weight: 800; text-align: right; }
.broadcast-note { margin-top: 22px; }
.broadcast-note h3 { margin-bottom: 7px; }
.broadcast-note p:not(.eyebrow) { max-width: 800px; color: var(--grey); line-height: 1.55; }
.management-workspace { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(270px, .75fr); align-items: start; gap: 22px; }
.management-stack { display: grid; gap: 22px; }
.table-card { min-width: 0; }
.data-table-wrap { width: 100%; overflow-x: auto; }
.data-table { width: 100%; min-width: 700px; border-collapse: collapse; text-align: left; }
.data-table th { color: var(--grey); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 10px 10px 13px; white-space: nowrap; }
.data-table td { border-top: 1px solid var(--line); padding: 14px 10px; color: #665f5c; font-size: 12px; vertical-align: middle; }
.data-table td b { display: block; color: var(--ink); font-size: 12px; }
.data-table td small { display: block; margin-top: 5px; color: var(--grey); font-size: 10px; }
.data-table td:last-child, .data-table th:last-child { min-width: 290px; }
.empty-cell { color: var(--grey) !important; text-align: center; padding: 36px 10px !important; }
.record-actions { display: flex; flex-wrap: wrap; gap: 5px; }
.table-action { border: 1px solid var(--line); background: var(--white); color: var(--red); border-radius: 8px; padding: 7px 8px; font-size: 10px; font-weight: 900; white-space: nowrap; }
.table-action:hover { background: #f9ece9; }
.danger-action { color: #9b3f37; }
.record-preview-card { position: sticky; top: 20px; min-height: 300px; }
.record-preview-label { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.record-preview-media { min-height: 100px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px; color: var(--white); font-size: 10px; font-weight: 900; letter-spacing: .1em; background: linear-gradient(135deg, var(--ink), var(--red)); }
.record-preview-card h3 { font-size: 22px; line-height: 1.08; margin: 0 0 4px; }
.record-preview-card dl { display: grid; gap: 10px; margin: 20px 0; }
.record-preview-card dl div { display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 10px; }
.record-preview-card dt { color: var(--grey); font-size: 10px; }
.record-preview-card dd { margin: 0; color: var(--ink); font-size: 11px; font-weight: 800; text-align: right; }
.record-preview-empty { display: grid; gap: 10px; color: var(--grey); font-size: 12px; line-height: 1.5; }
.record-preview-empty span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.record-preview-empty b { color: var(--ink); font-size: 19px; }
.record-preview-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.record-preview-ticket { display: grid; grid-template-columns: minmax(0, 1fr) 116px; gap: 16px; align-items: start; }
.record-preview-ticket-copy h3 { margin-bottom: 5px; }
.record-preview-ticket-copy dl { margin: 16px 0; }
.record-preview-ticket-qr { display: grid; justify-items: center; gap: 6px; padding: 8px 0 0 12px; border-left: 1px dashed var(--line); }
.record-preview-ticket-qr .ticket-qr-link { padding: 4px; }
.record-preview-ticket-qr .ticket-qr { width: 92px; height: 92px; }
.record-preview-ticket-qr small { color: var(--grey); font-size: 9px; font-weight: 800; text-align: center; }
.analytics-note { display: flex; align-items: center; gap: 9px; padding: 12px 14px; background: #fff3e6; border: 1px solid #f4dbc7; border-radius: 12px; color: #7a6d64; font-size: 11px; margin-bottom: 20px; }
.analytics-stats { margin-bottom: 22px; }
.chart-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.chart-card { min-width: 0; margin-bottom: 0; }
.chart-card .card-heading { margin-bottom: 14px; }
.chart-card .card-heading h2 { font-size: 21px; }
.chart-legend { color: var(--grey); font-size: 10px; display: inline-flex; align-items: center; gap: 6px; }
.chart-legend i { width: 8px; height: 8px; display: inline-block; border-radius: 50%; background: var(--red); }
.line-chart { display: block; width: 100%; height: 170px; overflow: visible; }
.chart-grid-line { fill: none; stroke: #eee7e4; stroke-width: .8; }
.chart-labels { display: grid; grid-template-columns: repeat(7, 1fr); color: var(--grey); font-size: 9px; text-align: center; margin-top: 2px; }
.horizontal-bars { display: grid; gap: 15px; }
.horizontal-bar-row { display: grid; gap: 7px; }
.horizontal-bar-row > div { display: flex; justify-content: space-between; gap: 10px; }
.horizontal-bar-row b { color: var(--ink); font-size: 11px; }.horizontal-bar-row span { color: var(--grey); font-size: 10px; }
.horizontal-bar-row > i { height: 8px; border-radius: 99px; background: #f1e8e5; overflow: hidden; }.horizontal-bar-row > i em { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--red), var(--orange)); }
.category-bars { height: 205px; display: flex; align-items: end; justify-content: space-around; gap: 12px; border-bottom: 1px solid var(--line); padding: 0 4px; }
.category-bar { height: 100%; display: flex; flex: 1; flex-direction: column; align-items: center; justify-content: end; gap: 6px; }.category-bar span { color: var(--grey); font-size: 10px; }.category-bar b { color: var(--ink); font-size: 11px; }.category-bar i { width: min(42px, 100%); height: 150px; display: flex; align-items: end; border-radius: 8px 8px 0 0; background: #f5ece9; overflow: hidden; }.category-bar i em { display: block; width: 100%; border-radius: inherit; background: linear-gradient(var(--orange), var(--red)); }
.sales-table { display: grid; gap: 0; }.sales-table > div { min-height: 44px; display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px; border-top: 1px solid var(--line); font-size: 11px; }.sales-table span { color: var(--grey); }.sales-table b { color: var(--ink); }.sales-table strong { color: var(--green); font-size: 11px; }
.account-card { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }.account-summary { display: flex; align-items: center; gap: 12px; margin-right: auto; }.account-summary b { font-size: 16px; }.account-summary p { color: var(--grey); font-size: 11px; margin: 5px 0 0; }

/* Local preview actions */
.action-dialog { width: min(560px, calc(100% - 28px)); border: 0; border-radius: 22px; padding: 0; color: var(--ink); box-shadow: 0 24px 90px rgba(22, 22, 22, .28); }
.action-dialog::backdrop { background: rgba(22, 22, 22, .48); }
.action-dialog-card { padding: 26px; }
.action-dialog-close { float: right; border: 0; background: #f4ece9; color: var(--ink); width: 34px; height: 34px; border-radius: 50%; font-size: 22px; line-height: 1; }
.action-dialog h2 { margin: 8px 42px 8px 0; font-size: clamp(25px, 4vw, 34px); }
.action-dialog-intro { color: var(--grey); font-size: 12px; line-height: 1.55; margin-bottom: 20px; }
.action-dialog-form { display: grid; gap: 14px; }
.action-dialog-form label { display: grid; gap: 6px; color: #5f5956; font-size: 11px; font-weight: 800; }
.action-dialog-form input, .action-dialog-form select, .action-dialog-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; color: var(--ink); background: var(--white); outline: 0; font-size: 12px; }
.action-dialog-form textarea { min-height: 86px; resize: vertical; }
.action-dialog-form input:focus, .action-dialog-form select:focus, .action-dialog-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }
.action-dialog-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 4px; }
.action-dialog-actions .secondary-button { color: var(--red); border-color: #e1d4cf; }
.image-upload-help { margin: -7px 0 2px; color: var(--grey); font-size: 10px; line-height: 1.5; font-weight: 600; }
.ad-guidance { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; margin: 0 0 18px; padding: 12px 14px; border: 1px solid #f0d8d2; border-radius: 12px; background: #fff8f5; color: var(--grey); font-size: 11px; line-height: 1.5; }
.ad-guidance b { color: var(--red); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.live-ad-dialog { width: min(1000px, calc(100% - 28px)); }
.live-ad-dialog .action-dialog-card { padding: clamp(18px, 3vw, 30px); }
.live-ad-preview { display: grid; gap: 12px; }
.live-ad-preview-toolbar { display: flex; justify-content: space-between; gap: 12px; color: var(--grey); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.live-ad-preview-toolbar span:last-child { color: var(--red); }
.live-ad-preview-stage { position: relative; min-height: 280px; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 18px; background: linear-gradient(135deg, var(--ink), var(--red)); color: var(--white); isolation: isolate; }
.live-ad-preview-stage.is-strip { min-height: 170px; aspect-ratio: 4 / 1; }
.live-ad-preview-stage > img { position: absolute; inset: 0; z-index: 0; display: block; width: 100%; height: 100%; object-fit: cover; }
.live-ad-preview-stage.is-text { background: var(--red); }
.live-ad-preview-image-fallback { position: absolute; inset: 0; z-index: 0; display: grid; place-items: center; color: rgba(255,255,255,.74); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.live-ad-preview-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,0,0,.38), rgba(0,0,0,.08) 70%, rgba(0,0,0,.2)); pointer-events: none; }
.live-ad-preview-stage.is-text .live-ad-preview-shade { display: none; }
.live-ad-preview-grid { position: absolute; inset: 0; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; pointer-events: none; opacity: .65; }
.live-ad-preview-grid span { padding: 9px; border: 1px dashed rgba(255,255,255,.58); color: rgba(255,255,255,.74); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.live-ad-preview-grid span:nth-child(1) { grid-area: 1 / 1; }
.live-ad-preview-grid span:nth-child(2) { grid-area: 1 / 2; text-align: right; }
.live-ad-preview-grid span:nth-child(3) { grid-area: 2 / 1; align-self: end; }
.live-ad-preview-grid span:nth-child(4) { grid-area: 2 / 2; align-self: end; text-align: right; }
.live-ad-preview-copy { position: absolute; z-index: 3; display: grid; gap: 8px; max-width: 48%; text-shadow: 0 2px 18px rgba(0,0,0,.36); }
.live-ad-preview-copy.top-left { top: 24px; left: 26px; }
.live-ad-preview-copy.top-right { top: 24px; right: 26px; text-align: right; }
.live-ad-preview-copy.bottom-left { left: 26px; bottom: 24px; }
.live-ad-preview-copy.bottom-right { right: 26px; bottom: 24px; text-align: right; }
.live-ad-preview-copy.center { top: 50%; left: 50%; max-width: 70%; transform: translate(-50%, -50%); text-align: center; }
.live-ad-preview-copy small { color: #ffc8bd; font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.live-ad-preview-copy strong { font-size: clamp(20px, 4vw, 48px); line-height: .98; letter-spacing: -.035em; }
.live-ad-preview-copy.center .live-ad-preview-cta { justify-self: center; }
.live-ad-preview-cta { justify-self: start; width: max-content; max-width: 100%; padding: 8px 11px; border: 1px solid rgba(255,255,255,.55); border-radius: 99px; background: rgba(22,22,22,.25); font-size: 10px; font-weight: 900; }
.live-ad-preview-note { margin: 0; color: var(--grey); font-size: 11px; line-height: 1.55; }
.live-ad-preview-note b { color: var(--ink); }
.dialog-summary { display: grid; gap: 10px; padding: 14px; border-radius: 14px; background: #f8f2ef; color: #5f5956; font-size: 12px; line-height: 1.5; }
.dialog-summary b { color: var(--ink); }
.dialog-list { display: grid; gap: 8px; margin-bottom: 18px; }
.dialog-list div { display: flex; justify-content: space-between; gap: 12px; padding: 11px 12px; border: 1px solid var(--line); border-radius: 11px; font-size: 12px; }
.dialog-list span { color: var(--grey); }

@media (max-width: 800px) {
  :root { --hero-height: 560px; }.topbar { min-height: 68px; }.business-link { display: none; }.menu-button { display: block; }.hero { display: block; padding-top: 50px; padding-bottom: 38px; }.hero-copy { padding: 0; }.season-strip { display: block; }.outline-light { margin-top: 22px; }.browse-heading { align-items: start; }.location-status { text-align: left; }.interest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 12px; }.content-section { padding-top: 52px; padding-bottom: 45px; }.section-heading { align-items: center; }.listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }.card-media { min-height: 145px; }.card-body { padding: 14px; }.card-body h3 { font-size: 16px; }.card-meta { font-size: 11px; }.trust-panel { grid-template-columns: auto minmax(0, 1fr); }.trust-panel .arrow-link { grid-column: 2; }.footer { grid-template-columns: 1fr 1fr; padding-bottom: 95px; }.footer-links { grid-column: 1 / -1; justify-self: start; }.dashboard-layout { display: block; }.side-nav { display: none; }.dashboard-main, .admin-main { padding: 32px 18px 88px; }.dash-heading { display: block; }.dash-heading .primary-button, .dash-heading .secondary-button { margin-top: 20px; }.stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.dashboard-card { padding: 18px; }.audience-card { display: block; }.bars { margin-top: 25px; }.dashboard-mobile-nav { display: flex; }.dashboard-mobile-nav .mobile-nav-item { color: #716b68; }.dashboard-mobile-nav .mobile-nav-item span { display: block; }.admin-main .dash-heading { margin-bottom: 24px; }.ad-slide { flex-basis: 100vw; min-width: 100vw; }.ad-slide-copy { bottom: 18px; }.ad-settings-grid, .ad-input-list { grid-template-columns: 1fr; }.ad-controls-card .card-heading { align-items: start; flex-direction: column; }.control-badge { align-self: start; }
}
@media (max-width: 800px) {
  .dash-topbar { gap: 12px; }
  .panel-menu-toggle { display: grid; place-items: center; flex: 0 0 auto; }
  .dash-topbar .brand { margin-right: auto; }
  .side-nav { display: block; position: fixed; inset: 0 auto 0 0; z-index: 30; width: min(84vw, 330px); min-height: 100vh; padding: 26px 20px; overflow-y: auto; transform: translateX(-110%); transition: transform .22s ease; box-shadow: 18px 0 40px rgba(22,22,22,.16); }
  .side-menu-open .side-nav { transform: translateX(0); }
  .side-nav-close { display: grid; place-items: center; }
  .side-menu-open .dashboard-menu-scrim { display: block; position: fixed; inset: 0; z-index: 25; background: rgba(22,22,22,.42); }
  .management-heading { display: block; }.management-heading .primary-button, .management-heading .secondary-button { display: inline-flex; margin-top: 18px; }
  .dashboard-preview-grid, .chart-grid { grid-template-columns: 1fr; }
  .management-workspace { grid-template-columns: 1fr; }
  .record-preview-card { position: static; }
  .record-preview-ticket { grid-template-columns: 1fr; }
  .record-preview-ticket-qr { border-left: 0; border-top: 1px dashed var(--line); padding: 16px 0 0; justify-items: start; }
  .data-table { min-width: 690px; }
  .data-table-wrap { margin-left: -8px; margin-right: -8px; padding: 0 8px; }
  .record-actions { flex-wrap: nowrap; }
  .table-action { padding: 7px 6px; }
}
@media (max-width: 520px) {
  .hero-text { font-size: 15px; }.search-box { height: 52px; border-radius: 14px; padding-left: 14px; }.search-go { padding: 10px 13px; }.browse-heading { display: block; }.location-status { margin-top: 10px; text-align: left; }.interest-section { padding-top: 34px; padding-bottom: 38px; }.interest-grid { display: flex; overflow-x: auto; justify-content: start; gap: 16px; padding: 3px 2px 8px; }.interest-card { flex: 0 0 118px; }.interest-icon { width: 68px; height: 68px; font-size: 23px; }.listing-grid { grid-template-columns: 1fr; }.card-media { min-height: 170px; }.trust-panel { gap: 16px; }.trust-panel h2 { font-size: 25px; }.trust-icon, .phone-icon { width: 46px; height: 46px; border-radius: 14px; font-size: 19px; }.install-card { align-items: flex-start; padding-top: 34px; padding-bottom: 82px; }.install-card .phone-icon { flex: 0 0 auto; }.install-card h2 { font-size: 24px; }.dismiss-button { position: absolute; right: 18px; bottom: 30px; }.footer { display: block; }.footer p { margin: 16px 0; }.footer-links { flex-wrap: wrap; }.verification-banner { align-items: start; flex-wrap: wrap; }.verification-banner .text-button { margin-left: 22px; }.listing-row, .review-row, .table-line { gap: 9px; }.row-number { display: none; }.review-status { margin-left: auto; }.promo-callout { align-items: start; flex-wrap: wrap; }.promo-price { margin-left: 50px; }.table-line { min-height: 60px; }.panel-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); }.mobile-nav { position: fixed; left: 0; right: 0; bottom: 0; z-index: 15; min-height: 67px; padding: 7px max(8px, env(safe-area-inset-left)) max(7px, env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(30, 20, 17, .08); display: flex; justify-content: space-around; }.mobile-nav-item { border: 0; background: transparent; display: grid; place-items: center; gap: 3px; min-width: 70px; color: #8a8380; font-size: 10px; font-weight: 800; }.mobile-nav-item span:first-child { font-size: 20px; line-height: 1; }.mobile-nav-item.active { color: var(--red); }.footer { padding-bottom: 95px; }
  .whatsapp-chat { right: 14px; bottom: 82px; }.whatsapp-fab { padding: 11px 13px 11px 10px; }.whatsapp-panel { max-height: calc(100vh - 150px); padding: 17px; }
}
@media (max-width: 800px) {
  .detail-layout, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .detail-media { min-height: 330px; }
  .detail-copy { padding: 22px; }
  .cart-page-heading, .checkout-heading { display: block; }
  .cart-page-heading .secondary-button { display: inline-flex; margin-top: 18px; }
  .cart-row { grid-template-columns: 58px minmax(0, 1fr) auto; gap: 10px; }
  .cart-row > img { width: 58px; height: 58px; }
  .cart-line-total { grid-column: 2; text-align: left; }
  .cart-remove { grid-column: 3; grid-row: 2; }
  .cart-summary { position: static; }
}
@media (max-width: 520px) {
  .detail-page, .cart-page, .checkout-page, .confirmation-page { padding-top: 32px; padding-bottom: 75px; }
  .detail-media { min-height: 260px; border-radius: 18px; }
  .detail-copy h1, .empty-detail h1, .cart-page-heading h1, .checkout-heading h1, .confirmation-card h1 { font-size: 42px; }
  .cart-items { padding: 0 15px; }
  .cart-row { grid-template-columns: 50px minmax(0, 1fr) auto; }
  .cart-row > img { width: 50px; height: 50px; }
  .cart-quantity { gap: 4px; }
  .cart-quantity button { width: 24px; height: 24px; }
  .cart-row-copy b { font-size: 12px; }
}
@media (max-width: 800px) {
  .time-filter-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .master-search-hero { padding-top: 52px; padding-bottom: 52px; }
  .master-filter-heading { display: block; }
  .master-filter-heading .text-button { display: inline-flex; margin-top: 16px; }
}
@media (max-width: 520px) {
  .time-filter-grid { grid-template-columns: 1fr; }
  .date-filter-row { display: grid; justify-items: start; gap: 7px; }
  .master-search-hero h1 { font-size: 48px; }
  .master-filter-panel { padding-top: 34px; }
  .master-filter-label { display: block; }
  .master-filter-label > span, .master-filter-label .text-button { display: block; margin-top: 8px; text-align: left; }
}

.city-filter-row { display: inline-flex; align-items: center; gap: 10px; margin: 4px 0 14px; color: var(--grey); font-size: 11px; font-weight: 800; }
.city-filter-row select { border: 1px solid var(--line); border-radius: 10px; padding: 9px 30px 9px 11px; color: var(--ink); background: var(--white); font-size: 12px; }
.city-filter-row select:focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 3px #f9d2c8; }
.demo-mfa-code { display: grid; gap: 4px; padding: 14px; border-radius: 14px; background: #fff1ed; border: 1px solid #f3c8bd; color: var(--red); }
.demo-mfa-code span { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.demo-mfa-code b { font-size: 27px; letter-spacing: .18em; }
.ticket-list { display: grid; gap: 18px; }
.ticket-card { display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 22px; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
.ticket-card h3 { margin-bottom: 8px; font-size: 24px; }
.ticket-event-meta { color: var(--grey); font-size: 12px; line-height: 1.5; }
.ticket-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px 20px; margin: 18px 0 0; }
.ticket-details div { min-width: 0; }
.ticket-details dt { color: var(--grey); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.ticket-details dd { margin: 3px 0 0; color: var(--ink); font-size: 12px; overflow-wrap: anywhere; }
.ticket-privacy-note, .ticket-login-note { color: var(--grey); font-size: 10px; line-height: 1.5; }
.ticket-card-qr { display: grid; align-content: start; justify-items: center; gap: 7px; padding: 10px; border-left: 1px dashed var(--line); }
.ticket-qr-link { display: block; padding: 5px; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }
.ticket-qr { display: block; width: 118px; height: 118px; image-rendering: pixelated; }
.ticket-card-qr small { color: var(--grey); font-size: 10px; font-weight: 800; }
.ticket-card-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; border-top: 1px solid var(--line); padding-top: 15px; }
.confirmation-ticket-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin: 30px 0 15px; }
.confirmation-ticket-heading h2 { font-size: 25px; }
.ticket-verify-card { max-width: 700px; margin: 0 auto; }
.ticket-verify-card h1 { font-size: clamp(38px, 6vw, 64px); }
.ticket-verify-status { display: inline-flex; margin-bottom: 18px; padding: 9px 12px; border-radius: 99px; font-size: 12px; font-weight: 900; }
.ticket-verify-status.is-valid { background: #e9f5ed; color: var(--green); }
.ticket-verify-status.is-void { background: #fff1ed; color: var(--red); }
.help-body { background: var(--white); }
.help-topbar { border-bottom: 1px solid var(--line); }
.help-page { max-width: 1200px; margin: 0 auto; padding-top: 30px; padding-bottom: 80px; }
.help-center-top { display: flex; justify-content: space-between; align-items: center; gap: 15px; }
.help-login-link { color: var(--red); font-size: 13px; font-weight: 900; }
.help-hero { padding: 70px 0 42px; text-align: center; }
.help-hero h1 { color: var(--ink); font-size: clamp(46px, 7vw, 82px); margin-bottom: 30px; }
.help-search { width: min(560px, 100%); height: 58px; margin: 0 auto 25px; display: flex; align-items: center; gap: 10px; padding: 7px 19px; border: 1px solid #d6cfcb; border-radius: 99px; color: var(--ink); }
.help-search span { font-size: 25px; }
.help-search input { min-width: 0; flex: 1; border: 0; outline: 0; color: var(--ink); font-size: 14px; }
.help-login-banner { width: min(880px, 100%); margin: auto; display: flex; justify-content: space-between; gap: 20px; padding: 15px 18px; border-radius: 10px; background: #fff1ed; color: #5f5956; font-size: 12px; text-align: left; }
.help-login-banner a { color: var(--red); font-weight: 900; white-space: nowrap; }
.help-tabs { display: flex; justify-content: center; gap: clamp(18px, 6vw, 80px); border-bottom: 1px solid var(--line); }
.help-tab { border: 0; border-bottom: 3px solid transparent; padding: 15px 5px 13px; background: transparent; color: var(--grey); font-size: 14px; font-weight: 900; }
.help-tab:hover, .help-tab.active { color: var(--red); border-bottom-color: var(--red); }
.help-section { padding: 38px 0 0; }
.help-section h2, .help-faq h2, .help-contact h2 { font-size: 28px; }
.help-article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.help-article-card, .help-topic-card { min-height: 96px; display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); text-align: left; font-size: 14px; font-weight: 900; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.help-article-card:hover, .help-topic-card:hover { border-color: #d8aaa1; box-shadow: var(--shadow); transform: translateY(-2px); }
.help-doc-icon { color: var(--red); font-size: 26px; }
.help-topic-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.help-topic-card { display: grid; justify-items: center; align-content: center; gap: 12px; min-height: 130px; text-align: center; }
.help-topic-card span { color: var(--red); font-size: 27px; }
.help-faq { margin-top: 38px; padding: 22px; }
.help-faq details { border-top: 1px solid var(--line); }
.help-faq summary { display: flex; justify-content: space-between; gap: 15px; padding: 18px 0; cursor: pointer; color: var(--ink); font-size: 13px; font-weight: 900; list-style: none; }
.help-faq summary::-webkit-details-marker { display: none; }
.help-faq summary span { color: var(--red); }
.help-faq details p { max-width: 780px; color: var(--grey); font-size: 12px; line-height: 1.6; }
.help-contact { margin: 70px auto 0; padding: 50px 20px; background: #fff1ed; text-align: center; border-radius: 20px; }
.help-contact p { color: var(--grey); font-size: 13px; }
.help-contact .primary-button { background: var(--red); }
.help-article-answer { display: grid; gap: 18px; color: var(--grey); font-size: 13px; line-height: 1.65; }
.legal-body { background: #f7f3f1; }
.legal-page { max-width: 900px; margin: 0 auto; padding-top: 60px; padding-bottom: 80px; }
.legal-page h1 { font-size: clamp(44px, 6vw, 72px); }
.legal-updated { color: var(--grey); font-size: 12px; }
.legal-card { margin-top: 32px; }
.legal-card h2 { margin-top: 28px; font-size: 24px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: var(--grey); font-size: 13px; line-height: 1.7; }
.legal-card a { color: var(--red); font-weight: 800; }

@media (max-width: 800px) {
  .ticket-card { grid-template-columns: 1fr; }
  .ticket-card-qr { border-left: 0; border-top: 1px dashed var(--line); padding: 18px 0 0; justify-items: start; }
  .help-article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .help-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .city-filter-row { display: grid; justify-items: start; }
  .ticket-details { grid-template-columns: 1fr; }
  .confirmation-ticket-heading { display: block; }
  .confirmation-ticket-heading .secondary-button { display: inline-flex; margin-top: 8px; }
  .help-hero { padding-top: 50px; }
  .help-login-banner { display: block; }
  .help-login-banner a { display: inline-block; margin-top: 10px; }
  .help-tabs { justify-content: start; overflow-x: auto; }
  .help-tab { flex: 0 0 auto; }
  .help-article-grid, .help-topic-grid { grid-template-columns: 1fr; }
}
@media print {
  body { background: #fff !important; }
  .topbar, .footer, .ticket-card-actions, .confirmation-actions, .confirmation-ticket-heading button, .whatsapp-chat, .mobile-nav, .side-nav, .dashboard-menu-scrim { display: none !important; }
  .ticket-page, .confirmation-page { padding: 0 !important; }
  .ticket-card { box-shadow: none; break-inside: avoid; margin-bottom: 20px; }
}
