﻿:root {
  --ephcms-color-primary: #536174;
  --ephcms-color-primary-dark: #374151;
  --ephcms-color-primary-soft: #eef2f7;
  --ephcms-color-on-primary: #ffffff;
  --ephcms-color-accent: #0f766e;
  --ephcms-color-accent-soft: #e4f7f3;
  --ephcms-color-background: #f7f8fb;
  --ephcms-color-surface: #ffffff;
  --ephcms-color-surface-muted: #f7f8fb;
  --ephcms-color-text: #1f2937;
  --ephcms-color-heading: #111827;
  --ephcms-color-muted: #6b7280;
  --ephcms-color-border: #dde3ee;
  --ephcms-color-border-strong: #b8c2d3;
  --ephcms-color-warning-surface: #fff4ce;
  --ephcms-color-success: #15803d;
  --ephcms-color-warning: #f0c36a;
  --ephcms-color-danger: #dc2626;
  --ephcms-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ephcms-font-heading: var(--ephcms-font-body);
  --ephcms-font-size-sm: .875rem;
  --ephcms-font-size-base: 1rem;
  --ephcms-font-size-lg: 1.125rem;
  --ephcms-font-size-xl: 1.25rem;
  --ephcms-line-height-body: 1.6;
  --ephcms-line-height-heading: 1.15;
  --ephcms-space-1: .25rem;
  --ephcms-space-2: .5rem;
  --ephcms-space-3: .75rem;
  --ephcms-space-4: 1rem;
  --ephcms-space-5: 1.5rem;
  --ephcms-space-6: 2rem;
  --ephcms-space-7: 3rem;
  --ephcms-space-8: 4rem;
  --ephcms-radius-sm: .35rem;
  --ephcms-radius-md: .55rem;
  --ephcms-radius-lg: .75rem;
  --ephcms-radius-xl: 1.25rem;
  --ephcms-shadow-sm: 0 4px 12px rgba(31, 41, 55, .08);
  --ephcms-shadow-md: 0 12px 32px rgba(31, 41, 55, .1);
  --ephcms-shadow-lg: 0 28px 70px rgba(31, 41, 55, .16);
  --ephcms-button-radius: var(--ephcms-radius-md);
  --ephcms-button-font-weight: 700;
  --ephcms-button-shadow: var(--ephcms-shadow-sm);
  --ephcms-button-focus-ring: 0 0 0 .2rem rgba(83, 97, 116, .24);
  --ephcms-container-max: 1140px;
  --ephcms-section-padding-y: 4rem;
  --ephcms-section-padding-y-sm: 2.5rem;
  --ephcms-card-padding: 1.5rem;
  --ephcms-grid-gap: 1.5rem;
}

body.cms-theme-default {
  background: var(--ephcms-color-background);
  color: var(--ephcms-color-text);
}

.cms-theme-default .navbar,
.cms-theme-default .cms-navbar {
  background: var(--ephcms-color-surface);
  border-bottom: 1px solid var(--ephcms-color-border);
}

.cms-theme-default h1,
.cms-theme-default h2,
.cms-theme-default h3 {
  color: var(--ephcms-color-text);
}

.cms-theme-default .ephcms-page {
  background: transparent;
}

.cms-theme-default .ephcms-section {
  background: transparent;
}

.cms-theme-default .card,
.cms-theme-default .cms-card {
  border-color: var(--ephcms-color-border);
  border-radius: .5rem;
}

.cms-theme-default .text-muted {
  color: var(--ephcms-color-muted) !important;
}

.cms-theme-default .text-primary {
  color: var(--ephcms-color-primary) !important;
}

.cms-theme-default .badge.text-bg-primary {
  background-color: var(--ephcms-color-primary) !important;
  color: var(--ephcms-color-on-primary) !important;
}

.cms-theme-default .ephcms-page .btn,
.cms-theme-default .ephcms-section .btn,
.cms-theme-default .ephcms-layout-item .btn,
.cms-theme-default .ephcms-component .btn,
.cms-theme-default .ephcms-admin .btn {
  border-radius: var(--ephcms-radius-md);
  box-shadow: var(--ephcms-shadow-sm);
  font-weight: 600;
  line-height: 1.25;
  padding: .45rem .9rem;
  transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
}

.cms-theme-default .ephcms-page .btn:hover,
.cms-theme-default .ephcms-section .btn:hover,
.cms-theme-default .ephcms-layout-item .btn:hover,
.cms-theme-default .ephcms-component .btn:hover,
.cms-theme-default .ephcms-admin .btn:hover {
  box-shadow: var(--ephcms-shadow-md);
}

