.premicall-brand {
  background: linear-gradient(135deg, #206bc4 0%, #4299e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -0.03em;
}

body {
  background: #f0f4f8;
}

.page-wrapper {
  background: #f0f4f8;
}

.page-body {
  background: #f0f4f8;
}

.card,
.menu-option-inner,
.order-empty-card,
.order-blocked-card {
  border: 1px solid rgba(32, 107, 196, .08);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .04), 0 8px 24px rgba(15, 23, 42, .05);
}

.stat-card {
  transition: transform .15s, box-shadow .15s;
}
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(15, 23, 42, .05), 0 14px 32px rgba(15, 23, 42, .08);
}

.dashboard-summary {
  background: linear-gradient(135deg, #1a365d 0%, #206bc4 55%, #4299e1 100%);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(32, 107, 196, .22);
}
.dashboard-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
@media (min-width: 768px) {
  .dashboard-summary-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.dashboard-summary-item {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: .75rem .85rem;
  min-height: 100%;
}
.dashboard-summary-label {
  display: block;
  font-size: .75rem;
  opacity: .85;
  margin-bottom: .2rem;
}
.dashboard-summary-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.dashboard-summary-hint {
  display: block;
  font-size: .7rem;
  opacity: .72;
  margin-top: .15rem;
}
.dashboard-summary-deadline .dashboard-summary-value {
  font-size: 1.15rem;
}

.order-sticky-save {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(3.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 999;
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(32, 107, 196, .12);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, .1);
}
body.page-order .page-body {
  padding-bottom: 1rem;
}
@media (max-width: 991px) {
  body.page-order .page-body {
    padding-bottom: 6.5rem;
  }
}

.page-wrapper .navbar.sticky-top {
  box-shadow: 0 1px 0 rgba(32, 107, 196, .06), 0 4px 16px rgba(15, 23, 42, .04);
}

.meal-card,
.drink-card {
  cursor: pointer;
  transition: border-color .15s, box-shadow .15s, background .15s;
  border: 2px solid var(--tblr-border-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1rem;
  min-height: 100%;
}
.meal-card:hover,
.drink-card:hover,
.menu-option-card:hover .menu-option-inner {
  box-shadow: 0 4px 14px rgba(32, 107, 196, .08);
}
.meal-card:has(input:checked),
.drink-card:has(input:checked) {
  border-color: var(--tblr-primary) !important;
  background: rgba(32, 107, 196, .06);
}

.menu-option-card {
  display: block;
  cursor: pointer;
  margin: 0;
}
.menu-option-inner {
  height: 100%;
  border: 2px solid var(--tblr-border-color);
  border-radius: 14px;
  padding: 1rem;
  background: #fff;
  transition: border-color .15s, box-shadow .15s, background .15s;
  overflow: hidden;
}
.menu-option-card.is-selected .menu-option-inner {
  border-color: var(--tblr-primary);
  background: rgba(32, 107, 196, .05);
  box-shadow: 0 6px 18px rgba(32, 107, 196, .1);
}
.menu-option-head {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
}
.menu-option-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  border: 2px solid var(--tblr-border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  flex-shrink: 0;
  transition: all .15s;
}
.menu-option-card.is-selected .menu-option-check {
  border-color: var(--tblr-primary);
  background: var(--tblr-primary);
  color: #fff;
}
.menu-option-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-bottom: .75rem;
}
.menu-choice-group {
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--tblr-border-color);
}
.menu-choice-label {
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.menu-choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.menu-choice-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin: 0;
  padding: .35rem .65rem;
  border: 1px solid var(--tblr-border-color);
  border-radius: 999px;
  font-size: .85rem;
  cursor: pointer;
  background: #fff;
  transition: all .15s;
}
.menu-choice-pill:has(input:checked) {
  border-color: var(--tblr-primary);
  background: rgba(32, 107, 196, .08);
  color: var(--tblr-primary);
  font-weight: 600;
}
.menu-choice-pill input {
  display: none;
}

.order-blocked-card {
  border: 1px dashed #8ec5ff;
  background: linear-gradient(180deg, rgba(66, 153, 225, .08), rgba(255, 255, 255, 1));
}
.order-blocked-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 50%;
  background: rgba(66, 153, 225, .15);
  color: #206bc4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.order-submit-btn {
  border-radius: 12px;
  padding-top: .9rem;
  padding-bottom: .9rem;
}
.drinks-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-wrap: wrap;
}

