:root {
  --coral: #6E1612;
  --coral-mid: #8B1E18;
  --coral-deep: #4A0E0B;
  --coral-soft: #9C3A34;
  --yellow: #F7CE46;
  --yellow-hot: #FFD84A;
  --peach: #E6D6CF;
  --peach-soft: #F1EBE6;
  --page: #F1EBE6;
  --ink: #1A0A09;
  --ink-soft: #3A1C19;
  --muted: #7A4E48;
  --white: #FFFFFF;
  --open: #1F8A4C;
  --soon: #F7CE46;
  --closed: #8A8A8A;
  --danger: #9B2226;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 16px 40px rgba(74, 14, 11, 0.28);
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-brand: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  height: 100%;
}
body.nav-open { overflow: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(110, 22, 18, 0.18), transparent 48%),
    radial-gradient(ellipse at 90% 100%, rgba(74, 14, 11, 0.14), transparent 45%),
    #EDE6E0;
  min-height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--coral-mid); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--coral-deep); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
@media (max-width: 480px) {
  .wrap { width: min(1120px, calc(100% - 1.25rem)); }
}
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-left: auto;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(255, 255, 255, 0.22); }
.nav-toggle-bars {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }
.site-header.is-nav-open .nav-toggle-bars { background: transparent; }
.site-header.is-nav-open .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}
.site-header.is-nav-open .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: linear-gradient(180deg, var(--coral-mid) 0%, var(--coral) 100%);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.header-inner, .footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.brand, .brand-hero {
  font-family: var(--font-brand);
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand { font-size: 1.4rem; }
.brand-hero {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  line-height: 1;
  margin: 0 0 0.4rem;
  animation: brandIn 0.7s ease both;
}
.brand-center {
  display: block; text-align: center; margin-bottom: 0.75rem;
  color: var(--coral);
  font-family: var(--font-brand);
  font-weight: 800;
}
.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a {
  text-decoration: none;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.nav a:hover { color: var(--yellow); }
.linkish {
  background: none; border: 0; color: rgba(255,255,255,0.92);
  font: inherit; font-weight: 600; cursor: pointer; padding: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 64px);
  position: relative;
  background: var(--coral-deep);
}
.hero-copy {
  position: absolute; z-index: 5;
  left: max(1rem, calc((100% - 1120px) / 2));
  top: 10vh;
  max-width: min(480px, calc(100% - 2rem));
  padding: 1.15rem 1.25rem;
  background: rgba(74, 14, 11, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-toggle {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  padding: 0.35rem 0.65rem;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
}
.hero-toggle:hover { background: rgba(255,255,255,0.22); }
.hero-toggle-icon { font-size: 1.1rem; line-height: 1; }
.hero-copy-body { padding-right: 4.5rem; }
.hero-copy.is-minimized {
  top: 1rem;
  padding: 0.45rem 0.55rem 0.45rem 0.75rem;
  max-width: none;
  width: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-copy.is-minimized .hero-toggle {
  position: static;
  margin-left: auto;
}
.hero-copy-mini {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  color: #fff;
}
.hero-copy-mini[hidden] { display: none !important; }
.brand-mini {
  font-family: var(--font-brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.muted-mini { opacity: 0.8; font-size: 0.9rem; font-weight: 600; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 0.45rem;
  color: var(--white);
}
.hero .lede {
  color: rgba(255,255,255,0.9);
  font-size: 1.02rem;
  line-height: 1.4;
  margin: 0 0 0.85rem;
}
.hero-map {
  width: 100%;
  min-height: calc(100vh - 64px);
  background: #d4b5ad;
  position: relative;
  z-index: 1;
}
.search-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.search-bar select, .stack input, .stack select, .stack textarea,
.register-form input, .register-form select, .register-form textarea,
.review-form input, .review-form select, .review-form textarea,
.menu-row input,
.dish-add-form input, .dish-edit-form input {
  width: 100%;
  border: 1px solid rgba(110, 22, 18, 0.2);
  background: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
}
.search-bar select {
  width: auto; min-width: 180px; flex: 1; border: 0;
}

/* Hero search panel — clean stacked layout */
.hero-panel {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.15rem;
}
.hero-search {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.hero-place {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
}
.hero-place select {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.hero-place .btn-primary {
  padding: 0.75rem 1.15rem;
  white-space: nowrap;
}
.hero-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: -0.1rem 0 0.15rem;
}
.hero-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  cursor: pointer;
}
.hero-link:hover { color: var(--yellow); }
a.hero-link { text-decoration: none; }
.hero-links-sep { color: rgba(255,255,255,0.35); }
.hero-filters {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 0.45rem;
  align-items: stretch;
}
.hero-select {
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  font: inherit;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.96);
  color: var(--ink);
}
.hero-check {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.hero-check input {
  width: 0.95rem;
  height: 0.95rem;
  margin: 0;
  accent-color: var(--yellow);
  flex-shrink: 0;
}
.hero-check--compact {
  padding: 0.4rem 0.55rem;
  font-size: 0.82rem;
  background: rgba(255,255,255,0.1);
}
.hero-diet {
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 0;
  background: rgba(0,0,0,0.12);
}
.hero-diet summary {
  list-style: none;
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  user-select: none;
}
.hero-diet summary::-webkit-details-marker { display: none; }
.hero-diet summary::after {
  content: "+";
  float: right;
  opacity: 0.7;
  font-weight: 800;
}
.hero-diet[open] summary::after { content: "−"; }
.hero-diet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0 0.55rem 0.55rem;
}
.hero-count {
  margin: 0;
  font-size: 0.9rem;
  min-height: 1.2em;
}

.btn-primary, .btn-secondary {
  border: 0;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.25rem;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  transition: transform .2s ease, background .2s ease;
}
.btn-primary:hover { background: var(--yellow-hot); transform: translateY(-1px); }
.btn-secondary {
  background: var(--coral);
  color: var(--white);
}
.btn-secondary:hover { background: var(--coral-mid); }

.band-peach {
  background: linear-gradient(180deg, var(--coral) 0%, var(--coral-mid) 100%);
  position: relative;
  z-index: 2;
  padding: 1.25rem 0;
  color: var(--white);
}
.legend-row {
  display: flex; gap: 1.4rem; padding: 0;
  flex-wrap: wrap; justify-content: center;
}
.legend {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.92); font-weight: 700;
}
.dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; display: inline-block; }
.dot.open { background: var(--open); animation: pulseOpen 2s infinite; }
.dot.soon { background: var(--soon); border: 1px solid rgba(0,0,0,0.15); }
.dot.closed { background: #c4c4c4; }

.marker-open { background: var(--open); }
.marker-soon { background: var(--soon); }
.marker-closed { background: var(--closed); }
.status-pill {
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.15);
}

/* Kartmarkörer – tydliga & säljande */
.map-pin-wrap { background: transparent !important; border: 0 !important; }
.map-pin {
  position: relative;
  width: 168px;
  filter: drop-shadow(0 8px 16px rgba(74, 14, 11, 0.35));
  transform-origin: bottom center;
  animation: pinPop 0.45s cubic-bezier(.2,.9,.3,1) both;
}
.map-pin__bubble {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(180deg, #8B1E18 0%, #4A0E0B 100%);
  color: #fff;
  border-radius: 14px;
  padding: 0.45rem 0.55rem;
  border: 2px solid #F7CE46;
  min-height: 44px;
}
.map-pin__icon {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #F7CE46;
}
.map-pin__icon svg { display: block; }
.map-pin__text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}
.map-pin__text strong {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.map-pin__text small {
  font-size: 0.68rem;
  opacity: 0.92;
  font-weight: 600;
}
.map-pin__point {
  display: block;
  width: 14px; height: 14px;
  margin: -2px auto 0;
  background: #4A0E0B;
  border: 2px solid #F7CE46;
  transform: rotate(45deg);
  border-radius: 2px;
}
.map-pin--open .map-pin__bubble { box-shadow: inset 0 0 0 2px rgba(31,138,76,0.35); }
.map-pin--open .map-pin__point { background: #1F8A4C; border-color: #fff; }
.map-pin--soon .map-pin__point { background: #F7CE46; border-color: #4A0E0B; }
.map-pin--closed {
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25)) grayscale(0.15);
  opacity: 0.92;
}
.map-pin--closed .map-pin__bubble {
  background: linear-gradient(180deg, #6a6a6a 0%, #3d3d3d 100%);
  border-color: #cfcfcf;
}
.map-pin--closed .map-pin__icon { background: #ddd; color: #333; }

.map-cluster-wrap { background: transparent !important; border: 0 !important; }
.map-cluster {
  display: grid; place-items: center;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(180deg, #8B1E18, #4A0E0B);
  color: #fff;
  font-weight: 800;
  border: 3px solid #F7CE46;
  box-shadow: 0 8px 18px rgba(74, 14, 11, 0.35);
}
.map-cluster--sm { font-size: 0.85rem; }
.map-cluster--md { font-size: 0.95rem; }
.map-cluster--lg { font-size: 1.05rem; }

.map-popup-pane .leaflet-popup-content-wrapper {
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(74, 14, 11, 0.28);
  border: 2px solid #6E1612;
}
.map-popup-pane .leaflet-popup-content { margin: 0; min-width: 220px; }
.map-popup-pane .leaflet-popup-tip { background: #6E1612; }
.map-popup { padding: 0.9rem 1rem 1rem; font-family: "Outfit", "Segoe UI", sans-serif; }
.map-popup__type {
  margin: 0; text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 0.7rem; font-weight: 700; color: #8B1E18;
}
.map-popup h3 {
  margin: 0.2rem 0 0.35rem; font-size: 1.1rem; color: #4A0E0B; font-weight: 800;
}
.map-popup__status { margin: 0 0 0.55rem; font-weight: 800; font-size: 0.9rem; }
.map-popup__status--open { color: #1F8A4C; }
.map-popup__status--soon { color: #b88900; }
.map-popup__status--closed { color: #666; }
.map-popup__menu {
  list-style: none; margin: 0 0 0.75rem; padding: 0;
  border-top: 1px solid rgba(110,22,18,0.12);
}
.map-popup__menu li {
  display: flex; justify-content: space-between; gap: 0.75rem;
  padding: 0.4rem 0; border-bottom: 1px solid rgba(110,22,18,0.08);
  font-size: 0.9rem;
}
.map-popup__empty { color: #7A4E48; font-size: 0.9rem; margin: 0 0 0.75rem; }
.map-popup__cta {
  display: block; text-align: center; text-decoration: none;
  background: #F7CE46; color: #1A0A09; font-weight: 800;
  border-radius: 999px; padding: 0.65rem 0.9rem;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.map-popup__cta:hover { background: #FFD84A; color: #1A0A09; }

@keyframes pinPop {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.section { padding: 2rem 0 3rem; }
.section > h1,
.business-page h1 {
  color: var(--coral-deep);
}
.flash { padding: 0.85rem 1rem; border-radius: 10px; margin: 1rem auto; }
.flash-ok { background: #e8f8ee; color: #14532d; }
.flash-err { background: #f8d7d4; color: var(--coral-deep); }
.muted { color: var(--muted); }
.hero .muted { color: rgba(255,255,255,0.85); }

.site-footer {
  background: linear-gradient(180deg, var(--coral) 0%, var(--coral-deep) 100%);
  color: rgba(255,255,255,0.9);
  padding: 1.5rem 0;
  margin-top: auto;
  flex-shrink: 0;
}
.site-footer strong {
  color: var(--white);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-body {
  min-height: 100vh; display: grid; place-items: center; padding: 1rem;
  background:
    radial-gradient(circle at 80% 10%, rgba(247,206,70,0.18), transparent 28%),
    linear-gradient(160deg, var(--coral-mid), var(--coral-deep));
}
.auth-card {
  width: min(420px, 100%);
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--coral);
}
.auth-card h1 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-top: 0;
  font-weight: 800;
  color: var(--coral-deep);
}
.stack { display: grid; gap: 0.85rem; }
.stack label, .register-form label, .review-form label { display: grid; gap: 0.35rem; font-weight: 600; }

.register-form fieldset {
  border: 1px solid rgba(110, 22, 18, 0.22);
  border-radius: var(--radius);
  padding: 1rem;
  margin: 0 0 1rem;
  display: grid; gap: 0.75rem;
  background: rgba(255,255,255,0.82);
}
.register-form legend {
  font-weight: 800;
  color: var(--coral-deep);
  padding: 0 0.35rem;
}
.reg-map, .biz-map {
  height: 280px; border-radius: var(--radius); overflow: hidden; background: var(--peach);
}
.profile-logo-preview {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem;
}
.suggest-box {
  position: relative; background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.2);
  border-radius: 10px; max-height: 220px; overflow: auto;
}
.suggest-box:empty { display: none; border: 0; }
.suggest-box button {
  display: block; width: 100%; text-align: left; border: 0; background: transparent;
  padding: 0.65rem 0.8rem; cursor: pointer; font: inherit;
}
.suggest-box button:hover { background: var(--peach-soft); color: var(--coral-deep); }

.dish-suggest-field { position: relative; }
#dish-suggest-box.dish-suggest-dropdown {
  position: fixed;
  z-index: 1200;
  margin: 0;
  box-shadow: 0 10px 28px rgba(61, 16, 14, 0.16);
}

.business-page .biz-header { display: flex; gap: 1.15rem; align-items: flex-start; margin-bottom: 1rem; }
.biz-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  padding: 0.45rem;
  border-radius: 14px;
  background: #fff;
  border: 2px solid rgba(110, 22, 18, 0.15);
  box-sizing: border-box;
}
.profile-logo-preview img {
  width: 112px; height: 112px; object-fit: contain; object-position: center;
  padding: 0.35rem; box-sizing: border-box;
  border-radius: 12px; background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.15);
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem;
  color: var(--coral-soft); margin: 0; font-weight: 700;
}
.business-page h1, .section > h1 {
  font-family: var(--font-display);
  margin: 0.2rem 0;
  font-weight: 800;
}
.status { font-weight: 800; }
.status-open { color: var(--open); }
.status-soon { color: #b88900; }
.status-closed { color: var(--closed); }
.holiday-badge { color: var(--coral-mid); font-weight: 800; }
.biz-grid { display: grid; gap: 1.5rem; grid-template-columns: 1.2fr 0.8fr; }
.menu-list, .hours-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(110, 22, 18, 0.14);
}
.business-page .hours-list--grouped {
  display: grid;
  gap: 0.5rem;
  margin: 0.85rem 0 1.5rem;
}
.business-page .hours-list--grouped li {
  padding: 0.8rem 1rem;
  border: 1px solid rgba(110, 22, 18, 0.12);
  border-radius: 12px;
  background: #fff;
  border-bottom: 1px solid rgba(110, 22, 18, 0.12);
  align-items: center;
}
.business-page .hours-list--grouped li strong {
  color: var(--coral-deep);
  font-weight: 800;
}
.menu-list li {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(110, 22, 18, 0.14);
}
.business-page .menu-list {
  display: grid;
  gap: 0.65rem;
  margin: 0.85rem 0 1.5rem;
}
.business-page .menu-list > .menu-list-item {
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(110, 22, 18, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(110, 22, 18, 0.04);
}
.business-page .menu-list > .menu-list-item:last-child {
  border-bottom: 1px solid rgba(110, 22, 18, 0.12);
}
.menu-dish { display: grid; gap: 0.35rem; }
.menu-dish-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.menu-dish-name {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}
.menu-dish-price {
  font-weight: 800;
  white-space: nowrap;
  color: var(--coral-deep);
}
.menu-dish-senior {
  margin: 0;
  font-size: 0.9rem;
}
.menu-dish-desc,
.dish-desc {
  display: block;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink-soft);
}
.lunch-dish-main .menu-dish-desc {
  margin-top: 0.25rem;
}
.diet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.15rem;
}
.diet-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(110, 22, 18, 0.1);
  color: var(--coral-deep);
}
.reviews blockquote {
  margin: 0 0 1rem; padding: 1rem; background: var(--white);
  border-left: 4px solid var(--coral); border-radius: 0 12px 12px 0;
}
.reviews cite { display: block; margin-top: 0.5rem; color: var(--muted); font-style: normal; font-size: 0.9rem; }
.review-form { display: grid; gap: 0.75rem; margin-top: 1.5rem; max-width: 520px; }

.menu-calendar { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; }
.menu-intro { max-width: 40rem; margin: 0 0 1.15rem; }
.menu-period-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin: 0 0 0.75rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.12);
  border-radius: 14px;
}
.menu-period-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.menu-period-nav .btn-secondary.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.menu-secondary-links {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}
.menu-secondary-links a {
  color: var(--coral-deep);
  font-weight: 600;
  text-decoration: none;
}
.menu-secondary-links a:hover { text-decoration: underline; }
.menu-toolbar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  align-items: center; margin: 1rem 0;
}
.menu-toolbar-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.menu-toolbar-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.menu-week-filters {
  display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
  font-weight: 600;
}
.menu-week-filters-label {
  margin-right: 0.15rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.menu-week-filters a {
  text-decoration: none; padding: 0.35rem 0.7rem; border-radius: 999px;
  background: #fff; border: 1px solid rgba(110, 22, 18, 0.18); color: var(--coral-deep);
}
.menu-week-filters a.is-active {
  background: var(--coral); color: #fff; border-color: var(--coral);
}
.menu-week {
  margin-bottom: 1.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(110, 22, 18, 0.14);
  border-radius: 16px;
}
.menu-week-head h2 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--coral-deep);
}
.menu-week-head p {
  margin: 0.25rem 0 0.85rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.menu-week-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.55rem;
}
.day-card {
  display: grid; gap: 0.35rem; padding: 0.85rem;
  border-radius: 12px; background: var(--white);
  border: 1px solid rgba(110, 22, 18, 0.16);
  text-decoration: none; color: inherit;
  transition: border-color .2s ease, transform .2s ease;
  min-height: 88px;
}
.day-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.day-card.is-today { border-color: var(--coral); box-shadow: 0 0 0 2px rgba(110, 22, 18, 0.15); }
.day-card.is-past { opacity: 0.72; }
.day-card.is-closed {
  opacity: 0.55;
  cursor: not-allowed;
  background: #efe6e4;
  border-style: dashed;
  color: var(--muted);
  pointer-events: none;
}
.day-card.is-closed strong { color: var(--muted); }
.recurring-hint { color: var(--coral-mid); font-weight: 700; }
.lunch-default-banner {
  background: #fff8e8; border: 1px solid rgba(110, 22, 18, 0.15);
  border-radius: 10px; padding: 0.75rem 1rem; margin: 0.75rem 0 1rem;
}
.lunch-settings-form { max-width: 640px; }
.lunch-fieldset {
  border: 1px solid rgba(110, 22, 18, 0.15); border-radius: 12px;
  padding: 1rem 1.1rem 1.15rem; margin: 0 0 1.25rem; background: #fff;
}
.lunch-fieldset legend { font-weight: 700; padding: 0 0.35rem; color: var(--coral-deep); }

.export-back { margin: 0.35rem 0 1.25rem; }
.export-hub {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 760px;
}
.export-hub-card {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.16);
  text-decoration: none;
  color: inherit;
  transition: border-color .2s ease, transform .2s ease;
}
.export-hub-card:hover {
  border-color: var(--coral);
  transform: translateY(-2px);
}
.export-hub-card strong {
  font-size: 1.15rem;
  color: var(--coral-deep);
}
.export-hub-card span {
  color: var(--ink-soft);
  line-height: 1.45;
  font-size: 0.98rem;
}
.export-hub-card em {
  font-style: normal;
  font-weight: 700;
  color: var(--coral);
  margin-top: 0.35rem;
}
.export-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 1.25rem;
  padding: 0;
  border-bottom: 0;
}
.export-subnav a {
  font-weight: 600;
  text-decoration: none;
  color: var(--coral-deep);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(110, 22, 18, 0.16);
  background: #fff;
}
.export-subnav a:hover { border-color: var(--coral); }
.export-subnav a.is-active {
  color: #fff;
  background: var(--coral);
  border-color: var(--coral);
  text-decoration: none;
}
.export-field-note { margin: 0 0 0.85rem; }
.export-style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}
.export-style-grid label,
.export-token-form label,
.export-pdf-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}
.export-style-grid select,
.export-style-grid input[type="text"],
.export-pdf-form select,
.export-token-form input[type="text"],
.lunch-settings-form .lunch-note input {
  width: 100%;
  border: 1px solid rgba(110, 22, 18, 0.2);
  background: var(--white);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  box-sizing: border-box;
}
.export-style-grid input[type="color"] {
  display: block;
  width: 100%;
  height: 2.85rem;
  padding: 0.35rem;
  border: 1px solid rgba(110, 22, 18, 0.2);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  box-sizing: border-box;
}
.export-style-grid input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}
.export-style-grid input[type="color"]::-webkit-color-swatch {
  border: 0;
  border-radius: 6px;
}
.export-style-grid input[type="color"]::-moz-color-swatch {
  border: 0;
  border-radius: 6px;
}
.export-style-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.15rem;
  margin-bottom: 0.85rem;
}
.export-style-checks .lunch-include-opt {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: auto;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
}
.export-style-checks .lunch-include-opt input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--coral-deep);
}
.export-pdf-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
  max-width: 520px;
  align-items: end;
}
.export-pdf-actions { grid-column: 1 / -1; }
.embed-preview-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
}
.embed-preview-toolbar .btn-secondary[aria-pressed="true"] {
  background: var(--coral-deep);
  color: #fff;
  border-color: var(--coral-deep);
}
.embed-preview-frame-wrap {
  border: 1px solid rgba(110, 22, 18, 0.18);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  max-width: 640px;
}
.embed-preview-frame-wrap iframe {
  border: 0;
  display: block;
  width: 100%;
}
.export-token-form {
  display: grid;
  gap: 0.85rem;
  max-width: 560px;
  margin-bottom: 1.15rem;
}
.export-token-flash { margin: 0 0 1rem; }
.export-snippet--fresh {
  max-width: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.85rem;
}
.export-token-code {
  word-break: break-all;
  display: block;
  margin: 0.5rem 0 0;
  padding: 0.65rem 0.75rem;
  background: #fff8e8;
  border-radius: 8px;
}
.export-snippet { max-width: 640px; }
.export-snippet .field-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.export-snippet-code {
  width: 100%;
  font: inherit;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88rem;
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(110, 22, 18, 0.2);
  background: #fff;
  resize: vertical;
}
.export-token-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.export-token-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px dashed rgba(110, 22, 18, 0.12);
}
.export-token-item:last-child { border-bottom: 0; padding-bottom: 0; }
.export-token-item strong { display: block; }
.export-token-item .muted { display: block; margin-top: 0.2rem; font-size: 0.92rem; }

