:root {
  --theme-color: #0f9d58;
  --dark-color: #1f2933;
  --light-color: #f5f6fa;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --mobile-header-height: 88px;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--light-color);
  color: var(--dark-color);
  margin: 0;
  min-height: 100vh;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

.dashboard {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
  transition: background 0.3s ease;
}

.dashboard__overlay {
  display: none;
}

.dashboard__sidebar {
  background: #ffffff;
  padding: 32px 24px;
  box-shadow: 12px 0 32px rgba(31, 41, 51, 0.04);
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dashboard__close {
  align-self: flex-end;
  border: none;
  background: rgba(15, 157, 88, 0.12);
  color: var(--theme-color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.dashboard__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard__logo {
  max-width: 160px;
  height: auto;
}

.dashboard__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard__link {
  background: transparent;
  border: none;
  text-align: left;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--dark-color);
  transition: background 0.2s ease, color 0.2s ease;
  display: block;
  text-decoration: none;
}

.dashboard__link.active,
.dashboard__link:hover {
  background: rgba(15, 157, 88, 0.12);
  color: var(--theme-color);
}

.dashboard__user {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(15, 157, 88, 0.08);
  padding: 16px;
  border-radius: var(--radius-md);
}

.dashboard__user-name {
  font-weight: 600;
  display: block;
}

.dashboard__content {
  padding: 32px;
}

.dashboard__mobile-header {
  display: none;
  background: #ffffff;
  margin-bottom: 24px;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.08);
  border: 1px solid rgba(15, 157, 88, 0.08);
}

.dashboard__mobile-header .container-fluid {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard__mobile-header .navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-weight: 600;
  color: var(--dark-color);
}

.dashboard__mobile-logo {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.navbar-brand__title {
  font-size: 17px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard__menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--theme-color);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-weight: 600;
  box-shadow: 0 18px 36px rgba(15, 157, 88, 0.22);
}

.dashboard__menu-toggle:focus {
  box-shadow: 0 0 0 0.25rem rgba(15, 157, 88, 0.25);
}

.dashboard__menu-toggle .navbar-toggler-icon {
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dashboard__toggle-label {
  font-size: 14px;
}

.dashboard__mobile-collapse {
  width: 100%;
}

.dashboard__mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.dashboard__mobile-user {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(15, 157, 88, 0.08);
  padding: 14px 18px;
  border-radius: var(--radius-md);
}

.alert-flash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
  --flash-color: rgba(15, 157, 88, 0.9);
  --flash-color-soft: rgba(15, 157, 88, 0.55);
}

.alert-flash.active {
  opacity: 1;
  pointer-events: auto;
  animation: flashPulse 1.8s ease;
}

.alert-flash__content {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

@keyframes flashPulse {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  22% {
    background: var(--flash-color);
  }
  55% {
    background: var(--flash-color-soft);
  }
  82% {
    background: var(--flash-color);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

.section.d-none {
  display: none !important;
}

.summary-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 140px;
}

.summary-card h3 {
  margin: 0;
  font-size: 16px;
  color: rgba(31, 41, 51, 0.7);
}

.summary-card strong {
  font-size: 30px;
  color: var(--dark-color);
}

.card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.05);
  border: none;
}

.card-header {
  border-bottom: none;
  padding: 20px 24px 0;
  background: transparent;
}

.card-body {
  padding: 24px;
}

.chart-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
}

@media (max-width: 991.98px) {
  .chart-wrapper {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .chart-wrapper {
    height: 240px;
  }
}

.table {
  width: 100%;
}

.table > :not(caption) > * > * {
  padding: 12px 18px;
  vertical-align: middle;
}

.dataTables_wrapper .dataTables_filter input {
  border-radius: 999px;
  padding: 8px 16px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 4px;
}

.dataTables_wrapper .dataTables_length select {
  border-radius: 999px;
  padding: 6px 14px;
  border: 1px solid rgba(15, 157, 88, 0.2);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.08);
  color: var(--dark-color);
}

.dataTables_wrapper .dataTables_filter input {
  border: 1px solid rgba(15, 157, 88, 0.2);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.08);
  color: var(--dark-color);
}