.cms-theme-default .ephcms-page .btn:focus-visible,
.cms-theme-default .ephcms-section .btn:focus-visible,
.cms-theme-default .ephcms-layout-item .btn:focus-visible,
.cms-theme-default .ephcms-component .btn:focus-visible,
.cms-theme-default .ephcms-admin .btn:focus-visible {
  box-shadow: 0 0 0 .2rem rgba(83, 97, 116, .24), var(--ephcms-shadow-sm);
}

.cms-theme-default .ephcms-page .btn-primary,
.cms-theme-default .ephcms-section .btn-primary,
.cms-theme-default .ephcms-layout-item .btn-primary,
.cms-theme-default .ephcms-component .btn-primary,
.cms-theme-default .ephcms-admin .btn-primary {
  background: var(--ephcms-color-primary);
  border-color: var(--ephcms-color-primary);
  color: var(--ephcms-color-on-primary);
}

.cms-theme-default .ephcms-page .btn-primary:hover,
.cms-theme-default .ephcms-section .btn-primary:hover,
.cms-theme-default .ephcms-layout-item .btn-primary:hover,
.cms-theme-default .ephcms-component .btn-primary:hover,
.cms-theme-default .ephcms-admin .btn-primary:hover {
  background: #404b5d;
  border-color: #404b5d;
}

.cms-theme-default .ephcms-page .btn-secondary,
.cms-theme-default .ephcms-section .btn-secondary,
.cms-theme-default .ephcms-layout-item .btn-secondary,
.cms-theme-default .ephcms-component .btn-secondary,
.cms-theme-default .ephcms-admin .btn-secondary {
  background: var(--ephcms-color-muted);
  border-color: var(--ephcms-color-muted);
  color: #fff;
}

.cms-theme-default .ephcms-page .btn-outline-secondary,
.cms-theme-default .ephcms-section .btn-outline-secondary,
.cms-theme-default .ephcms-layout-item .btn-outline-secondary,
.cms-theme-default .ephcms-component .btn-outline-secondary,
.cms-theme-default .ephcms-admin .btn-outline-secondary {
  background: var(--ephcms-color-surface);
  border-color: var(--ephcms-color-border);
  color: var(--ephcms-color-text);
}

.cms-theme-default .ephcms-page .btn-outline-secondary:hover,
.cms-theme-default .ephcms-section .btn-outline-secondary:hover,
.cms-theme-default .ephcms-layout-item .btn-outline-secondary:hover,
.cms-theme-default .ephcms-component .btn-outline-secondary:hover,
.cms-theme-default .ephcms-admin .btn-outline-secondary:hover {
  background: var(--ephcms-color-surface-muted);
  color: var(--ephcms-color-text);
}

.cms-theme-default .ephcms-page .btn-danger,
.cms-theme-default .ephcms-section .btn-danger,
.cms-theme-default .ephcms-layout-item .btn-danger,
.cms-theme-default .ephcms-component .btn-danger,
.cms-theme-default .ephcms-admin .btn-danger {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.cms-theme-default .ephcms-page .btn-success,
.cms-theme-default .ephcms-section .btn-success,
.cms-theme-default .ephcms-layout-item .btn-success,
.cms-theme-default .ephcms-component .btn-success,
.cms-theme-default .ephcms-admin .btn-success {
  background: #198754;
  border-color: #198754;
  color: #fff;
}

.cms-theme-default .ephcms-page .btn-sm,
.cms-theme-default .ephcms-section .btn-sm,
.cms-theme-default .ephcms-layout-item .btn-sm,
.cms-theme-default .ephcms-component .btn-sm,
.cms-theme-default .ephcms-admin .btn-sm {
  border-radius: calc(var(--ephcms-radius-md) - .12rem);
  font-size: .85rem;
  padding: .32rem .68rem;
}

.cms-theme-default .ephcms-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--ephcms-radius-md);
  box-shadow: var(--ephcms-shadow-sm);
  display: inline-flex;
  font-weight: 600;
  gap: .4rem;
  justify-content: center;
  line-height: 1.25;
  padding: .45rem .9rem;
  text-decoration: none;
  transition: background-color .16s ease, border-color .16s ease, box-shadow .16s ease, color .16s ease;
  white-space: nowrap;
}

.cms-theme-default .ephcms-btn:hover {
  box-shadow: var(--ephcms-shadow-md);
  text-decoration: none;
}

.cms-theme-default .ephcms-btn:disabled,
.cms-theme-default .ephcms-btn[disabled] {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .62;
}

.cms-theme-default .ephcms-btn:focus-visible {
  box-shadow: 0 0 0 .2rem rgba(83, 97, 116, .24), var(--ephcms-shadow-sm);
  outline: none;
}

.cms-theme-default .ephcms-btn-primary {
  background: var(--ephcms-color-primary);
  border-color: var(--ephcms-color-primary);
  color: var(--ephcms-color-on-primary);
}