@media (max-width: 720px) {
  .export-hub { grid-template-columns: 1fr; }
  .export-style-grid,
  .export-pdf-form { grid-template-columns: 1fr; }
}
.lunch-price-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1rem;
  align-items: end;
}
.lunch-price-grid label, .lunch-note {
  display: grid; gap: 0.4rem; font-weight: 600; align-content: start;
}
.lunch-price-grid .field-label {
  display: flex; align-items: baseline; gap: 0.4rem; flex-wrap: wrap;
  min-height: 1.35em; line-height: 1.35;
}
.lunch-price-grid .field-label .muted {
  font-weight: 500; font-size: 0.9em;
}
.lunch-includes {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-bottom: 0.85rem;
}
.lunch-include-opt {
  display: flex; align-items: center; gap: 0.4rem;
  font-weight: 600; cursor: pointer;
}
.dish-add-form {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: end;
  margin: 1.25rem 0 1.5rem; max-width: 720px;
}
.dish-add-form > label {
  display: grid; gap: 0.35rem; font-weight: 600; flex: 1; min-width: 220px;
}
.dish-catalog {
  list-style: none; padding: 0; margin: 0; max-width: 720px;
  display: grid; gap: 0.65rem;
}
.dish-catalog-item {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: space-between; align-items: center;
  padding: 0.85rem 1rem; background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.15); border-radius: 12px;
}
.dish-catalog-main { display: grid; gap: 0.15rem; }
.dish-catalog-actions {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
}
.dish-edit-form {
  display: flex; flex-wrap: wrap; gap: 0.5rem; width: 100%; align-items: center;
}
.dish-edit-form input[type="text"] { flex: 1; min-width: 180px; }
.lunch-price-once {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}
.map-popup__price {
  margin: 0.35rem 0 0.55rem;
  font-weight: 800;
  color: #F7CE46;
}
@media (max-width: 640px) {
  .lunch-price-grid { grid-template-columns: 1fr; }
}
.menu-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0.5rem; margin-bottom: 0.5rem; }
.menu-row-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(110, 22, 18, 0.15);
}
.menu-row-prices {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem;
  align-items: center;
}
.menu-row-repeat {
  grid-template-columns: 2fr 1fr 1fr auto;
  align-items: center;
}
.dish-desc {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink-soft);
}
.dish-add-form--stack, .dish-edit-form--stack {
  display: grid; gap: 0.75rem; max-width: 640px;
}
.dish-add-form--stack > label, .dish-edit-form--stack > label {
  display: grid; gap: 0.35rem; font-weight: 600;
}
.dish-add-form textarea, .dish-edit-form textarea {
  width: 100%; border: 1px solid rgba(110, 22, 18, 0.2);
  border-radius: 10px; padding: 0.7rem 0.85rem; font: inherit; resize: vertical;
}