.dataTables_wrapper .dataTables_filter label,
.dataTables_wrapper .dataTables_length label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: rgba(31, 41, 51, 0.75);
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  border: 1px solid rgba(15, 157, 88, 0.2) !important;
  background: #ffffff !important;
  color: var(--dark-color) !important;
  transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.disabled) {
  background: rgba(15, 157, 88, 0.12) !important;
  color: var(--theme-color) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: var(--theme-color) !important;
  color: #ffffff !important;
  border-color: var(--theme-color) !important;
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.25);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5 !important;
  cursor: default !important;
  border-color: rgba(15, 157, 88, 0.12) !important;
}

.dataTables_wrapper .dataTables_paginate .page-item .page-link {
  border-radius: 999px;
  border: 1px solid rgba(15, 157, 88, 0.2);
  color: var(--dark-color);
  transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_paginate .page-item .page-link:hover {
  background: rgba(15, 157, 88, 0.12);
  border-color: rgba(15, 157, 88, 0.3);
  color: var(--theme-color);
}

.dataTables_wrapper .dataTables_paginate .page-item.active .page-link {
  background: var(--theme-color);
  border-color: var(--theme-color);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.25);
}

.data-table-responsive {
  width: 100%;
  overflow-x: auto;
  position: relative;
}

.data-table-responsive .dataTables_wrapper {
  width: 100%;
}

.data-table-responsive .dataTables_scroll {
  width: 100% !important;
}

@media (max-width: 767.98px) {
  .dataTables_wrapper .dataTables_filter,
  .dataTables_wrapper .dataTables_length,
  .dataTables_wrapper .dataTables_info,
  .dataTables_wrapper .dataTables_paginate {
    text-align: left !important;
  }

  .dataTables_wrapper .dataTables_filter label,
  .dataTables_wrapper .dataTables_length label {
    justify-content: flex-start;
  }
}

.data-table-responsive .dataTables_scrollBody {
  width: 100% !important;
  overflow-x: auto !important;
}

.dataTables_wrapper .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.dataTables_wrapper .row > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dataTables_wrapper .dataTables_filter {
  justify-content: flex-end;
}

.dataTables_wrapper .dataTables_filter input {
  width: auto;
}

.dataTables_wrapper .dataTables_paginate {
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .dataTables_wrapper .row {
    flex-direction: column;
    align-items: stretch;
  }

  .dataTables_wrapper .row > div {
    width: 100%;
    justify-content: space-between;
  }

  .dataTables_wrapper .dataTables_filter {
    justify-content: flex-start;
    text-align: left !important;
  }

  .dataTables_wrapper .dataTables_filter input {
    width: 100%;
  }

  .dataTables_wrapper .dataTables_paginate {
    justify-content: center;
  }
}

.dropzone {
  border: 2px dashed rgba(31, 41, 51, 0.25);
  border-radius: var(--radius-md);
  background: rgba(245, 246, 250, 0.65);
  padding: 28px;
  text-align: center;
  color: rgba(31, 41, 51, 0.6);
  transition: border-color 0.2s ease;
}

.dropzone.dz-dashed {
  border-style: dashed;
}

.dropzone.dz-drag-hover {
  border-color: var(--theme-color);
}

.qr-preview {
  width: 160px;
  height: 160px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 41, 51, 0.12);
  object-fit: contain;
  background: #ffffff;
  padding: 8px;
}

.preview-box {
  margin-top: 12px;
  background: rgba(31, 41, 51, 0.04);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-box img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

.currency-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.currency-badges .badge {
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 999px;
}

.card-stack {
  display: grid;
  gap: 16px;
}

.order-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 51, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.05);
}

.order-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-card__head h3 {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
}

.order-card__head p {
  margin: 0;
  color: rgba(31, 41, 51, 0.6);
}

.order-card__time {
  margin: 0;
  font-size: 14px;
  color: rgba(31, 41, 51, 0.5);
}