.nav-link.active {
  background: rgba(255,255,255,.08);
  border-radius: 6px;
}

.stat-card .stat-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

.countdown-box {
  background: linear-gradient(135deg, #206bc4, #4299e1);
  color: #fff;
  border-radius: 12px;
  padding: 1.25rem;
}
.countdown-box .countdown-time {
  font-size: 2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--tblr-border-color);
  z-index: 1000;
  padding: .5rem 0;
}
.mobile-bottom-nav a {
  flex: 1;
  text-align: center;
  color: var(--tblr-secondary);
  text-decoration: none;
  font-size: .75rem;
  padding: .25rem;
}
.mobile-bottom-nav a.active { color: var(--tblr-primary); }
.mobile-bottom-nav .nav-icon { font-size: 1.25rem; display: block; }

.calendar-day {
  min-height: 90px;
  border: 1px solid var(--tblr-border-color);
  border-radius: 8px;
  padding: .5rem;
  transition: background .15s;
}
.calendar-day.today { border-color: var(--tblr-primary); background: rgba(32,107,196,.04); }
.calendar-day.has-menu { background: rgba(47,179,68,.04); }
.calendar-day a { text-decoration: none; color: inherit; display: block; height: 100%; }

body.login-hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #1a365d 0%, #206bc4 50%, #4299e1 100%) !important;
  background-attachment: fixed;
  overflow-x: hidden;
}
body.login-hero::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.08) 0%, transparent 40%);
  pointer-events: none;
  animation: loginGlow 8s ease-in-out infinite alternate;
}
@keyframes loginGlow {
  from { opacity: .6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.03); }
}
.login-brand {
  animation: loginFadeUp .7s ease-out both;
}
.login-card {
  animation: loginFadeUp .7s ease-out .15s both;
}
@keyframes loginFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.login-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
  animation: loginLogoFloat 4s ease-in-out infinite;
}
.login-logo {
  width: 4rem;
  height: 4rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
}
@keyframes loginLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
body.login-hero .card {
  border: 0;
  border-radius: 16px;
}

.menu-option-photo {
  margin: -.25rem -.25rem .85rem;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}
.menu-option-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.menu-option-inner:has(.menu-option-photo) {
  padding-top: .25rem;
}

.meal-admin-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--tblr-bg-surface-secondary);
  border: 1px solid var(--tblr-border-color);
}
.meal-admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.meal-admin-thumb-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tblr-secondary);
  font-size: 1.5rem;
}

.settings-logo-preview {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--tblr-border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: .75rem;
}
.settings-logo-preview img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sidebar-brand-logo {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .navbar-vertical { display: none !important; }
  .page-wrapper { margin-left: 0 !important; }
  .mobile-bottom-nav { display: flex; }
  .page-body { padding-bottom: 5rem; }
  .admin-mobile-menu { display: block !important; }
}

.admin-mobile-menu { display: none; }

.sidebar-subnav {
  margin: .15rem 0 .5rem;
  padding-left: .25rem;
}
.sidebar-subnav .nav-link {
  padding: .35rem .75rem .35rem 2.25rem;
  font-size: .875rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, .65);
}
.sidebar-subnav .nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
}
.sidebar-subnav .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  font-weight: 600;
}
.navbar-vertical .nav-link.sidebar-parent.active {
  color: #fff;
}
.dashboard-compact-list .list-group-item {
  border-left: 0;
  border-right: 0;
}