.lunch-guide-head { margin-bottom: 1.25rem; }
.lunch-guide-city {
  display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: end; margin-top: 1rem;
}
.lunch-guide-city label { display: grid; gap: 0.35rem; font-weight: 600; }
.lunch-guide-city select {
  min-width: 200px; border: 1px solid rgba(110, 22, 18, 0.2);
  border-radius: 10px; padding: 0.65rem 0.8rem; font: inherit; background: #fff;
}
.lunch-day-nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: stretch;
  width: 100%;
  margin: 0 0 1.5rem;
  box-sizing: border-box;
}
.lunch-day-nav-main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.lunch-week-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coral-deep);
  text-align: left;
}
.lunch-day-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.4rem;
  width: 100%;
}
.lunch-day-tab {
  display: grid;
  gap: 0.1rem;
  text-align: center;
  text-decoration: none;
  padding: 0.5rem 0.35rem;
  border-radius: 10px;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.15);
  color: var(--ink);
  font-size: 0.82rem;
}
.lunch-week-btn {
  flex: 0 0 auto;
  align-self: end;
  margin-bottom: 0.15rem;
}
.lunch-day-tab strong { font-size: 0.92rem; }
.lunch-day-tab.is-active {
  background: var(--coral); color: #fff; border-color: var(--coral);
}
.lunch-day-tab.is-empty:not(.is-active) {
  opacity: 0.55;
}
.biz-menu-date {
  margin: 0.25rem 0 0.85rem;
  font-size: 1.05rem;
}
.lunch-guide-list { display: grid; gap: 1rem; }
.lunch-card {
  background: #fff; border: 1px solid rgba(110, 22, 18, 0.12);
  border-radius: 14px; padding: 1rem 1.1rem;
}
.lunch-card-head {
  display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 0.75rem;
}
.lunch-card-logo {
  width: 72px; height: 72px; object-fit: contain; object-position: center;
  padding: 0.3rem; box-sizing: border-box; flex-shrink: 0;
  border-radius: 12px; background: #fff; border: 1px solid rgba(110, 22, 18, 0.12);
}
.lunch-card h2 { margin: 0.1rem 0; font-size: 1.25rem; }
.lunch-card h2 a { color: inherit; text-decoration: none; }
.lunch-card h2 a:hover { color: var(--coral); }
.lunch-dish-list { list-style: none; padding: 0; margin: 0 0 0.75rem; }
.lunch-dish-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0; border-top: 1px solid rgba(110, 22, 18, 0.08);
}
.lunch-dish-main .menu-dish-desc {
  margin-top: 0.25rem;
}
.lunch-dish-price { font-weight: 800; white-space: nowrap; }
.lunch-closed-block { margin-top: 2rem; }
.lunch-closed-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.lunch-closed-list li {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; justify-content: space-between;
  padding: 0.65rem 0.85rem; background: rgba(255,255,255,0.7); border-radius: 10px;
}
@media (max-width: 900px) {
  .menu-row-prices { grid-template-columns: 1fr; }
}
.repeat-check {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.85rem; font-weight: 600; white-space: nowrap;
  color: var(--coral-deep);
}
.repeat-mode {
  display: grid;
  gap: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--coral-deep);
  min-width: 11rem;
}
.repeat-mode select {
  font: inherit;
  font-weight: 600;
  padding: 0.35rem 0.45rem;
  border-radius: 8px;
  border: 1px solid rgba(110, 22, 18, 0.25);
  background: #fff;
  color: var(--ink);
}
.week-badge {
  display: inline-block;
  font-weight: 800;
  color: var(--coral);
  letter-spacing: 0.02em;
}
.lunch-day-nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1rem 0 1.25rem;
}
.lunch-week-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--coral-deep);
  text-align: center;
}
@media (max-width: 900px) {
  .menu-week-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-row-repeat { grid-template-columns: 1fr; }
}