.order-card__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-card__items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15px;
}

.order-card__items small {
  display: block;
  color: rgba(31, 41, 51, 0.5);
}

.order-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.order-card__footer strong {
  font-size: 18px;
}

.badge.status-beklemede,
.badge.status-waiting {
  background: rgba(250, 173, 20, 0.18);
  color: #b36b00;
}

.badge.status-hazırlanıyor,
.badge.status-hazirlaniyor {
  background: rgba(59, 130, 246, 0.18);
  color: #1d4ed8;
}

.badge.status-hazırlandı,
.badge.status-hazirlandi {
  background: rgba(129, 140, 248, 0.18);
  color: #4338ca;
}

.badge.status-tamamlandı,
.badge.status-tamamlandi,
.badge.status-completed {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.badge.status-odeme-alindi {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.badge.status-iptal {
  background: rgba(248, 113, 113, 0.18);
  color: #b91c1c;
}

.badge.status-on_the_way,
.badge.status-on-the-way,
.badge.status-yolda {
  background: rgba(96, 165, 250, 0.18);
  color: #1d4ed8;
}

.badge.status-available,
.badge.status-bos {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.badge.status-occupied,
.badge.status-dolu {
  background: rgba(248, 181, 91, 0.18);
  color: #b45309;
}

.pagination-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-btn {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 41, 51, 0.08);
  color: var(--dark-color);
  font-weight: 500;
}

.page-btn.active {
  background: var(--theme-color);
  color: #ffffff;
}

.grid-responsive {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 768px) {
  .grid-responsive {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@media (min-width: 1200px) {
  .grid-responsive {
    grid-template-columns: repeat(3, 1fr);
  }
}

.table-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 51, 0.05);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.05);
}

.table-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.table-card__head img {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 41, 51, 0.08);
  padding: 6px;
  object-fit: contain;
  background: #ffffff;
}

.table-card__body .active-orders ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-card__body .active-orders li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(31, 41, 51, 0.7);
}

.table-card__body .session-orders {
  margin-top: 16px;
}

.table-card__body .session-orders ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-card__body .session-orders li {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  font-size: 13px;
  color: rgba(31, 41, 51, 0.6);
}

.session-orders__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.session-orders__meta {
  font-size: 12px;
  color: rgba(31, 41, 51, 0.55);
}

.session-orders__total {
  font-weight: 600;
}

.session-orders__items {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.session-orders__items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(31, 41, 51, 0.55);
}

.session-orders__items small {
  display: block;
  font-size: 11px;
  color: rgba(31, 41, 51, 0.5);
}

.table-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waiter-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waiter-item {
  background: #ffffff;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(31, 41, 51, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.category-list-admin {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
}

