/* Shared layout presets and color themes */
body.theme-no-box .menu-list {
  gap: 0.35rem;
}

body.theme-no-box .menu-item {
  display: block;
  min-height: 0;
  padding: 0.45rem 0 0.7rem;
  border: 0;
  border-top: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}


body.theme-no-box .menu-item::before {
  display: none !important;
}

body.theme-no-box .menu-item-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: start;
}

body.theme-no-box .menu-item-name {
  margin: 0;
  line-height: 1.05;
}

body.theme-no-box .menu-item-price {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  white-space: nowrap;
  text-align: right;
  line-height: 1;
}

body.theme-no-box .menu-item-description {
  margin-top: 0.15rem;
  max-width: 92%;
}

body.theme-no-box .menu-item-meta {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12rem;
}

body.theme-no-box .menu-pill {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.theme-no-box .menu-pill.featured,
body.theme-no-box .menu-pill.soldout {
  font-weight: 700;
}

@media (max-width: 900px) {
  body.theme-no-box .menu-item-description {
    max-width: 100%;
  }
}


/* =========================
   THEME EXPANSION
   ========================= */

.theme-effects {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 12;
  overflow: hidden;
}

.theme-effect {
  position: absolute;
  inset: 0;
}

body {
  --theme-accent: var(--gold);
  --theme-accent-strong: var(--gold);
  --theme-accent-soft: color-mix(in srgb, var(--theme-accent) 18%, transparent);
  --theme-panel-tint: transparent;
}

body.color-theme-default {
  --theme-accent: var(--gold);
  --theme-accent-strong: var(--gold);
  --theme-accent-soft: color-mix(in srgb, var(--gold) 18%, transparent);
  --theme-panel-tint: transparent;
}

body.color-theme-ocean {
  --theme-accent: #3db8ff;
  --theme-accent-strong: #1479c9;
  --theme-accent-soft: rgba(61, 184, 255, 0.18);
  --theme-panel-tint: rgba(61, 184, 255, 0.06);
}

body.color-theme-evergreen {
  --theme-accent: #56b88b;
  --theme-accent-strong: #1f7f5a;
  --theme-accent-soft: rgba(86, 184, 139, 0.18);
  --theme-panel-tint: rgba(86, 184, 139, 0.06);
}

body.color-theme-sunset {
  --theme-accent: #ff9f5a;
  --theme-accent-strong: #cf5f3e;
  --theme-accent-soft: rgba(255, 159, 90, 0.18);
  --theme-panel-tint: rgba(255, 159, 90, 0.06);
}

body.color-theme-maroon {
  --theme-accent: #a12839;
  --theme-accent-strong: #6f1625;
  --theme-accent-soft: rgba(161, 40, 57, 0.2);
  --theme-panel-tint: rgba(161, 40, 57, 0.08);
}

body.color-theme-pink {
  --theme-accent: #e85b93;
  --theme-accent-strong: #b83368;
  --theme-accent-soft: rgba(232, 91, 147, 0.2);
  --theme-panel-tint: rgba(232, 91, 147, 0.08);
}

body.color-theme-monochrome {
  --theme-accent: #aab2be;
  --theme-accent-strong: #5a6472;
  --theme-accent-soft: rgba(170, 178, 190, 0.18);
  --theme-panel-tint: rgba(170, 178, 190, 0.05);
}

body:not(.color-theme-default)[class*="color-theme-"] .eyebrow,
body[class*="color-theme-"] .section-kicker,
body[class*="color-theme-"] .menu-item-price,
body[class*="color-theme-"] .hours-display-title {
  color: var(--theme-accent);
}

body:not(.color-theme-default)[class*="color-theme-"] .brand-header,
body[class*="color-theme-"] .section-stage,
body[class*="color-theme-"] .settings-modal,
body[class*="color-theme-"] .modal {
  box-shadow: 0 16px 36px color-mix(in srgb, var(--theme-accent) 12%, rgba(0,0,0,0.10));
}

body:not(.color-theme-default)[class*="color-theme-"] .section-button.active,
body[class*="color-theme-"] .primary-btn,
body[class*="color-theme-"] .display-nav:hover {
  background: linear-gradient(135deg, var(--theme-accent-strong), var(--theme-accent));
  border-color: color-mix(in srgb, var(--theme-accent-strong) 60%, transparent);
}

body:not(.color-theme-default)[class*="color-theme-"] .section-button,
body[class*="color-theme-"] .display-nav,
body[class*="color-theme-"] input,
body[class*="color-theme-"] textarea,
body[class*="color-theme-"] select,
body[class*="color-theme-"] .menu-item,
body[class*="color-theme-"] .hours-display-column,
body[class*="color-theme-"] .section-stage,
body[class*="color-theme-"] .brand-header {
  border-color: color-mix(in srgb, var(--theme-accent) 20%, var(--line));
}

body:not(.color-theme-default)[class*="color-theme-"] .menu-item {
  background-image: linear-gradient(180deg, var(--theme-panel-tint), transparent 48%);
}

body[class*="color-theme-"] #sectionTitle {
  color: var(--text-strong);
}

body:not(.color-theme-default)[class*="color-theme-"] .brand-copy h1 {
  color: var(--text);
}

body:not(.color-theme-default)[class*="color-theme-"] .section-button.active,
body[class*="color-theme-"] .primary-btn {
  color: #fff;
}


body.theme-no-box:not(.color-theme-default)[class*="color-theme-"] .menu-item {
  background: linear-gradient(180deg, color-mix(in srgb, var(--theme-panel-tint) 55%, transparent), transparent 58%);
}

/* Halloween */