.fade-up { animation: fadeUp 0.65s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes brandIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseOpen {
  0% { box-shadow: 0 0 0 0 rgba(31,138,76,.45); }
  70% { box-shadow: 0 0 0 10px rgba(31,138,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,138,76,0); }
}

.hours-grid {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}
.hours-day {
  display: grid;
  grid-template-columns: 110px auto 1fr 1fr;
  gap: 0.6rem;
  align-items: end;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.16);
  border-radius: 12px;
}
.hours-day .check {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
@media (max-width: 860px) {
  .hero-copy {
    position: absolute; top: 0.75rem; left: 0.75rem; right: 0.75rem;
    margin: 0; max-width: none; width: auto;
  }
  .hero-copy.is-minimized {
    right: auto;
  }
  .hero-map { min-height: calc(100vh - 64px); }
  .biz-grid { grid-template-columns: 1fr; }
  .menu-row { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .hours-day { grid-template-columns: 1fr 1fr; }
  .hours-day strong { grid-column: 1 / -1; }
}

/* ——— Sök / filter / kost / cookies / annonser ——— */
.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}
.map-filters select {
  border: 0;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font: inherit;
  font-size: 0.88rem;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(110, 22, 18, 0.18);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.filter-chip input { accent-color: var(--coral); }
.filter-chip--light {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(110, 22, 18, 0.18);
}
.filter-chip--check {
  align-self: end;
  margin-bottom: 0.15rem;
  color: var(--ink);
}
.diet-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.75rem;
}
.diet-filters-label {
  flex: 0 0 100%;
  margin: 0 0 0.15rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--coral-deep);
}
.diet-filters-submit {
  margin-left: 0.15rem;
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
  white-space: nowrap;
}
.diet-checkboxes {
  border: 0;
  margin: 0.25rem 0 0;
  padding: 0;
  min-width: 0;
}
.diet-checkboxes legend {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--coral-deep);
  float: none;
  width: auto;
  padding: 0;
}
.diet-checkboxes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 0.75rem;
}
.diet-opt {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid rgba(110, 22, 18, 0.12);
  background: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
  min-width: 0;
}
.diet-opt input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--coral);
}
.diet-opt span {
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.diet-opt:has(input:checked) {
  border-color: rgba(110, 22, 18, 0.35);
  background: rgba(110, 22, 18, 0.06);
}
.menu-row .diet-checkboxes {
  margin-top: 0.15rem;
}
.menu-row .diet-checkboxes-grid {
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
}
@media (max-width: 520px) {
  .diet-checkboxes-grid { grid-template-columns: 1fr; }
}
.diet-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.35rem;
}
.diet-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  background: rgba(110, 22, 18, 0.08);
  color: var(--coral-deep);
}
.map-popup .diet-badge {
  background: rgba(247, 206, 70, 0.25);
  color: #fff;
}

