@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@100..1000&display=swap');

/* =========================================
   Menu UI (Coffee Palette) — consolidated
   Includes: header wordmark, tabs, cards,
   modal, hero offers, opening-hours pill+modal
========================================= */

:root{
  --latte: #d9cfbf;
  --cream: #f6f0e8;
  --sand:  #cbb79f;
  --caramel:#b9885a;
  --espresso:#2a1f19;
  --mocha: #3a2b23;
  --shadow: 0 18px 45px rgba(0,0,0,.14);
  --radius: 18px;
  --stickyOffset: 150px;
}

*{ box-sizing:border-box; font-family: "Cairo", sans-serif; }
html{
  min-height: 100%;
  background: linear-gradient(180deg, #efe7db, #e7dccb);
}
body{
  margin: 0;
  background: transparent;
  color: var(--espresso);
}
a{ color:inherit; text-decoration:none; }

.container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 14px;
}

/* =========================
   Header
========================= */
.header{
  position: relative;
  border-bottom: 1px solid rgba(42,31,25,.12);
  min-height: 170px;
  overflow:hidden;
}
.header__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  filter:saturate(1.05);
  opacity:.35;
}
.header__veil{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 250px at 70% 0%, rgba(185,136,90,.28), transparent 60%),
    linear-gradient(180deg, rgba(246,240,232,.92), rgba(239,231,219,.94));
}
.header__inner{
  position:relative;
  max-width: 1000px;
  margin:0 auto;
  padding: 18px 14px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
}

/* Simple header layout */
.header__inner--simple{
  align-items:center;
}

/* Brand */
.brand{ display:flex; gap:12px; align-items:center; min-width:0; }

/* Wordmark logo (no square) */
.brand__logoWrap{ display:flex; align-items:center; flex-shrink:0; }
.brand__logoImg{
  height:44px;
  width:auto;
  max-width:180px;
  object-fit:contain;
  display:block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.25));
}
.brand__logoFallback{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  font-weight:950;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:#fff;
  backdrop-filter: blur(10px);
}

