:root {
  --font-family: sans-serif;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  --bs-border-width: 1px;
  --bs-border-color: #dee2e6;
  --bs-body-color: #212529;
  --bs-body-bg: #ffffff;
  --primary-color: #cba051;
  --primary-color-rgb: 203 160 81;
  --primary-accessible-color: #cba051;
  --on-primary-color: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--font-family, sans-serif);
  line-height: 1.5;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  padding-top: 72px;
  padding-bottom: 96px;
}

html.blank-home body,
body.blank-home {
  padding: 0;
  background: #ffffff;
}

.blank-home body > *:not(script),
.blank-home header,
.blank-home main,
.blank-home footer,
.blank-home noscript,
.blank-home .skip-link {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-touch-callout: none;
}

button {
  font: inherit;
  color: inherit;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

.d-flex {
  display: flex !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.border-top {
  border-top: var(--bs-border-width) solid var(--bs-border-color) !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) solid var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.h-100 {
  height: 100% !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar > .container,
.navbar > .container-fluid {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
}

.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background-color: #ffffff;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.2;
}

.card-text {
  margin-bottom: 1rem;
}

.card-text:last-child {
  margin-bottom: 0;
}

.btn-close {
  position: relative;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000000;
  background-color: transparent;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
  cursor: pointer;
}

.btn-close::before,
.btn-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1em;
  height: 2px;
  background-color: currentColor;
}

.btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.btn-close:hover {
  opacity: 0.75;
}

.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  background-color: transparent;
}

.modal.show {
  display: block;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
  max-width: 500px;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.25rem 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem 1rem 0.75rem;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  opacity: 0;
  transition: opacity 0.15s linear;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-open {
  overflow: hidden;
}

@media (min-width: 576px) {
  .modal-dialog {
    margin: 1.75rem auto;
  }

  .modal-lg {
    max-width: 800px;
  }
}

.skip-link {
  position: absolute;
  left: 8px;
  top: -80px;
  background: #ffffff;
  border: 2px solid var(--primary-color);
  color: #1f1f1f;
  padding: 8px 12px;
  z-index: 10001;
  text-decoration: none;
}

.skip-link:focus {
  top: 8px;
}

.price {
  color: var(--primary-accessible-color);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.1s linear;
}

.loader img {
  width: 180px;
  height: 120px;
  object-fit: contain;
}

.loader.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.btn-close:focus-visible,
.navbar-brand:focus-visible,
.menu-item-button:focus-visible,
.category-card:focus-visible {
  outline: 2px solid var(--primary-color) !important;
  outline-offset: 2px;
  box-shadow: 0 0 0 0.25rem rgb(var(--primary-color-rgb) / 35%) !important;
}

*:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

.btn-close:active,
.category-card:active {
  transform: scale(0.91) !important;
  box-shadow: none !important;
}

.menu-item-button:active {
  box-shadow: none !important;
  background-color: #f5f5f7 !important;
}

.text-danger {
  color: var(--primary-accessible-color) !important;
}

.menu-item-button {
  background-color: #ffffff;
  text-align: left;
  width: 100%;
  cursor: pointer;
  border: 0 !important;
  border-bottom: 1px solid #e8e8e8 !important;
  transition: background-color 0.08s ease;
}

#menuItems > .menu-item-col:last-child .menu-item-button {
  border-bottom: 0 !important;
}

.menu-item-col {
  content-visibility: auto;
  contain-intrinsic-size: 171px;
}

.menu-item-col.item-enter {
  opacity: 0;
  transform: translateY(8px);
}

.menu-item-col.item-visible {
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 1;
  transform: translateY(0);
}



.category-card {
  width: 100px;
  margin-right: 16px;
  min-height: 50px;
  cursor: pointer;
  letter-spacing: 0.2px;
  border: 1px solid var(--primary-color);
  border-radius: 10px;
  background-color: #ffffff;
  display: flex;
  flex: 0 0 auto;
  font-size: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  transition:
    border-color 0.15s ease,
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-card.is-active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--on-primary-color);
  transform: translateY(0);
}

.category-card.is-active span {
  font-weight: 500;
}

.category-card-label {
  font-size: 16px;
  line-height: 1.1;
  text-align: center;
  color: var(--primary-accessible-color);
}

.category-card.is-active .category-card-label {
  color: #ffffff;
}

#photoModal .modal-dialog {
  position: fixed;
  bottom: -1px;
  left: 0;
  right: 0;
  top: auto;
  margin: 0;
  max-width: 100%;
  max-height: 50vh;
  overflow-y: auto;
  will-change: transform;
  overscroll-behavior: contain;
}

#photoModal .modal-content {
  border-radius: 16px 16px 0 0;
}

#photoModal .modal-body {
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}

#photoModal.fade,
#photoModal.fade .modal-dialog {
  transition: none !important;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: var(--primary-color);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

#categoriesSlider {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: #ffffff;
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}

#categoriesContainer {
  -webkit-overflow-scrolling: touch;
}

.categories-scroll {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.categories-scroll::-webkit-scrollbar {
  display: none;
}

.modal-allergens {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.modal-allergens-label {
  display: block;
  color: var(--primary-color);
  font-weight: 500;
}

.modal-allergens-list {
  display: block;
  margin-top: 0.15rem;
  color: var(--bs-body-color);
}

.modal-allergen-note {
  margin: 0.7rem 0 0;
  font-size: 0.85rem;
  color: #9a9a9a;
}

#menuItems {
  transition: opacity 0.1s ease;
}

#menuItems.items-switching {
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.8rem;
}

.site-footer a {
  color: #9a9a9a;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.service-suspended {
  padding-bottom: 40px;
}

.service-message {
  width: 100%;
  max-width: 520px;
  margin: 16vh auto 0;
  padding: 0 1rem;
  text-align: center;
}

.service-message h2 {
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--primary-accessible-color);
}

.service-message p {
  margin-bottom: 0;
  color: #6f6f6f;
}

@media (prefers-reduced-motion: reduce) {
  .loader {
    transition: none;
  }

  .categories-scroll {
    scroll-behavior: auto !important;
  }

  .menu-item-col.item-visible {
    transition: none;
  }

  .category-card {
    transition: none;
  }

  #menuItems {
    transition: none;
  }
}