.footer-inner--legal {
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.15rem;
  align-items: center;
}
.footer-links a,
.site-footer .linkish {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-weight: 600;
  background: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  padding: 0;
}
.footer-links a:hover,
.site-footer .linkish:hover { color: var(--yellow); }

.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: rgba(26, 10, 9, 0.96);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 0;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.28);
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner p { margin: 0; max-width: 52rem; line-height: 1.45; }
.cookie-banner a { color: var(--yellow); }
.cookie-banner-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.ad-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.5rem;
}
.ad-card {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.12);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.ad-card:hover {
  border-color: var(--coral);
  box-shadow: 0 6px 18px rgba(110, 22, 18, 0.08);
  color: inherit;
}
.ad-card--leaderboard {
  max-width: 728px;
}
.ad-card--mpu {
  max-width: 300px;
}
.ad-card__media {
  display: block;
  width: 100%;
  height: auto;
  background: #f4f1ec;
  object-fit: contain;
}
.ad-card--leaderboard .ad-card__media {
  aspect-ratio: 728 / 90;
  max-height: 90px;
}
.ad-card--mpu .ad-card__media {
  aspect-ratio: 300 / 250;
  max-height: 250px;
}
.ad-card__fallback {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  min-height: 72px;
}
.ad-card__fallback strong { font-size: 1rem; }
.ad-card__fallback small { color: var(--muted); }
.ad-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.72rem;
  line-height: 1.2;
  color: var(--muted);
  background: rgba(110, 22, 18, 0.03);
  border-top: 1px solid rgba(110, 22, 18, 0.06);
}
.ad-card__badge {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: rgba(110, 22, 18, 0.72);
}
.ad-card__by {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ad-html {
  padding: 0.35rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.12);
  overflow: hidden;
  min-height: 60px;
}
.ad-html--adsense {
  min-height: 0;
  background: transparent;
  border-style: dashed;
}
.ad-html--adsense.is-waiting-consent {
  border-color: rgba(110, 22, 18, 0.18);
  background: #fff;
}
.ad-html--adsense.is-loading .ad-adsense {
  min-height: 90px;
  background: rgba(255,255,255,0.7);
}
.ad-html--adsense.is-filled {
  border-style: solid;
  background: #fff;
  min-height: 90px;
}
.ad-html--adsense.is-empty {
  border-color: rgba(110, 22, 18, 0.18);
  background: #fff;
}
.ad-html--adsense.is-empty .ad-adsense[hidden] {
  display: none !important;
  min-height: 0 !important;
  height: 0 !important;
}
.ad-status-note,
.ad-consent-note {
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(110, 22, 18, 0.04);
  border-radius: 8px;
}
.ad-consent-note[hidden] { display: none !important; }
.ad-adsense {
  min-height: 0;
  width: 100%;
  overflow: hidden;
}
.ad-adsense[hidden] { display: none !important; }
.ad-adsense ins.adsbygoogle {
  display: block;
  min-width: 100%;
}
.ad-html-frame {
  display: block;
  width: 100%;
  min-height: 90px;
  height: 120px;
  border: 0;
  background: transparent;
}