.category-admin-card {
  background: rgba(245, 246, 250, 0.7);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.category-admin-card i {
  font-size: 32px;
  color: var(--theme-color);
}

.category-admin-card img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.category-admin-card:hover {
  border-color: var(--theme-color);
  background: rgba(15, 157, 88, 0.08);
}

.daily-menu-admin {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.daily-menu-admin__item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(31, 41, 51, 0.08);
  border-radius: var(--radius-md);
  padding: 16px;
  background: #ffffff;
}

.daily-menu-admin__media img {
  width: 96px;
  height: 96px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.daily-menu-admin__body h3 {
  margin: 0;
  font-size: 18px;
}

.daily-menu-admin__body p {
  margin: 0;
}

.daily-menu-admin__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-list-admin {
  display: grid;
  gap: 16px;
}

.product-admin-card {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 16px;
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(31, 41, 51, 0.06);
  border-radius: var(--radius-md);
  padding: 16px;
}

.product-admin-card img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.product-admin-card__content h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.product-admin-card__content p {
  margin: 0 0 8px;
  color: rgba(31, 41, 51, 0.6);
}

.product-admin-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.variant-mini {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.variant-mini li {
  background: rgba(31, 41, 51, 0.05);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.variant-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.locale-group {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.locale-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.locale-field__label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(31, 41, 51, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.locale-group .form-control {
  font-size: 14px;
}

.locale-group.locale-group--textarea .form-control {
  min-height: 120px;
  resize: vertical;
}

.locale-group.locale-group--inline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

@media (min-width: 768px) {
  .locale-group:not(.locale-group--textarea) {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.variant-row {
  display: grid;
  grid-template-columns: 1fr 140px auto;
  gap: 8px;
}

.variant-row__names {
  display: grid;
  gap: 8px;
}

.variant-row__names .form-control {
  font-size: 0.85rem;
}

.icon-library {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 10px;
}

.icon-library__item {
  border: 1px solid rgba(31, 41, 51, 0.1);
  border-radius: 12px;
  padding: 12px 10px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-size: 22px;
  color: var(--theme-color);
}

.icon-library__item.active,
.icon-library__item:hover {
  border-color: var(--theme-color);
  background: rgba(15, 157, 88, 0.1);
}

.icon-library__item span {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}

.order-modal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-modal h3 {
  margin: 0;
}

.order-modal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.order-modal li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(31, 41, 51, 0.06);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard__sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .dashboard__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .product-admin-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .product-admin-card__actions {
    flex-direction: row;
    justify-content: center;
  }

  .daily-menu-admin__item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .daily-menu-admin__actions {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .dashboard__content {
    padding: 20px;
  }

  .order-card__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-card__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .variant-row {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }

  .variant-row button {
    grid-column: span 2;
  }

  .locale-group {
    grid-template-columns: 1fr;
  }

  .menu-hero .greeting {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .menu-hero .menu-controls {
    width: 100%;
    justify-content: space-between;
  }

  .menu-hero .menu-controls select,
  .menu-controls__waiter {
    flex: 1 1 0;
  }
}

@media (max-width: 576px) {
  .cart-drawer {
    width: 100%;
    padding: 20px;
    left: 0;
    transform: none;
    border-radius: 28px 28px 0 0;
  }

  .menu-hero .menu-controls {
    gap: 8px;
  }

  .menu-hero .menu-controls select,
  .menu-controls__waiter {
    flex: 1 1 0;
    padding: 8px 12px;
    font-size: 13px;
  }

  .cart-drawer__footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .menu-block {
    padding: 20px;
  }

  .menu-block__header h2 {
    font-size: 18px;
  }

  .menu-block__header p {
    font-size: 13px;
  }

  .daily-card__body h3 {
    font-size: 18px;
  }

  .daily-card__body p {
    font-size: 13px;
  }

  .product-card__body h3 {
    font-size: 16px;
  }

  .product-card__body p {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 15px;
  }

}

@media (max-width: 1024px) {
  .contact-content .contact-details,
  .contact-content .contact-form {
    height: auto;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 20px;
  }

  .contact-content .contact-details,
  .contact-content .contact-form {
    height: auto;
  }
}

.login-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px 16px;
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.18), rgba(52, 168, 83, 0.3));
}

.login-card {
  background: #ffffff;
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 28px 60px rgba(31, 41, 51, 0.14);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-card__header {
  text-align: center;
}

.login-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-card__footer {
  text-align: center;
  font-size: 13px;
}

@media (max-width: 576px) {
  .login-card {
    padding: 28px 24px;
  }
}

.modal-content {
  border-radius: var(--radius-md);
}

.modal-header {
  border-bottom: none;
}

.modal-footer {
  border-top: none;
}

.badge-soft-success {
  background: rgba(15, 157, 88, 0.12);
  color: var(--theme-color);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
}

.menu-hero {
  background: linear-gradient(135deg, var(--theme-color), #34a853);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 32px 24px 96px;
  color: #ffffff;
}

.menu-hero .greeting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.greeting__logo {
  max-width: 96px;
  max-height: 96px;
  object-fit: contain;
}

.menu-hero .menu-controls {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
  width: 100%;
}

.menu-hero .menu-controls select {
  border-radius: 999px;
  padding: 10px 18px;
  min-width: 0;
  border: none;
  font-weight: 600;
  color: #1f2933;
  background: #ffffff;
  flex: 0 1 150px;
  text-align: center;
}

.menu-controls__waiter {
  border-radius: 999px;
  padding: 12px 22px;
  border: none;
  background: #fbbc05;
  color: #1f2933;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(251, 188, 5, 0.35);
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex: 0 1 150px;
  min-width: 0;
}

.menu-controls__waiter:hover {
  background: #fcd34d;
}

.menu-block .search {
  margin-top: 0;
  position: relative;
}

.menu-block .search input {
  width: 100%;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.menu-filters {
  margin-top: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.menu-filters__label {
  font-weight: 600;
  color: rgba(15, 23, 42, 0.7);
}

.menu-filters .form-select {
  width: auto;
  min-width: 180px;
  border-radius: 999px;
  padding-inline: 18px;
}

@media (max-width: 768px) {
  .menu-filters {
    align-items: stretch;
	margin-top: 10px;
	gap: 10px;  
  }

  .menu-filters__label {
    width: 100%;
  }

  .menu-filters .form-select {
    width: 100%;
  }
}

.menu-container {
  margin-top: -72px;
  padding: 0 24px 160px;
}

.menu-page {
  display: none;
  flex-direction: column;
  gap: 36px;
}

.menu-page.is-active {
  display: flex;
}

.menu-block {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.menu-block__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.menu-block__header h2 {
  margin: 0;
  font-size: 22px;
}

.menu-block__header p {
  margin: 4px 0 0;
  color: rgba(31, 41, 51, 0.6);
}

.daily-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 280px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.daily-slider::-webkit-scrollbar {
  height: 6px;
}

.daily-slider::-webkit-scrollbar-thumb {
  background: rgba(15, 157, 88, 0.4);
  border-radius: 999px;
}

.daily-card {
  scroll-snap-align: start;
  background: linear-gradient(160deg, rgba(15, 157, 88, 0.18), rgba(15, 157, 88, 0.05));
  border-radius: var(--radius-lg);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.daily-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.daily-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
}

.daily-card__image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
}

.daily-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.daily-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fbbc05;
  color: #1f2937;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.daily-card__price {
  font-size: 20px;
  font-weight: 700;
  color: rgba(31, 41, 55, 0.9);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.daily-card__body h3 {
  margin: 0;
  font-size: 18px;
}

.daily-card__body p {
  margin: 4px 0 12px;
  color: rgba(31, 41, 51, 0.7);
}

.daily-card__action {
  background: var(--theme-color);
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.daily-card__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.25);
}

.category-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin: 0;
}

.category-list--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  overflow: visible;
}

.category-list--grid .category-card {
  width: 100%;
  justify-content: flex-start;
}

.category-card {
  flex: 0 0 auto;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.08);
  cursor: pointer;
}

.category-card img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px;
  border: 2px solid var(--theme-color);
}

.category-card .badge {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(15, 157, 88, 0.16);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.category-card .badge i {
  font-size: 26px;
}

.category-card.active {
  border: 2px solid var(--theme-color);
  box-shadow: 0 16px 36px rgba(15, 157, 88, 0.2);
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.menu-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap; 	
}

.menu-pagination button {
  border: 1px solid rgba(15, 157, 88, 0.2);
  background: #ffffff;
  color: var(--theme-color);
  border-radius: 999px;
  padding: 4px 8px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.menu-pagination button:hover,
.menu-pagination button:focus {
  background: rgba(15, 157, 88, 0.12);
  color: var(--theme-color);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(15, 157, 88, 0.1);
}

.menu-pagination button.active {
  background: var(--theme-color);
  color: #ffffff;
  border-color: var(--theme-color);
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.28);
}

.menu-pagination button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.menu-pagination a {
  border: 1px solid rgba(15, 157, 88, 0.2);
  background: #ffffff;
  color: var(--theme-color);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-decoration: none;	
}

.menu-pagination a:hover,
.menu-pagination a:focus {
  background: rgba(15, 157, 88, 0.12);
  color: var(--theme-color);
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(15, 157, 88, 0.1);
}

.menu-pagination a.active {
  background: var(--theme-color);
  color: #ffffff;
  border-color: var(--theme-color);
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.28);
}

.menu-pagination a:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.product-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 38px rgba(31, 41, 51, 0.08);
  border: 1px solid rgba(15, 157, 88, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(31, 41, 51, 0.12);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card__body h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  word-break: break-word;
}

.product-card__body p {
  margin: 0;
  color: rgba(31, 41, 51, 0.65);
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.product-card__price {
  margin-top: auto;
  font-weight: 700;
  color: var(--theme-color);
  font-size: 17px;
}

.product-card__action {
  background: var(--theme-color);
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 157, 88, 0.25);
}

.product-card__action i {
  font-size: 18px;
}

@media (max-width: 991.98px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard__mobile-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 1100;
    margin: 0 0 12px;
    padding: 16px 20px;
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(31, 41, 51, 0.08);
  }

  .dashboard__menu-toggle {
    display: inline-flex;
  }

  .dashboard__overlay {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 51, 0.45);
    z-index: 1180;
    display: none;
  }

  .dashboard.sidebar-open .dashboard__overlay {
    display: block;
  }

  .dashboard__sidebar {
    display: none !important;
  }

  .dashboard__mobile-collapse {
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    padding: 8px 20px 20px;
    margin: 0 0 24px;
    z-index: 1190;
  }

  .dashboard__mobile-collapse.collapse:not(.show) {
    display: none;
  }

  .dashboard.sidebar-open .dashboard__mobile-collapse {
    position: fixed;
    top: var(--mobile-header-height, 88px);
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    max-height: calc(100vh - var(--mobile-header-height, 88px));
    overflow-y: auto;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    z-index: 1200;
  }

  .dashboard.sidebar-open .dashboard__mobile-collapse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 18px 40px rgba(31, 41, 51, 0.18);
  }

  .dashboard__mobile-collapse .dashboard__link {
    background: transparent;
    border: 1px solid rgba(15, 157, 88, 0.08);
  }

  .dashboard__mobile-collapse .dashboard__link.active,
  .dashboard__mobile-collapse .dashboard__link:hover {
    background: rgba(15, 157, 88, 0.12);
    border-color: rgba(15, 157, 88, 0.35);
  }

  .dashboard__content {
    padding: 24px 20px 32px;
  }
}

@media (max-width: 767.98px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 575.98px) {
  .product-card {
    padding: 16px;
    gap: 14px;
  }

  .product-card__body h3 {
    font-size: 16px;
  }

  .product-card__body p {
    font-size: 13px;
  }

  .product-card__price {
    font-size: 15px;
  }
}
.cart-floating {
  position: fixed;
  bottom: 85px;
  left: auto;
  right: 24px;
  transform: none;
  background: var(--theme-color);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(15, 157, 88, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  z-index: 1030;
}

@media (max-width: 768px) {
  .cart-floating {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 75px;
  }
}

.call-floating {
  left: auto;
  right: 24px;
  bottom: 96px;
  transform: none;
  background: #fbbc05;
  color: #1f2933;
  box-shadow: 0 12px 32px rgba(251, 188, 5, 0.45);
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
  z-index: 1030;
}

.cart-drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100% - 32px));
  background: #ffffff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 64px rgba(15, 23, 42, 0.18);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1031;
  max-height: 80vh;
  overflow-y: auto;
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 12px;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cart-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cart-drawer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.menu-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.12);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 12px 16px;
  z-index: 1020;
}