.cms-theme-default .ephcms-btn-primary:hover {
  background: #404b5d;
  border-color: #404b5d;
  color: var(--ephcms-color-on-primary);
}

.cms-theme-default .ephcms-btn-secondary {
  background: var(--ephcms-color-muted);
  border-color: var(--ephcms-color-muted);
  color: #fff;
}

.cms-theme-default .ephcms-btn-success {
  background: #198754;
  border-color: #198754;
  color: #fff;
}

.cms-theme-default .ephcms-btn-danger {
  background: #dc3545;
  border-color: #dc3545;
  color: #fff;
}

.cms-theme-default .ephcms-btn-outline {
  background: var(--ephcms-color-surface);
  border-color: var(--ephcms-color-border);
  color: var(--ephcms-color-text);
}

.cms-theme-default .ephcms-btn-outline:hover {
  background: var(--ephcms-color-surface-muted);
  color: var(--ephcms-color-text);
}

.cms-theme-default .ephcms-btn-outline-danger {
  background: var(--ephcms-color-surface);
  border-color: #dc3545;
  color: #b02a37;
}

.cms-theme-default .ephcms-btn-outline-danger:hover {
  background: #dc3545;
  color: #fff;
}

.cms-theme-default .ephcms-btn-ghost {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--ephcms-color-muted);
}

.cms-theme-default .ephcms-btn-icon {
  min-height: 2rem;
  min-width: 2rem;
}

.cms-theme-default .ephcms-grid-sort-button {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-align: inherit;
  text-decoration: none;
}

.cms-theme-default .ephcms-account-inline-form {
  align-items: center;
  display: inline-flex;
  gap: .65rem;
  margin: 0;
}

.cms-theme-default .ephcms-account-user {
  color: var(--ephcms-color-muted);
  font-size: .9rem;
  white-space: nowrap;
}

.cms-theme-default .btn-group > .ephcms-btn {
  position: relative;
}

.cms-theme-default .btn-group > .ephcms-btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  margin-left: -1px;
}

.cms-theme-default .btn-group > .ephcms-btn:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.cms-theme-default .ephcms-btn-sm {
  border-radius: calc(var(--ephcms-radius-md) - .12rem);
  font-size: .85rem;
  padding: .32rem .68rem;
}

.cms-theme-default .ephcms-btn-lg {
  border-radius: var(--ephcms-radius-lg);
  font-size: 1.05rem;
  padding: .62rem 1.08rem;
}

.cms-theme-default .ephcms-grid-action-column,
.cms-theme-default .ephcms-grid-edit-actions {
  white-space: nowrap;
}

.cms-theme-default .ephcms-page.ephcms-preset-PageLanding {
  padding-block: 2rem;
}

.cms-theme-default .ephcms-page.ephcms-preset-PageNarrow {
  max-width: 880px;
  margin-inline: auto;
}

.cms-theme-default .ephcms-page.ephcms-preset-PageWide {
  max-width: 1320px;
  margin-inline: auto;
}