.brand__text{ min-width:0; display:flex; flex-direction:column; gap:2px; }
.brand__name{
  font-weight: 950;
  font-size: 15px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand__meta{
  font-size:11px;
  opacity:.8;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* Header actions */
.headerActions{
  display:flex;
  align-items:center;
  gap:6px;
  flex-shrink:0;
}
.iconBtn{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  color:#fff;
  backdrop-filter: blur(10px);
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.iconBtn:hover{ transform: translateY(-1px); background: rgba(0,0,0,.20); border-color: rgba(255,255,255,.22); }
.iconBtn i{ opacity:.95; }

/* Mobile header tuning */
@media (max-width: 520px){
  .brand__logoImg{ height:36px; max-width:150px; }
  .brand__logoFallback{ width:36px; height:36px; border-radius:12px; }
  .brand__name{ font-size:14px; }
}
@media (max-width: 380px){
  .brand__text{ display:none; }
}

/* =========================
   Page
========================= */
.page{ padding-bottom: 24px; }

/* =========================
   Offers bar (horizontal)
========================= */
.offers{ margin-top: 12px; }
.offers__inner{
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(246,240,232,.78);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  align-items:stretch;
}
.offers__badge{
  background: var(--espresso);
  color: var(--cream);
  padding: 12px 14px;
  font-weight: 900;
  display:flex;
  align-items:center;
  gap:10px;
}
.offers__track{
  flex:1;
  display:flex;
  gap: 10px;
  padding: 10px;
  overflow:auto;
  scroll-snap-type: x mandatory;
}
.offers__track::-webkit-scrollbar{ height:10px; }
.offers__track::-webkit-scrollbar-thumb{ background: rgba(42,31,25,.18); border-radius:999px; }
.offer{
  min-width: 240px;
  scroll-snap-align: start;
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(255,255,255,.55);
  border-radius: 16px;
  padding: 12px;
  transition: transform .12s ease;
}
.offer:hover{ transform: translateY(-2px); }
.offer__title{ font-weight: 950; font-size: 13px; }
.offer__sub{ margin-top:6px; color: rgba(42,31,25,.70); font-weight:800; font-size:12px; }
.offer__code{
  margin-top:10px;
  border: 1px dashed rgba(42,31,25,.22);
  background: rgba(185,136,90,.14);
  color: var(--espresso);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 950;
  cursor:pointer;
  width:100%;
  text-align:center;
}

/* =========================
   Toolbar (sticky search + tabs)
========================= */
.toolbar{
  margin-top: 14px;
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(246,240,232,.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
  position: sticky;
  top: 10px;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.toolbar__row{
  display:flex;
  gap:10px;
  align-items:center;
}
.searchbox{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  border: 1px solid rgba(42,31,25,.14);
  background: rgba(255,255,255,.55);
  border-radius: 16px;
  padding: 10px 12px;
}
.searchbox__icon{ font-weight: 950; opacity:.7; }
.searchbox__input{
  width:100%;
  border:0;
  outline:none;
  background: transparent;
  font-weight: 900;
  font-size: 13px;
  color: var(--espresso);
}
.searchbox__input::placeholder{ color: rgba(42,31,25,.55); }
.searchbox__clear{
  border:0;
  background: rgba(42,31,25,.08);
  width:28px; height:28px;
  border-radius: 10px;
  cursor:pointer;
  font-weight: 950;
}

.quickActions{ display:flex; gap:10px; flex-wrap:wrap; }
.btn{
  border: 1px solid rgba(42,31,25,.14);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 950;
  font-size: 12px;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  user-select:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(0,0,0,.08); }
.btn--cream{ background: rgba(255,255,255,.65); }
.btn--espresso{ background: var(--espresso); color: var(--cream); border-color: rgba(42,31,25,.25); }
.btn--latte{ background: rgba(185,136,90,.18); }
.btn--ghost{ background: rgba(255,255,255,.55); }

/* =========================
   Tabs (categories)
========================= */
.tabsBar{
  margin-top: 12px;
  padding: 6px;
  border-radius: 18px;
  background: #efe7dc;
  border: 1px solid #e2d6c6;
  position: relative;
  overflow: hidden;
}
.tabsBar.noFade::before,
.tabsBar.noFade::after{ display:none; }
.tabsBar::before,
.tabsBar::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width:26px;
  pointer-events:none;
  z-index:2;
}
.tabsBar::before{
  right:0;
  background: linear-gradient(270deg, #efe7dc 0%, rgba(239,231,220,0) 100%);
}
.tabsBar::after{
  left:0;
  background: linear-gradient(90deg, #efe7dc 0%, rgba(239,231,220,0) 100%);
}

.tabs{
  display:flex;
  gap:6px;
  overflow-x:auto;
  scrollbar-width:none;
  position:relative;
  z-index:1;
}
.tabs::-webkit-scrollbar{ display:none; }

.tab{
  flex:0 0 auto;
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: transparent;
  color: #6b4e2e;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: all .18s ease;
  white-space: nowrap;
}
.tab:hover{ background: #f6efe7; }
.tab.is-active{
  background: #ffffff;
  color: #2f1e12;
  border: 1px solid #e0d2c1;
  box-shadow: 0 6px 14px rgba(0,0,0,.08);
}

/* Optional indicator if you use it */
.tabIndicator{
  position:absolute;
  bottom:6px;
  height:3px;
  border-radius:999px;
  background: rgba(185,136,90,.85);
  width: 60px;
  transform: translateX(0);
  transition: transform .2s ease, width .2s ease;
  z-index:1;
}

/* =========================
   Sections + Grid
========================= */
.content{ margin-top: 16px; }
.section{
  margin-top: 18px;
  scroll-margin-top: var(--stickyOffset);
}
.section__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  padding: 4px 2px 10px;
}
.section__title{ margin:0; font-weight: 950; font-size: 16px; }
.section__desc{ margin-top:6px; color: rgba(42,31,25,.70); font-weight:800; font-size:12px; }
.section__count{
  border: 1px solid rgba(42,31,25,.14);
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 950;
  font-size: 12px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
@media (max-width: 760px){
  .grid{ grid-template-columns: 1fr; }
  .header__inner{ align-items:flex-start; flex-direction:column; }
  .toolbar__row{ flex-direction:column; align-items:stretch; }
}

/* =========================
   cur
========================= */
.cur{
  display:inline-flex;
  align-items:center;
  gap:6px;
  vertical-align:middle;
}

.cur__svg{
  width: 16px;
  height: 16px;
  display:block;
  fill: currentColor;
  opacity: .9;
}

.cur{ display:inline-flex; align-items:center; gap:6px; vertical-align:middle; }
.cur__svg{ width:16px; height:16px; display:block; fill:currentColor; opacity:.9; }

/* =========================
   Cards
========================= */
.card{
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(255,255,255,.55);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.07);
  cursor:pointer;
  padding:0;
  text-align: right;
  transition: transform .14s ease, box-shadow .14s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}
.card__media{
  height: 160px;
  background: rgba(42,31,25,.05);
  position:relative;
}
.card__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.card__placeholder{
  height:100%;
  display:grid;
  place-items:center;
  font-weight: 950;
  color: rgba(42,31,25,.45);
}

/* Tags row on the image */
.tags{
  position:absolute;
  top:10px;
  inset-inline-start:10px;
  inset-inline-end:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  z-index:5;
  pointer-events:none;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 10px;
  border-radius:999px;
  font-weight:900;
  font-size:12px;
  line-height:1;
  letter-spacing:.2px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
  color:#0f172a;
}
.tag i{ font-size:13px; opacity:.9; }
.tag--gold{
  background: rgba(245,158,11,.18);
  border-color: rgba(245,158,11,.28);
  color:#7c2d12;
}
.tag--kcal{
  background: rgba(59,130,246,.10);
  border-color: rgba(59,130,246,.18);
  color:#0f172a;
}
.dark .tag{
  background: rgba(2,6,23,.55);
  border-color: rgba(255,255,255,.14);
  color:#fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}
.dark .tag--gold{
  background: rgba(245,158,11,.20);
  border-color: rgba(245,158,11,.25);
  color:#fff;
}
.dark .tag--kcal{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.14);
  color:#fff;
}

.card__body{ padding: 12px; }
.card__top{
  display:flex;
  gap:10px;
  justify-content:space-between;
  align-items:flex-start;
}
.card__name{ font-weight: 950; font-size: 14px; line-height:1.35; }
.card__price{ font-weight: 950; font-size: 14px; white-space:nowrap; }
.card__price span{ font-size: 11px; opacity:.7; margin-right: 6px; }
.card__desc{
  margin-top: 8px;
  color: rgba(42,31,25,.70);
  font-weight:800;
  font-size: 12px;
  line-height: 1.75;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}
.card__desc--muted{ opacity:.45; }
.card__cta{
  margin-top: 10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top: 1px solid rgba(42,31,25,.10);
  padding-top: 10px;
  font-weight: 950;
}
.card__cta .link{ color: var(--mocha); }
.card__cta .arrow{ opacity:.7; }

/* Empty + hidden */
.empty{
  border: 1px dashed rgba(42,31,25,.18);
  background: rgba(255,255,255,.50);
  border-radius: 18px;
  padding: 16px;
  font-weight: 950;
  color: rgba(42,31,25,.70);
}
.is-hidden{ display:none !important; }

/* =========================
   Modal (item details)
========================= */
.modal{
  position: fixed;
  inset:0;
  z-index: 60;
  display:none;
}
.modal.is-open{ display:block; }
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
}
.modal__dialog{
  position:relative;
  width: min(900px, calc(100% - 18px));
  margin: 18px auto;
  border-radius: 22px;
  background: rgba(246,240,232,.95);
  border: 1px solid rgba(42,31,25,.14);
  box-shadow: 0 28px 80px rgba(0,0,0,.18);
  overflow:hidden;
  transform: translateY(10px);
  animation: pop .16s ease forwards;
}
@keyframes pop{ to{ transform: translateY(0); } }

.modal__head{
  padding: 12px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 10px;
  border-bottom: 1px solid rgba(42,31,25,.12);
}
.modal__kicker{ color: rgba(42,31,25,.60); font-weight: 900; font-size: 12px; }
.modal__title{ margin: 4px 0 0; font-weight: 950; font-size: 16px; }

.modal__body{
  padding: 12px;
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 12px;
}
@media (max-width: 860px){
  .modal__body{ grid-template-columns: 1fr; }
}

.modal__media{
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(42,31,25,.05);
  height: 320px;
}
.modal__media img{ width:100%; height:100%; object-fit:cover; display:block; }
.modal__media img.is-hidden{ display:none; }
.modal__placeholder{
  height:100%;
  display:grid;
  place-items:center;
  font-weight: 950;
  color: rgba(42,31,25,.45);
}

.modal__info{ display:flex; flex-direction:column; gap: 10px; }

.meta{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
}
.meta__box{
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(255,255,255,.60);
  border-radius: 16px;
  padding: 12px;
}
.meta__label{ color: rgba(42,31,25,.60); font-weight: 900; font-size: 12px; }
.meta__value{ margin-top: 6px; font-weight: 950; font-size: 14px; }

.block{
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(255,255,255,.60);
  border-radius: 16px;
  padding: 12px;
}
.block__label{ color: rgba(42,31,25,.60); font-weight: 900; font-size: 12px; }
.block__value{ margin-top: 8px; font-weight: 800; line-height:1.9; font-size: 13px; white-space: pre-wrap; }

.chips2{
  margin-top: 10px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}
.chip2{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  border: 1px solid rgba(42,31,25,.12);
  background: rgba(246,240,232,.85);
  padding: 9px 11px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 12px;
}
.chip2 img{
  width:22px; height:22px;
  border-radius: 999px;
  object-fit:cover;
  border: 1px solid rgba(42,31,25,.14);
  background: rgba(42,31,25,.05);
}

/* =========================
   Hero Offers Banner (optional)
========================= */
.heroOffers{ margin-top: 12px; }
.heroOffers__wrap{
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(42,31,25,.12);
  box-shadow: var(--shadow);
  min-height: 170px;
  background: rgba(255,255,255,.45);
}
.heroOffers__slide{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .35s ease, transform .55s ease;
}
.heroOffers__slide.is-active{
  opacity: 1;
  transform: scale(1);
}
.heroOffers__veil{
  position:absolute; inset:0;
  background:
    radial-gradient(800px 260px at 80% 0%, rgba(185,136,90,.30), transparent 60%),
    linear-gradient(90deg, rgba(246,240,232,.92), rgba(246,240,232,.55), rgba(246,240,232,.25));
}
.heroOffers__content{ position:relative; padding: 16px; max-width: 720px; }
.heroOffers__title{ font-weight: 950; font-size: 18px; }
.heroOffers__sub{ margin-top: 6px; color: rgba(42,31,25,.75); font-weight: 900; font-size: 13px; }
.heroOffers__code{
  margin-top: 10px;
  border: 1px dashed rgba(42,31,25,.22);
  background: rgba(185,136,90,.16);
  color: var(--espresso);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 950;
  cursor:pointer;
}
.heroOffers__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(42,31,25,.14);
  background: rgba(246,240,232,.75);
  cursor:pointer;
  font-weight: 950;
}
.heroOffers__nav--prev{ inset-inline-start: 10px; }
.heroOffers__nav--next{ inset-inline-end: 10px; }
.heroOffers__dots{
  position:absolute;
  bottom: 10px;
  inset-inline-start: 12px;
  display:flex;
  gap: 8px;
}
.heroOffers__dot{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(42,31,25,.18);
  background: rgba(255,255,255,.55);
  cursor:pointer;
}
.heroOffers__dot.is-active{
  background: rgba(185,136,90,.55);
  border-color: rgba(185,136,90,.65);
}

/* =========================
   Opening Hours: pill + modal
========================= */
.hoursPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:38px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:#fff;
  font-weight:900;
  font-size:12px;
  backdrop-filter: blur(10px);
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.hoursPill:hover{ transform: translateY(-1px); background: rgba(0,0,0,.24); border-color: rgba(255,255,255,.22); }
.hoursDot{
  width:10px; height:10px;
  border-radius:999px;
  box-shadow: 0 0 0 4px rgba(255,255,255,.10);
}
.hoursDot.is-open{ background:#34d399; }
.hoursDot.is-closed{ background:#fb7185; }
.hoursText{ white-space:nowrap; opacity:.95; }
.hoursPill i{ opacity:.9; }

.hoursModal{
  position:fixed; inset:0;
  display:none;
  z-index:60;
}
.hoursModal.is-open{ display:block; }
.hoursModal__backdrop{
  position:absolute; inset:0;
  background: rgba(2,6,23,.55);
}
.hoursModal__dialog{
  position:absolute;
  left:12px; right:12px;
  top:12px;
  margin:0 auto;
  max-width:520px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 25px 70px rgba(0,0,0,.35);
  transform: translateY(8px);
  opacity:0;
  animation: hoursIn .18s ease forwards;

  /* responsive height + internal scroll */
  max-height: calc(100vh - 24px);
  display:flex;
  flex-direction:column;
}
@keyframes hoursIn{ to{ transform: translateY(0); opacity:1; } }

html.dark .hoursModal__dialog{
  background: rgba(2,6,23,.92);
  border-color: rgba(255,255,255,.08);
}
.hoursModal__head{
  padding:12px 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid rgba(15,23,42,.10);
}
html.dark .hoursModal__head{ border-bottom-color: rgba(255,255,255,.08); }

.hoursModal__kicker{
  font-size:11px;
  font-weight:900;
  color: rgba(15,23,42,.55);
}
html.dark .hoursModal__kicker{ color: rgba(226,232,240,.65); }

.hoursModal__title{
  font-size:15px;
  font-weight:950;
  color:#0f172a;
}
html.dark .hoursModal__title{ color:#fff; }

.hoursModal__close{
  width:38px; height:38px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.6);
  display:grid;
  place-items:center;
  transition:.15s ease;
}
.hoursModal__close:hover{ transform: translateY(-1px); }
html.dark .hoursModal__close{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color:#fff;
}

.hoursModal__body{
  padding:12px 12px;
  overflow:auto;
  -webkit-overflow-scrolling: touch;
}
.hoursRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.03);
  margin-bottom:8px;
}
html.dark .hoursRow{
  border-color: rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.hoursRow.is-today{
  border-color: rgba(59,130,246,.22);
  background: rgba(59,130,246,.08);
}
.hoursDay{ font-weight:950; color:#0f172a; font-size:13px; }
html.dark .hoursDay{ color:#fff; }
.hoursTime{ font-weight:900; color: rgba(15,23,42,.70); font-size:12px; }
html.dark .hoursTime{ color: rgba(226,232,240,.75); }

.hoursModal__foot{
  padding:10px 12px 12px;
  border-top:1px solid rgba(15,23,42,.10);
}
html.dark .hoursModal__foot{ border-top-color: rgba(255,255,255,.08); }
.hoursNote{
  font-size:12px;
  font-weight:900;
  color: rgba(15,23,42,.60);
}
html.dark .hoursNote{ color: rgba(226,232,240,.70); }

@media (max-width: 420px){
  .hoursPill{ height:34px; padding:0 10px; gap:8px; font-size:11px; }
  .hoursDot{ width:9px; height:9px; }
  .hoursText{ max-width:110px; overflow:hidden; text-overflow:ellipsis; }
}
@media (max-width: 360px){
  .hoursText{ display:none; }
}

/* =========================
   Footer
========================= */
.footer{
  margin-top: 20px;
  border-top: 1px solid rgba(42,31,25,.10);
  background: rgba(246,240,232,.55);
}
.footer__inner{
  max-width: 1000px;
  margin: 0 auto;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footer__brand{
  font-weight:900;
  font-size:13px;
  letter-spacing:.2px;
  color:#2a1f19;
}
.footer__sub{
  font-size:12px;
  font-weight:700;
  color: rgba(42,31,25,.6);
}