.menu-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(31, 41, 51, 0.6);
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
}

.menu-bottom-nav__item i {
  font-size: 22px;
}

.menu-bottom-nav__item.active {
  color: var(--theme-color);
}

.menu-bottom-nav__item.active i {
  transform: scale(1.1);
}

.menu-bottom-nav__item.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.quantity-picker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.quantity-picker button {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 18px;
}

.quantity-picker span {
  display: inline-block;
  min-width: 36px;
  text-align: center;
  font-weight: 600;
}

.product-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1032;
}

.product-sheet {
  background: #ffffff;
  width: min(520px, 94%);
  border-radius: 28px 28px 0 0;
  padding: 24px;
  box-shadow: 0 -24px 64px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.overlay-variants {
  display: grid;
  gap: 12px;
}

.overlay-variant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: rgba(249, 250, 251, 0.85);
}

.overlay-variant.active,
.overlay-variant:hover {
  border-color: var(--theme-color);
  background: rgba(15, 157, 88, 0.08);
}

.product-sheet__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-status {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.order-status__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.order-status__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.order-track-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-track-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-track-card__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-track-card__items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-block {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-content {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

.contact-content .contact-details,
.contact-content .contact-form {
  height: 100%;
}

@media (max-width: 767.98px) {
  .contact-content .contact-details {
    order: 1;
    margin-bottom: 20px;
  }

  .contact-content .contact-form {
    order: 2;
    margin-bottom: 0;
  }
}

.contact-details {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.contact-details__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-details__item i {
  font-size: 24px;
  color: var(--theme-color);
  padding-top: 4px;
}

.contact-details__item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-details__item a {
  color: var(--theme-color);
  font-weight: 600;
  text-decoration: none;
}

.contact-form {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-form__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-feedback {
  min-height: 20px;
  font-size: 14px;
}

.order-track-card__footer {
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .dashboard {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 992px) {
  .dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard__sidebar {
    height: auto;
    position: relative;
    flex-direction: column;
    gap: 24px;
  }

  .dashboard__nav {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .dashboard__link {
    flex: 0 0 auto;
  }

  .dashboard__content {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .menu-hero .greeting {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-container {
    padding: 0 16px 140px;
  }

  .cart-floating {
    left: 16px;
    right: 16px;
    width: auto;
    bottom: 85px;
  }

  .menu-bottom-nav {
    padding: 4px 8px;
  }

  .menu-bottom-nav__item {
    font-size: 12px;
  }

  .call-floating {
    right: 16px;
    left: auto;
    bottom: 88px;
  }
}

@media (prefers-color-scheme: dark) {
  body {
    background: #111827;
    color: #f9fafb;
  }

  .dashboard__sidebar,
  .card,
  .summary-card,
  .login-card,
  .category-card,
  .product-card {
    background: #1f2937;
    color: inherit;
    box-shadow: none;
  }

  .dropzone {
    background: rgba(31, 41, 55, 0.6);
  }

  .dashboard__user {
    background: rgba(15, 157, 88, 0.25);
  }
}

/* Menü tasarım seçenekleri */
.template-grid .template-card {
    position: relative;
    display: block;
    border: 1px solid rgba(15, 157, 88, 0.18);
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    cursor: pointer;
    background: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.template-grid .template-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.template-card__swatch,
.template-card__preview {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}

.template-card__swatch span {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.template-card__preview {
    align-items: center;
    padding: 0 6px;
}

.template-card__preview .preview-block {
    display: inline-block;
    flex: 1 1 auto;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
}

.template-card__preview .preview-block--hero {
  flex: 1.4;
  background: rgba(15, 157, 88, 0.4);
}

.template-card__preview .preview-block--content {
  flex: 2;
}

.template-card__preview .preview-block--footer {
    flex: 1;
  height: 8px;
}

.template-card--view .template-card__preview .preview-block--content {
  background: rgba(0, 0, 0, 0.12);
}

.template-card--view .template-card__preview .preview-block--footer {
  background: rgba(0, 0, 0, 0.08);
}

.template-card__body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.template-card__body p {
    font-size: 0.9rem;
    color: #6c757d;
}

.template-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.template-grid .template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 157, 88, 0.12);
    border-color: rgba(15, 157, 88, 0.45);
}

.template-grid .template-card.active {
    border-color: var(--theme-color, #0f9d58);
    box-shadow: 0 18px 45px rgba(15, 157, 88, 0.22);
}

.template-grid .template-card.active .template-card__badge {
    color: var(--theme-color, #0f9d58);
}

section {
	margin-bottom: 25px;
}	

.category-list a {
	text-decoration:none;
}