.cms-theme-default .ephcms-page.ephcms-preset-PageCentered {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.cms-theme-default .ephcms-page.ephcms-preset-PageDashboard {
  max-width: 1440px;
  margin-inline: auto;
}

.cms-theme-default .ephcms-page.ephcms-preset-PageDashboard .ephcms-section {
  margin-bottom: 1rem;
}

.cms-theme-default .ephcms-preset-SectionDefault {
  background: transparent;
}

.cms-theme-default .ephcms-preset-SectionMuted {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: .5rem;
  padding: 1.25rem;
}

.cms-theme-default .ephcms-preset-SectionAccent,
.cms-theme-default .ephcms-preset-HeroPrimary {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  color: var(--ephcms-color-text);
  border: 1px solid var(--ephcms-color-border);
  border-radius: .75rem;
  box-shadow: 0 12px 32px rgba(31, 41, 55, .06);
  padding: 2rem;
}

.cms-theme-default .ephcms-preset-SectionDark {
  background: #1f2937;
  color: #f9fafb;
  border-radius: .5rem;
  padding: 1.5rem;
}

.cms-theme-default .ephcms-preset-HeroCentered {
  text-align: center;
  padding: 2.5rem 1.5rem;
}

.cms-theme-default .ephcms-preset-CardElevated {
  background: var(--ephcms-color-surface);
  border-radius: .75rem;
  box-shadow: var(--ephcms-shadow-md);
  padding: 1.25rem;
}

.cms-theme-default .ephcms-preset-CardBordered {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: .5rem;
  padding: 1.25rem;
}

.cms-theme-default .ephcms-preset-CalloutInfo {
  background: #f3f6fa;
  border-left: .35rem solid var(--ephcms-color-primary);
  padding: 1rem 1.25rem;
}

.cms-theme-default .ephcms-preset-CalloutWarning {
  background: var(--ephcms-color-warning-surface);
  border-left: .35rem solid var(--ephcms-color-warning);
  padding: 1rem 1.25rem;
}

.cms-theme-default .ephcms-layout {
  margin-block: 1rem;
}

.cms-theme-default .ephcms-layout-zone {
  min-height: 100%;
}

.cms-theme-default .ephcms-layout-item + .ephcms-layout-item {
  margin-top: 1rem;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneSidebar,
.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneFilters,
.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneInset,
.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneMutedPanel {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  padding: 1rem;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneSidebar {
  box-shadow: 0 8px 24px rgba(31, 41, 55, .06);
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneFilters {
  background: #f8fafc;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneSticky {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneToolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  background: var(--ephcms-color-surface);
  border-block: 1px solid var(--ephcms-color-border);
  padding: .75rem 1rem;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneHeroBand {
  background: linear-gradient(135deg, #f8fafc 0%, #e8edf3 100%);
  color: var(--ephcms-color-text);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  padding: 2rem;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneMainContent {
  background: transparent;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneCardPanel {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-md);
  padding: 1.25rem;
}

.cms-theme-default .ephcms-layout-item.ephcms-preset-ZoneMutedPanel {
  background: var(--ephcms-color-surface-muted);
}

.cms-theme-default .ephcms-component.ephcms-preset-FormCompact .form-label {
  margin-bottom: .25rem;
}

.cms-theme-default .ephcms-component.ephcms-preset-FormCompact .form-control,
.cms-theme-default .ephcms-component.ephcms-preset-FormCompact .form-select {
  padding-block: .35rem;
}

.cms-theme-default .ephcms-component.ephcms-preset-GridStriped table tbody tr:nth-child(odd) {
  background: rgba(83, 97, 116, .06);
}

.cms-theme-default .ephcms-component.ephcms-preset-GridCarded {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-md);
  padding: 1rem;
}

.cms-theme-default .ephcms-component.ephcms-preset-GridCarded .card,
.cms-theme-default .ephcms-component.ephcms-preset-GridCarded .cms-card {
  box-shadow: var(--ephcms-shadow-md);
}

.cms-theme-default .ephcms-component.ephcms-preset-ButtonPrimary .ephcms-btn,
.cms-theme-default .ephcms-component.ephcms-preset-ButtonPrimary .btn,
.cms-theme-default .ephcms-component.ephcms-preset-ButtonPrimary a.btn {
  background: var(--ephcms-color-primary);
  border-color: var(--ephcms-color-primary);
  color: var(--ephcms-color-on-primary);
}

.cms-theme-default .ephcms-component.ephcms-preset-ButtonOutline .ephcms-btn,
.cms-theme-default .ephcms-component.ephcms-preset-ButtonOutline .btn,
.cms-theme-default .ephcms-component.ephcms-preset-ButtonOutline a.btn {
  background: transparent;
  border-color: var(--ephcms-color-primary);
  color: var(--ephcms-color-primary);
}

.cms-theme-default .cms-business-hours h3,
.cms-theme-default .cms-special-hours-notice h3 {
  font-size: 1.05rem;
  margin-bottom: .75rem;
}

.cms-theme-default .cms-business-hours {
  display: grid;
  gap: 1rem;
}

.cms-theme-default .cms-business-hours__title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.cms-theme-default .cms-business-hours__title {
  margin-bottom: 0;
}

.cms-theme-default .cms-business-hours__location {
  color: var(--ephcms-color-muted);
  font-size: .9rem;
}

.cms-theme-default .cms-business-hours__open-now {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .75rem .9rem;
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-md);
  background: color-mix(in srgb, var(--ephcms-color-surface) 88%, white);
}

.cms-theme-default .cms-business-hours__status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.cms-theme-default .cms-business-hours__status-dot {
  width: .65rem;
  height: .65rem;
  border-radius: 999px;
  background: #991b1b;
  box-shadow: 0 0 0 .18rem rgba(153, 27, 27, .12);
}

.cms-theme-default .cms-business-hours__open-now--open .cms-business-hours__status-dot {
  background: #166534;
  box-shadow: 0 0 0 .18rem rgba(22, 101, 52, .12);
}

.cms-theme-default .cms-business-hours__weekly {
  display: grid;
  gap: .45rem;
  margin: 0;
}

.cms-theme-default .cms-business-hours__day {
  display: grid;
  grid-template-columns: minmax(6.5rem, auto) 1fr;
  gap: .75rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ephcms-color-border) 70%, transparent);
}

.cms-theme-default .cms-business-hours__day:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cms-theme-default .cms-business-hours__day dt {
  color: var(--ephcms-color-muted);
  font-weight: 700;
}

.cms-theme-default .cms-business-hours__day dd {
  margin: 0;
  text-align: right;
}

.cms-theme-default .cms-business-hours__list {
  display: grid;
  grid-template-columns: minmax(6rem, auto) 1fr;
  gap: .4rem 1rem;
  margin: 0;
}

.cms-theme-default .cms-business-hours__list dt {
  color: var(--ephcms-color-muted);
  font-weight: 700;
}

.cms-theme-default .cms-business-hours__list dd {
  margin: 0;
}

.cms-theme-default .cms-open-now {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
}

.cms-theme-default .cms-open-now__status--open {
  color: #166534;
}

.cms-theme-default .cms-open-now__status--closed {
  color: #991b1b;
}

.cms-theme-default .cms-business-location {
  display: grid;
  gap: .8rem;
}

.cms-theme-default .cms-business-location__title {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.cms-theme-default .cms-business-location__name {
  color: var(--ephcms-color-text);
}

.cms-theme-default .cms-business-location__address {
  color: var(--ephcms-color-muted);
  line-height: 1.55;
}

.cms-theme-default .cms-business-location__map {
  overflow: hidden;
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  background: var(--ephcms-color-surface-muted);
}

.cms-theme-default .cms-business-location__map iframe {
  width: 100%;
  min-height: inherit;
  border: 0;
}

.cms-theme-default .cms-restaurant-menu {
  display: grid;
  gap: 1.25rem;
}

.cms-theme-default .cms-restaurant-menu__title {
  margin-bottom: .25rem;
}

.cms-theme-default .cms-restaurant-menu__section {
  display: grid;
  gap: .9rem;
}

.cms-theme-default .cms-restaurant-menu__section-heading {
  border-bottom: 1px solid var(--ephcms-color-border);
  padding-bottom: .45rem;
}

.cms-theme-default .cms-restaurant-menu__item {
  border-color: var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-sm);
}

.cms-theme-default .cms-restaurant-menu__items--list {
  display: grid;
  gap: .85rem;
}

.cms-theme-default .cms-restaurant-menu__item-row {
  align-items: flex-start;
  border-bottom: 1px solid var(--ephcms-color-border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-width: 0;
  padding: .85rem 0;
}

.cms-theme-default .cms-restaurant-menu__item-main {
  min-width: 0;
}

.cms-theme-default .cms-restaurant-menu__item-heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.cms-theme-default .cms-restaurant-menu__item--featured {
  border-color: color-mix(in srgb, var(--ephcms-color-primary) 45%, var(--ephcms-color-border));
  box-shadow: var(--ephcms-shadow-md);
}

.cms-theme-default .cms-restaurant-menu__item-row.cms-restaurant-menu__item--featured {
  background: color-mix(in srgb, var(--ephcms-color-primary) 7%, transparent);
  border-radius: var(--ephcms-radius-md);
  padding-inline: .75rem;
}

.cms-theme-default .cms-restaurant-menu__image {
  aspect-ratio: 16 / 9;
  background: var(--ephcms-color-surface-muted);
  max-width: 100%;
  object-fit: cover;
}

.cms-theme-default .cms-restaurant-menu__price {
  color: var(--ephcms-color-primary);
  flex: 0 0 auto;
  white-space: nowrap;
}

.cms-theme-default .cms-restaurant-menu__tags .badge,
.cms-theme-default .cms-restaurant-menu__featured-badge {
  border-radius: 999px;
  font-weight: 600;
}

.cms-theme-default .cms-specials-events {
  display: grid;
  gap: 1rem;
}

.cms-theme-default .cms-specials-events__title {
  margin-bottom: .15rem;
}

.cms-theme-default .cms-specials-events__heading {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.cms-theme-default .cms-specials-events__item-row {
  align-items: flex-start;
  border-bottom: 1px solid var(--ephcms-color-border);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: .85rem 0;
}

.cms-theme-default .cms-specials-events__item-main {
  min-width: 0;
}

.cms-theme-default .cms-specials-events__item,
.cms-theme-default .cms-specials-events__banner {
  border-color: var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-sm);
}

.cms-theme-default .cms-specials-events__item--featured {
  border-color: color-mix(in srgb, var(--ephcms-color-primary) 45%, var(--ephcms-color-border));
  box-shadow: var(--ephcms-shadow-md);
}

.cms-theme-default .cms-specials-events__item-row.cms-specials-events__item--featured {
  background: color-mix(in srgb, var(--ephcms-color-primary) 7%, transparent);
  border-radius: var(--ephcms-radius-md);
  padding-inline: .75rem;
}

.cms-theme-default .cms-specials-events__image {
  aspect-ratio: 16 / 9;
  background: var(--ephcms-color-surface-muted);
  object-fit: cover;
}

.cms-theme-default .cms-specials-events__banner {
  align-items: center;
  background: color-mix(in srgb, var(--ephcms-color-primary) 9%, var(--ephcms-color-surface));
  border: 1px solid color-mix(in srgb, var(--ephcms-color-primary) 28%, var(--ephcms-color-border));
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 30%);
  padding: 1.25rem;
}

.cms-theme-default .cms-specials-events__banner-image {
  aspect-ratio: 16 / 10;
  border-radius: var(--ephcms-radius-md);
  max-width: 100%;
  object-fit: cover;
}

.cms-theme-default .cms-content-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(14rem, .95fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-xl);
  box-shadow: var(--ephcms-shadow-sm);
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.cms-theme-default .cms-content-block__eyebrow {
  color: var(--ephcms-color-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: .65rem;
  text-transform: uppercase;
}

.cms-theme-default .cms-content-block__title {
  color: var(--ephcms-color-heading);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  margin-bottom: 1rem;
}

.cms-theme-default .cms-content-block__description {
  color: var(--ephcms-color-muted);
  font-size: var(--ephcms-font-size-lg);
  line-height: 1.7;
  max-width: 42rem;
}

.cms-theme-default .cms-content-block__actions {
  margin-top: 1.4rem;
}

.cms-theme-default .cms-content-block__media img {
  aspect-ratio: 16 / 10;
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-md);
  max-width: 100%;
  object-fit: cover;
}

.cms-theme-default .cms-content-block__media:has(img[src=""]) {
  display: none;
}

.cms-theme-default .cms-content-block--Centered,
.cms-theme-default .cms-content-block--CTA {
  grid-template-columns: 1fr;
  text-align: center;
}

.cms-theme-default .cms-content-block--Centered .cms-content-block__description,
.cms-theme-default .cms-content-block--CTA .cms-content-block__description {
  margin-inline: auto;
}

.cms-theme-default .cms-content-block--Hero,
.cms-theme-default .cms-content-block--Editorial {
  background: linear-gradient(135deg, var(--ephcms-color-primary-dark, var(--ephcms-color-primary)), var(--ephcms-color-primary));
  color: var(--ephcms-color-on-primary);
}

.cms-theme-default .cms-content-block--Hero .cms-content-block__title,
.cms-theme-default .cms-content-block--Editorial .cms-content-block__title {
  color: var(--ephcms-color-on-primary);
}

.cms-theme-default .cms-content-block--Hero .cms-content-block__description,
.cms-theme-default .cms-content-block--Editorial .cms-content-block__description,
.cms-theme-default .cms-content-block--Hero .cms-content-block__eyebrow,
.cms-theme-default .cms-content-block--Editorial .cms-content-block__eyebrow {
  color: rgba(255, 255, 255, .84);
}

.cms-theme-default .cms-content-block--MediaLeft .cms-content-block__media {
  order: -1;
}

.cms-theme-default .cms-collection {
  display: grid;
  gap: var(--ephcms-space-4);
}

.cms-theme-default .cms-collection--Cards,
.cms-theme-default .cms-collection--FeatureGrid,
.cms-theme-default .cms-collection--Pricing,
.cms-theme-default .cms-collection--Testimonials {
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

.cms-theme-default .cms-collection__item {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-sm);
  overflow: hidden;
}

.cms-theme-default .cms-collection__body {
  padding: var(--ephcms-card-padding);
}

.cms-theme-default .cms-collection__media:has(img[src=""]),
.cms-theme-default .cms-collection__meta:empty,
.cms-theme-default .cms-collection__description:empty,
.cms-theme-default .cms-collection__value:empty,
.cms-theme-default .cms-collection__badge:empty {
  display: none;
}

.cms-theme-default .cms-collection__image {
  aspect-ratio: 16 / 9;
  background: var(--ephcms-color-surface-muted);
  display: block;
  width: 100%;
  object-fit: cover;
}

.cms-theme-default .cms-collection__meta {
  color: var(--ephcms-color-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  margin-bottom: .4rem;
  text-transform: uppercase;
}

.cms-theme-default .cms-collection__title {
  color: var(--ephcms-color-heading);
  font-size: var(--ephcms-font-size-lg);
  margin-bottom: .55rem;
}

.cms-theme-default .cms-collection__description {
  color: var(--ephcms-color-muted);
  line-height: 1.65;
}

.cms-theme-default .cms-collection__value {
  color: var(--ephcms-color-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-top: .75rem;
}

.cms-theme-default .cms-collection__badge {
  display: inline-flex;
  align-items: center;
  background: var(--ephcms-color-primary-soft);
  border-radius: 999px;
  color: var(--ephcms-color-primary-dark, var(--ephcms-color-primary));
  font-size: .78rem;
  font-weight: 800;
  margin-top: .85rem;
  padding: .25rem .65rem;
}

.cms-theme-default .cms-collection--Stats {
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.cms-theme-default .cms-collection--Stats .cms-collection__item {
  text-align: center;
}

.cms-theme-default .cms-collection--Stats .cms-collection__value {
  margin-top: 0;
  order: -1;
}

.cms-theme-default .cms-collection--Timeline {
  gap: var(--ephcms-space-3);
}

.cms-theme-default .cms-collection--Timeline .cms-collection__item {
  border-left: .25rem solid var(--ephcms-color-primary);
}

.cms-theme-default .cms-collection--Badges {
  display: flex;
  flex-wrap: wrap;
}

.cms-theme-default .cms-collection--Badges .cms-collection__item {
  border-radius: 999px;
}

.cms-theme-default .cms-collection--Badges .cms-collection__body {
  padding: .5rem .85rem;
}

.cms-theme-default .cms-collection--Badges .cms-collection__title {
  font-size: .95rem;
  margin-bottom: 0;
}

.cms-theme-default .cms-collection--Alerts .cms-collection__item {
  background: var(--ephcms-color-primary-soft);
}

.cms-theme-default .cms-collection--DefinitionList .cms-collection__item,
.cms-theme-default .cms-collection--CompactList .cms-collection__item {
  box-shadow: none;
}

.cms-theme-default .cms-data-table {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-sm);
  overflow: hidden;
}

.cms-theme-default .cms-data-table__table-wrap {
  overflow-x: auto;
}

.cms-theme-default .cms-data-table table {
  margin-bottom: 0;
}

.cms-theme-default .cms-data-table thead th {
  background: var(--ephcms-color-surface-muted);
  border-bottom-color: var(--ephcms-color-border);
  color: var(--ephcms-color-heading);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cms-theme-default .cms-data-table tbody td {
  border-color: var(--ephcms-color-border);
  color: var(--ephcms-color-text);
}

.cms-theme-default .cms-data-table--Compact table {
  font-size: .9rem;
}

.cms-theme-default .cms-data-table--Compact tbody td,
.cms-theme-default .cms-data-table--Compact thead th {
  padding-block: .45rem;
}

.cms-theme-default .cms-data-table--ResponsiveCards thead {
  display: none;
}

.cms-theme-default .cms-data-table--ResponsiveCards table,
.cms-theme-default .cms-data-table--ResponsiveCards tbody,
.cms-theme-default .cms-data-table--ResponsiveCards tr,
.cms-theme-default .cms-data-table--ResponsiveCards td {
  display: block;
}

.cms-theme-default .cms-data-table--ResponsiveCards tr {
  border-bottom: 1px solid var(--ephcms-color-border);
  padding: .75rem 1rem;
}

.cms-theme-default .cms-data-table--ResponsiveCards tr:last-child {
  border-bottom: 0;
}

.cms-theme-default .cms-data-table--ResponsiveCards td {
  border: 0;
  display: grid;
  grid-template-columns: minmax(7rem, .35fr) 1fr;
  gap: 1rem;
  padding: .35rem 0;
}

.cms-theme-default .cms-data-table--ResponsiveCards td::before {
  color: var(--ephcms-color-muted);
  content: attr(data-label);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cms-theme-default .cms-navigation__items {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}

.cms-theme-default .cms-navigation__item {
  align-items: center;
  border-radius: var(--ephcms-radius-md);
  color: var(--ephcms-color-text);
  display: inline-flex;
  gap: .4rem;
  padding: .55rem .75rem;
  text-decoration: none;
}

.cms-theme-default .cms-navigation__item:hover,
.cms-theme-default .cms-navigation__item:focus {
  background: var(--ephcms-color-primary-soft);
  color: var(--ephcms-color-primary-dark, var(--ephcms-color-primary));
}

.cms-theme-default .cms-navigation__description:empty,
.cms-theme-default .cms-navigation__badge:empty {
  display: none;
}

.cms-theme-default .cms-navigation__badge {
  background: var(--ephcms-color-primary-soft);
  border-radius: 999px;
  color: var(--ephcms-color-primary-dark, var(--ephcms-color-primary));
  font-size: .72rem;
  font-weight: 800;
  padding: .15rem .45rem;
}

.cms-theme-default .cms-navigation--Breadcrumb .cms-navigation__items {
  gap: .15rem;
}

.cms-theme-default .cms-navigation--Breadcrumb .cms-navigation__item {
  color: var(--ephcms-color-muted);
  padding-inline: .25rem;
}

.cms-theme-default .cms-navigation--Breadcrumb .cms-navigation__item + .cms-navigation__item::before {
  color: var(--ephcms-color-muted);
  content: "/";
  margin-right: .45rem;
}

.cms-theme-default .cms-navigation--Sidebar .cms-navigation__items {
  align-items: stretch;
  flex-direction: column;
}

.cms-theme-default .cms-navigation--Sidebar .cms-navigation__item {
  border: 1px solid var(--ephcms-color-border);
  justify-content: space-between;
}

.cms-theme-default .cms-navigation--MegaMenu .cms-navigation__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: var(--ephcms-space-3);
}

.cms-theme-default .cms-navigation--MegaMenu .cms-navigation__item {
  align-items: flex-start;
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  box-shadow: var(--ephcms-shadow-sm);
  flex-direction: column;
  padding: var(--ephcms-space-4);
}

.cms-theme-default .cms-navigation--MegaMenu .cms-navigation__description {
  color: var(--ephcms-color-muted);
  font-size: .92rem;
}

.cms-theme-default .cms-navigation--FooterLinks .cms-navigation__item {
  color: var(--ephcms-color-muted);
  padding: .25rem .5rem;
}

.cms-theme-default .ephcms-user-profile-header {
  margin-bottom: var(--ephcms-space-4);
  max-width: 56rem;
}

.cms-theme-default .ephcms-user-profile-kicker {
  color: var(--ephcms-color-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: .35rem;
  text-transform: uppercase;
}

.cms-theme-default .ephcms-user-profile-header h2 {
  color: var(--ephcms-color-heading);
  font-weight: 800;
  margin-bottom: .5rem;
}

.cms-theme-default .ephcms-user-profile-header p,
.cms-theme-default .ephcms-user-profile-card p {
  color: var(--ephcms-color-muted);
}

.cms-theme-default .ephcms-user-profile-grid {
  display: grid;
  gap: var(--ephcms-space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cms-theme-default .ephcms-user-profile-card {
  background: var(--ephcms-color-surface);
  border: 1px solid var(--ephcms-color-border);
  border-radius: var(--ephcms-radius-lg);
  box-shadow: var(--ephcms-shadow-sm);
  padding: var(--ephcms-space-4);
}

.cms-theme-default .ephcms-user-profile-card-heading {
  color: var(--ephcms-color-heading);
  font-weight: 800;
  margin-bottom: var(--ephcms-space-3);
}

.cms-theme-default .ephcms-user-profile-details {
  display: grid;
  gap: .75rem;
  margin: 0;
}

.cms-theme-default .ephcms-user-profile-details div {
  border-bottom: 1px solid var(--ephcms-color-border);
  padding-bottom: .65rem;
}

.cms-theme-default .ephcms-user-profile-details dt {
  color: var(--ephcms-color-muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cms-theme-default .ephcms-user-profile-details dd {
  color: var(--ephcms-color-heading);
  margin: .15rem 0 0;
}

.cms-theme-default .ephcms-user-profile-signout .ephcms-account-inline-form {
  align-items: flex-start;
  flex-direction: column;
}

@media (max-width: 575.98px) {
  .cms-theme-default .ephcms-user-profile-grid {
    grid-template-columns: 1fr;
  }

  .cms-theme-default .cms-business-hours__open-now,
  .cms-theme-default .cms-business-hours__day {
    grid-template-columns: 1fr;
  }

  .cms-theme-default .cms-business-hours__open-now {
    align-items: flex-start;
    flex-direction: column;
  }

  .cms-theme-default .cms-business-hours__day dd {
    text-align: left;
  }

  .cms-theme-default .cms-restaurant-menu__item-row,
  .cms-theme-default .cms-restaurant-menu__card-heading {
    flex-direction: column;
  }

  .cms-theme-default .cms-restaurant-menu__price {
    white-space: normal;
  }

  .cms-theme-default .cms-specials-events__item-row {
    flex-direction: column;
  }

  .cms-theme-default .cms-specials-events__banner {
    grid-template-columns: 1fr;
  }

  .cms-theme-default .cms-content-block {
    grid-template-columns: 1fr;
  }

  .cms-theme-default .cms-content-block--MediaLeft .cms-content-block__media {
    order: 0;
  }

  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) thead {
    display: none;
  }

  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) table,
  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) tbody,
  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) tr,
  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) td {
    display: block;
  }

  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) tr {
    border-bottom: 1px solid var(--ephcms-color-border);
    padding: .75rem 1rem;
  }

  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) td {
    border: 0;
    display: grid;
    grid-template-columns: minmax(7rem, .35fr) 1fr;
    gap: 1rem;
    padding: .35rem 0;
  }

  .cms-theme-default .cms-data-table:not(.cms-data-table--Table) td::before {
    color: var(--ephcms-color-muted);
    content: attr(data-label);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
  }
}