.legal-page { max-width: 720px; }
.legal-page h2 { margin-top: 1.75rem; font-size: 1.2rem; }
.legal-page ul { padding-left: 1.2rem; }

.content-page { max-width: 680px; margin-inline: auto; }
.content-page .lede {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 0.5rem;
}
.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0 0 0.75rem;
  color: var(--coral-deep);
}
.content-body {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.content-body > *:first-child { margin-top: 0; }
.content-body p { margin: 0 0 1rem; }
.content-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--coral-deep);
  margin: 1.75rem 0 0.65rem;
}
.content-body h3 {
  font-size: 1.08rem;
  color: var(--coral-deep);
  margin: 1.25rem 0 0.45rem;
}
.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.faq-list--page { margin-top: 1.25rem; }

.home-below {
  padding-top: 0.25rem;
  padding-bottom: 2.5rem;
}
.home-content {
  width: min(760px, 100%);
  margin-inline: auto;
}
.home-content-head {
  text-align: center;
  margin-bottom: 1.35rem;
}
.home-content-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--coral-deep);
  margin: 0 0 0.75rem;
}
.home-content-body {
  text-align: left;
  max-width: none;
}
.home-content-body p:last-child { margin-bottom: 0; }
.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 0 0 1.25rem;
}
.home-step {
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.14);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  display: grid;
  gap: 0.35rem;
  text-align: left;
}
.home-step-num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: var(--coral-deep);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
}
.home-step strong { color: var(--coral-deep); }
.home-step p { margin: 0; color: var(--ink-soft); line-height: 1.45; font-size: 0.95rem; }
.home-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.home-faq {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(110, 22, 18, 0.12);
}
.home-faq .faq-head {
  text-align: center;
  margin-bottom: 1rem;
}
.home-faq-more {
  margin: 1rem 0 0;
  text-align: center;
  font-weight: 600;
}

.faq-section {
  width: min(760px, 100%);
  margin-inline: auto;
  padding-bottom: 2.5rem;
}
.faq-section .faq-head { text-align: center; }

.lunch-guide-intro {
  max-width: 46rem;
  margin: 0.35rem 0 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 1.02rem;
}
.lunch-guide-outro {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(110, 22, 18, 0.12);
  max-width: 46rem;
}
.lunch-guide-outro h2 {
  font-size: 1.2rem;
  color: var(--coral-deep);
  margin: 0 0 0.5rem;
}
.lunch-guide-outro p { color: var(--ink-soft); line-height: 1.55; }
.lunch-guide-outro-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.15rem;
  font-weight: 600;
}

@media (max-width: 800px) {
  .home-steps { grid-template-columns: 1fr; }
}
.content-actions .btn-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.content-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
  max-width: 520px;
}
.content-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}
.content-form input,
.content-form textarea {
  width: 100%;
  border: 1px solid rgba(110, 22, 18, 0.2);
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: #fff;
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.faq-section { padding-bottom: 2.5rem; }
.faq-head { margin-bottom: 1rem; text-align: center; }
.faq-head h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--coral-deep);
}
.faq-list {
  display: grid;
  gap: 0.55rem;
  width: min(680px, 100%);
  max-width: 680px;
  margin-inline: auto;
}
.content-faq {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(110, 22, 18, 0.12);
}
.content-faq .faq-list {
  width: 100%;
  max-width: none;
}
.faq-item {
  background: #fff;
  border: 1px solid rgba(110, 22, 18, 0.12);
  border-radius: 12px;
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1.1rem;
  font-weight: 700;
  color: var(--ink);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  padding: 0.75rem 1.1rem 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
  border-top: 1px solid rgba(110, 22, 18, 0.08);
}

.lunch-filter-form { margin-top: 1rem; }
.lunch-results.is-loading {
  opacity: 0.55;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.lunch-filter-form .diet-filters-submit {
  display: none;
}
.lunch-filters {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0.65rem;
  align-items: end;
  margin: 0.85rem 0;
}
.lunch-filters label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.lunch-filters input,
.lunch-filters select {
  border: 1px solid rgba(110, 22, 18, 0.2);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  background: #fff;
  min-height: 2.75rem;
  box-sizing: border-box;
}
.lunch-open-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(110, 22, 18, 0.2);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  background: #fff;
  min-height: 2.75rem;
  box-sizing: border-box;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.lunch-open-toggle input {
  margin: 0;
  accent-color: var(--coral);
  min-height: 0;
  padding: 0;
  border: 0;
}
.lunch-week-btn {
  flex-shrink: 0;
  min-width: 2.75rem;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}
.lunch-count { margin: 0 0 1rem; }

@media (max-width: 900px) {
  .lunch-filters { grid-template-columns: 1fr 1fr; }
  .lunch-search { grid-column: 1 / -1; }
  .lunch-day-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    width: 100%;
    gap: 0.35rem;
    padding-bottom: 0.25rem;
  }
  .lunch-day-tab {
    flex: 0 0 auto;
    min-width: 3.4rem;
    scroll-snap-align: start;
    padding: 0.4rem 0.35rem;
    font-size: 0.75rem;
  }
  .lunch-day-nav {
    flex-direction: row;
    align-items: stretch;
    gap: 0.35rem;
  }

  .lunch-card { padding: 0.9rem; }
  .lunch-card-logo { width: 56px; height: 56px; }
  .lunch-dish-list li { flex-direction: column; gap: 0.25rem; }
  .hero-copy-body { padding-right: 3.5rem; }
  .hero-filters {
    grid-template-columns: 1fr;
  }
  .hero-diet-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .lunch-filters { grid-template-columns: 1fr; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions .btn-primary,
  .cookie-banner-actions .btn-secondary { width: 100%; }
  .hero-place { grid-template-columns: 1fr; }
  .hero-place .btn-primary { width: 100%; }
}

/* ——— Publik sajt: mobil & tablet ——— */
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    order: 3;
    padding: 0.35rem 0 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .site-header.is-nav-open .nav { display: flex; }
  .nav a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: 0; }

  .lunch-guide-city {
    flex-direction: column;
    align-items: stretch;
  }
  .lunch-guide-city .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .lunch-guide-city select { min-width: 0; width: 100%; }

  .business-page .biz-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .business-page .biz-logo { margin: 0 auto; }

  .footer-inner--legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .map-pin { width: 142px; }
  .map-pin__text strong { font-size: 0.72rem; }
  .map-pin__text small { font-size: 0.62rem; }
}

@media (max-width: 768px) {
  .section { padding: 1.35rem 0 2.25rem; }

  .hero {
    min-height: auto;
    display: block;
  }
  .hero-map {
    min-height: 62vh;
    min-height: 62dvh;
  }
  .hero-copy {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    max-width: none;
    margin: 0.65rem 0.75rem 0;
    width: auto;
  }
  .hero-copy.is-minimized {
    position: absolute;
    top: 0.65rem;
    left: 0.75rem;
    right: auto;
    margin: 0;
    z-index: 6;
  }
  .hero-copy-body { padding-right: 3.25rem; }
  .hero h1 { font-size: 1.45rem; }
  .hero .lede { font-size: 0.95rem; margin-bottom: 0.65rem; }
  .hero-filters {
    grid-template-columns: 1fr 1fr;
  }
  .hero-filters .hero-check { grid-column: 1 / -1; }

  .lunch-day-nav {
    flex-direction: row;
    align-items: stretch;
    gap: 0.35rem;
  }

  .lunch-card-head {
    flex-wrap: wrap;
  }
  .menu-dish-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .menu-dish-price { white-space: normal; }

  .reg-map,
  .biz-map {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .brand { font-size: 1.2rem; }
  .header-inner { min-height: 56px; }

  .hero-map {
    min-height: 56vh;
    min-height: 56dvh;
  }
  .hero-copy {
    margin: 0.5rem;
    padding: 0.9rem 1rem;
  }
  .hero-filters,
  .hero-diet-grid {
    grid-template-columns: 1fr;
  }

  .lunch-filters { grid-template-columns: 1fr; }
  .diet-filters {
    align-items: stretch;
  }
  .diet-filters-submit {
    width: 100%;
    margin-top: 0.25rem;
  }

  .lunch-week-btn {
    min-width: 2.5rem;
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }

  .map-popup-pane .leaflet-popup-content {
    min-width: 0;
    max-width: calc(100vw - 2.5rem);
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
  }
}

/* ——— Restaurangkonto (/konto) mobil & tablet ——— */
.business-account .nav a.is-active {
  color: var(--yellow);
  font-weight: 800;
}
.business-account .nav-logout-form {
  margin: 0;
  padding: 0;
}
.business-account .nav-logout-form .linkish {
  width: 100%;
  text-align: left;
}

@media (max-width: 900px) {
  .business-account .menu-period-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .business-account .menu-period-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  .business-account .menu-period-nav .btn-secondary {
    text-align: center;
    justify-content: center;
  }
  .business-account .menu-week-filters {
    width: 100%;
  }

  .business-account .menu-week-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-account .menu-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .business-account .menu-list li > span {
    flex: 1 1 12rem;
    min-width: 0;
  }
  .business-account .menu-list li form {
    flex: 0 0 auto;
  }

  .business-account .dish-catalog-item {
    flex-direction: column;
    align-items: stretch;
  }
  .business-account .dish-catalog-actions {
    width: 100%;
  }
  .business-account .dish-catalog-actions .btn-primary,
  .business-account .dish-catalog-actions .btn-secondary {
    flex: 1 1 auto;
    text-align: center;
    justify-content: center;
  }

  .business-account .menu-row-prices {
    grid-template-columns: 1fr;
  }
  .business-account .repeat-mode {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
  }
  .business-account .repeat-mode select {
    width: 100%;
  }

  .business-account #menu-form .btn-secondary,
  .business-account #menu-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
  }
  .business-account #menu-form .muted {
    display: block;
    margin: 0.75rem 0 0;
  }

  .business-account .nav-logout-form {
    padding: 0.75rem 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 0.25rem;
  }
}

@media (max-width: 640px) {
  .business-account .menu-calendar {
    grid-template-columns: 1fr;
  }
  .business-account .menu-week {
    padding: 0.85rem;
  }
  .business-account .menu-week-grid {
    grid-template-columns: 1fr;
  }
  .business-account .day-card {
    min-height: auto;
  }
  .business-account .hours-day {
    grid-template-columns: 1fr;
  }
  .business-account .hours-day .check {
    grid-column: 1;
  }
  .business-account .hours-day label {
    display: grid;
    gap: 0.35rem;
  }
  .business-account .hours-form .btn-primary {
    width: 100%;
  }
  .business-account .dish-add-form .btn-primary {
    width: 100%;
  }
  .business-account .lunch-settings-form .btn-primary {
    width: 100%;
  }
  .business-account .lunch-back-link {
    display: block;
    margin-top: 0.75rem;
  }
  .business-account .register-form .btn-primary {
    width: 100%;
  }
  .business-account .profile-logo-preview {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .business-account-main.section {
    padding: 1.15rem 0 2rem;
  }
  .business-account .menu-week-filters {
    gap: 0.35rem;
  }
  .business-account .menu-week-filters a {
    font-size: 0.88rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Ägarstatistik + boost + favoriter + export */
.biz-stats {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(110,22,18,0.12);
  border-radius: 14px;
}
.biz-stats-title { margin: 0 0 0.25rem; font-size: 1.15rem; color: #6E1612; }
.biz-stats-lede { margin: 0 0 0.85rem; }
.biz-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (max-width: 720px) {
  .biz-stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.biz-stat {
  background: rgba(110,22,18,0.04);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  display: grid;
  gap: 0.15rem;
}
.biz-stat strong { font-size: 1.35rem; color: #6E1612; }
.biz-stat span { font-size: 0.85rem; color: #7A4E48; }
.biz-spark {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 52px;
  margin-top: 0.85rem;
}
.biz-spark span {
  flex: 1;
  background: #6E1612;
  opacity: 0.55;
  border-radius: 3px 3px 0 0;
  min-width: 4px;
}
.biz-boost { margin-top: 1rem; }
.biz-panel {
  margin: 1.25rem 0 1.5rem;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid rgba(110,22,18,0.12);
  border-radius: 14px;
}
.biz-panel-title {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  color: #6E1612;
}
.biz-boost-form {
  display: grid;
  gap: 0.9rem;
  max-width: 28rem;
  margin-top: 0.85rem;
}
.biz-boost-field {
  display: grid;
  gap: 0.4rem;
}
.biz-boost-field label {
  display: block;
  font-weight: 700;
  color: #3d100e;
}
.biz-boost-field select,
.biz-boost-field textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(110, 22, 18, 0.2);
  background: #fff;
  color: inherit;
}
.biz-boost-field textarea {
  min-height: 5rem;
  resize: vertical;
}
.biz-boost-form .btn-primary {
  justify-self: start;
  margin-top: 0.15rem;
}
.day-card--accent {
  border-color: rgba(247, 206, 70, 0.85);
  background: linear-gradient(180deg, #fffdf5 0%, #fff 100%);
}
.boost-badge {
  display: inline-block;
  margin: 0.15rem 0 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: #F7CE46;
  color: #3d100e;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.biz-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.5rem 0 0.75rem; }
#fav-toggle.is-fav { background: #6E1612; color: #fff; border-color: #6E1612; }
.favorites-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.favorites-item {
  background: #fff;
  border: 1px solid rgba(110,22,18,0.12);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: grid;
  gap: 0.35rem;
}
.favorites-dishes { margin: 0.25rem 0 0; padding-left: 1.1rem; color: #7A4E48; }
.reminder-form { display: grid; gap: 0.85rem; max-width: 420px; }
.reminder-form label { display: grid; gap: 0.35rem; font-weight: 600; }
.reminder-form input, .reminder-form select {
  font: inherit; padding: 0.65rem 0.75rem; border-radius: 10px;
  border: 1px solid rgba(110,22,18,0.2);
}
.export-pitch {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(247, 206, 70, 0.22);
  border: 1px solid rgba(110,22,18,0.1);
}
.export-dish-list--cards li {
  display: block;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.45rem;
  border: 1px solid rgba(110,22,18,0.1);
  border-radius: 10px;
}
.export-dish-list--wide { max-width: none; }
.export-dish-list--compact li { padding: 0.2rem 0; font-size: 0.92rem; }
