@media (max-width: 576px) {
  ::-webkit-scrollbar {
    height: 9px;
    background-color: #f5f5f5;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background-color: #f5f5f5;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgb(207, 207, 207);
  }
}
::-moz-selection {
  color: #fff;
  background: #a20808;
}
::selection {
  color: #fff;
  background: #a20808;
}

*:focus {
  outline: 1px #a20808;
}

*:focus-visible {
  outline: 1px #a20808 !important;
}

html {
  font-size: 16px;
  line-height: calc(1em + 0.625rem);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
  color: #131313;
}

img {
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Playfair Display", sans-serif;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 4rem;
}
@media (max-width: 767.98px) {
  h2 {
    font-size: 3rem;
  }
}

strong {
  font-weight: 700;
}

a {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

ul {
  padding: 0;
  list-style-type: none;
}

section,
header {
  position: relative;
  z-index: 0;
}

section {
  padding: 3.75rem 0;
}
@media (min-width: 768px) {
  section {
    padding: 7rem 0;
  }
}

.primary {
  color: #a20808;
}

.secondary {
  color: rgb(212, 212, 212);
}

.btn {
  display: inline-block;
  position: relative;
  padding: 0.8rem 2.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 0.4rem;
}
@media (max-width: 575.98px) {
  .btn {
    padding: 0.7rem 1.4rem;
  }
}
.btn:focus {
  outline: 1px #a20808;
}

.primary-btn, .contact-04 .map a.way-btn {
  background: #a20808;
  color: #ffffff;
  -webkit-box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  text-shadow: 0 0 3px rgba(53, 53, 53, 0.4);
  letter-spacing: 0.1rem;
  -webkit-animation-name: order-btn-move;
          animation-name: order-btn-move;
  -webkit-animation-duration: 6s;
          animation-duration: 6s;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.primary-btn:hover, .contact-04 .map a.way-btn:hover, .primary-btn:focus, .contact-04 .map a.way-btn:focus {
  color: #ffffff;
  background: #7b0606;
}

.secondary-btn {
  color: #000000;
  background: #f1f3f6;
  font-weight: bold;
  font-size: 1.1rem;
}
.secondary-btn:hover, .secondary-btn:focus {
  color: #000000;
}

@supports ((-webkit-backdrop-filter: blur) or (backdrop-filter: blur)) {
  .bg-blur {
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    backdrop-filter: blur(40px) saturate(180%);
  }
}
.header-absolute-content {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 575.98px) {
  .header-absolute-content {
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.online-status {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgb(240, 240, 240);
  -webkit-box-shadow: 0 20px 20px -15px;
          box-shadow: 0 20px 20px -15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 575.98px) {
  .online-status {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.online-status.dark {
  background: #242424;
}
.online-status.transparent {
  background: transparent;
  text-shadow: 0 0px 10px rgb(0, 0, 0);
  padding: 0;
}
.online-status.transparent.open {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.online-status.closed {
  color: #f76666;
}
.online-status.closed .online-status-bullet {
  display: none;
}
.online-status.open {
  color: #1aa415;
}
.online-status.open .online-status-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
}
.online-status.open .online-status-bullet .online-status-bullet-fill {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  background-color: #1aa415;
  -webkit-box-shadow: 0 0 0 4px rgba(16, 128, 65, 0.25);
          box-shadow: 0 0 0 4px rgba(16, 128, 65, 0.25);
  -webkit-animation: flash 2s infinite;
          animation: flash 2s infinite;
}
.online-status .online-status-content {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.online-status .online-status-content i {
  margin-right: 0.5rem;
}

.skeleton-box {
  display: inline-block;
  height: 1em;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  margin: 0;
}
.skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(190, 190, 190, 0)), color-stop(20%, rgba(190, 190, 190, 0.2)), color-stop(60%, rgba(190, 190, 190, 0.5)), to(rgba(190, 190, 190, 0)));
  background-image: linear-gradient(90deg, rgba(190, 190, 190, 0) 0, rgba(190, 190, 190, 0.2) 20%, rgba(190, 190, 190, 0.5) 60%, rgba(190, 190, 190, 0));
  -webkit-animation: shimmer 2s infinite;
          animation: shimmer 2s infinite;
  content: "";
}

.header-btns {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-gap: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .header-btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    margin: 0;
  }
}

@-webkit-keyframes circle-in-center {
  from {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  to {
    -webkit-clip-path: circle(125%);
            clip-path: circle(125%);
  }
}

@keyframes circle-in-center {
  from {
    -webkit-clip-path: circle(0%);
            clip-path: circle(0%);
  }
  to {
    -webkit-clip-path: circle(125%);
            clip-path: circle(125%);
  }
}
[transition-style="in:circle:center"] {
  -webkit-animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
          animation: 2.5s cubic-bezier(0.25, 1, 0.3, 1) circle-in-center both;
}

@-webkit-keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes shimmer {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.05;
  }
  100% {
    opacity: 1;
  }
}
.navbar-01 {
  position: fixed;
  width: 100%;
  padding: 0.5rem 0;
  z-index: 10;
}
@media (min-width: 992px) {
  .navbar-01 {
    height: 80px;
  }
}
.navbar-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #f1f3f6;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (min-width: 992px) {
  .navbar-01::before {
    background: #f1f3f6;
    opacity: 0;
  }
}
.navbar-01 .navbar-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-01 .navbar-nav .nav-link {
  padding: 0;
  margin-bottom: 1.1rem;
  min-width: 50%;
  text-align: center;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link {
    margin: 0 0.2rem;
    min-width: unset;
  }
}
.navbar-01 .navbar-nav .nav-link.order {
  min-width: unset;
}
.navbar-01 .navbar-nav .nav-link a {
  position: relative;
  display: block;
  margin: 0.2rem 1rem;
  color: rgb(31, 31, 31);
  font-size: 1.2rem;
  font-family: "Playfair Display", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06rem;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link a {
    color: #fff;
    font-size: 1.3rem;
  }
  .navbar-01 .navbar-nav .nav-link a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 50%;
    background: #a20808;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .navbar-01 .navbar-nav .nav-link a:hover::after, .navbar-01 .navbar-nav .nav-link a:focus::after {
    width: 105%;
  }
}
.navbar-01 .navbar-nav .nav-link.social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.3rem 0 0.8rem;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link.social {
    margin: 0;
    margin-left: 1rem;
  }
}
.navbar-01 .navbar-nav .nav-link.social a {
  display: inline;
  font-size: 2.1rem;
  font-weight: 400;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (min-width: 992px) {
  .navbar-01 .navbar-nav .nav-link.social a {
    margin: 0;
    font-size: 2rem;
  }
  .navbar-01 .navbar-nav .nav-link.social a:nth-of-type(2) {
    margin-left: 10px;
  }
}
.navbar-01 .navbar-nav .nav-link.social a::after {
  display: none;
}
.navbar-01 .navbar-nav .nav-link.social a:hover, .navbar-01 .navbar-nav .nav-link.social a:focus {
  opacity: 0.8;
}
.navbar-01 .brand-logo {
  position: relative;
  width: 50px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 992px) {
  .navbar-01 .brand-logo {
    top: 12px;
    width: 120px;
    opacity: 1;
    pointer-events: all;
    top: 20px;
    width: 130px;
  }
}
.navbar-01 .brand-logo img {
  width: 100%;
  -webkit-filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
          filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.6));
}
.navbar-01 .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (min-width: 992px) {
  .navbar-01.sticky::before {
    opacity: 1;
  }
}
.navbar-01.sticky .navbar-nav .nav-link a {
  color: rgb(31, 31, 31);
}
.navbar-01.sticky .navbar-nav .nav-link.order a {
  background-color: #a20808;
  margin: 0;
  padding: 0.2rem 1rem;
  color: #fff;
  border-radius: 6px;
}
.navbar-01.sticky .navbar-nav .nav-link.order a::after {
  display: none;
}
.navbar-01.sticky .navbar-nav .nav-link.order a:hover, .navbar-01.sticky .navbar-nav .nav-link.order a:focus {
  background-color: #7b0606;
}
.navbar-01.sticky .navbar-nav .nav-link.social a:hover, .navbar-01.sticky .navbar-nav .nav-link.social a:focus {
  opacity: 0.65;
}
.navbar-01.sticky .brand-logo {
  pointer-events: all;
  opacity: 1;
}
@media (min-width: 992px) {
  .navbar-01.sticky .brand-logo {
    top: 12px;
    width: 120px;
  }
}
.navbar-01 .navbar-toggler {
  border: none;
  padding-right: 1.5rem;
  z-index: 1;
}
.navbar-01 .navbar-toggler:hover, .navbar-01 .navbar-toggler:focus, .navbar-01 .navbar-toggler:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.header-02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 5vh;
  min-height: 96vh;
  background: url("../images/bg11.jpg") center/cover;
  text-align: center;
}
@media (min-width: 768px) {
  .header-02 {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .header-02 {
    padding-top: 0vh;
    min-height: 100vh;
  }
}
.header-02::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
@media (min-width: 768px) {
  .header-02::before {
    background: linear-gradient(130deg, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.header-02 p.heading {
  margin-bottom: 0;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Playfair Display", sans-serif;
  text-transform: uppercase;
  line-height: 1.2;
  text-shadow: 0.05rem 0.05rem 0.5rem rgba(0, 0, 0, 0.8);
}
@media (min-width: 1200px) {
  .header-02 p.heading {
    font-size: 5rem;
  }
}
.header-02 p.town {
  margin-bottom: 3rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Playfair Display", sans-serif;
  letter-spacing: 0.07rem;
  text-shadow: 0.05rem 0.05rem 0.4rem rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  .header-02 p.town {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .header-02 p.town {
    font-size: 3.6rem;
  }
}
.header-02 p.desc {
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .header-02 p.desc {
    max-width: unset;
    margin-bottom: 2.2rem;
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .header-02 p.desc {
    font-size: 1.6rem;
  }
}

.about-01 {
  background: transparent;
  color: #131313;
}
.about-01 h2 {
  font-size: 2.8rem;
  font-weight: 700;
}
@media (min-width: 576px) {
  .about-01 h2 {
    font-size: 3rem;
  }
}
.about-01 p {
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .about-01 p {
    font-size: 1.1rem;
  }
}
.about-01 a {
  color: #131313;
  display: inline-block;
  line-height: 1.1;
  border-bottom: 2px dashed #a20808;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.about-01 a:hover {
  color: #a20808;
}

.foodlist-01 {
  padding: 0;
  background: fixed url("../images/bg02.jpg") 50% 50%;
}
.foodlist-01::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
@media (min-width: 576px) {
  .foodlist-01 {
    padding: 120px 0 100px;
    -webkit-box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.8);
            box-shadow: inset 0 0px 20px rgba(0, 0, 0, 0.8);
  }
}
.foodlist-01 .foodlist__wrapper {
  margin: 0;
  width: 100%;
  background: #fff;
  position: relative;
  -webkit-box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.55);
          box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.55);
}
@media (min-width: 576px) {
  .foodlist-01 .foodlist__wrapper {
    border-radius: 10px;
  }
}
.foodlist-01 #foodlist__heading {
  background: transparent;
  padding: 1.5rem 0;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__heading {
    padding: 2rem 0;
  }
}
.foodlist-01 #foodlist__heading h2 {
  margin: 0;
  color: #131313;
  text-align: center;
  font-size: 4.2rem;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__heading h2 {
    font-size: 5.2rem;
  }
}
.foodlist-01 #foodlist__heading .foodlist__order {
  position: relative;
  padding: 0 0.6rem;
  margin: 0;
  color: #131313;
  font-size: 1.1rem;
  text-align: center;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__heading .foodlist__order {
    font-size: 1.2rem;
  }
}
.foodlist-01 #foodlist__heading .foodlist__order a {
  color: #a20808;
  font-weight: bold;
}
.foodlist-01 #foodlist__heading .foodlist__order a i {
  margin-left: 0.2rem;
  font-size: 1.1rem;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.foodlist-01 #foodlist__heading .foodlist__order a:hover i {
  -webkit-transform: translateX(0.5rem);
          transform: translateX(0.5rem);
}
.foodlist-01 #foodlist__categories {
  position: sticky;
  top: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  overflow-x: scroll;
  padding: 0.6rem 0;
  margin: 0;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2), 0 5px 9px -5px rgba(0, 0, 0, 0.3);
}
.foodlist-01 #foodlist__categories:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.foodlist-01 #foodlist__categories:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__categories {
    position: relative;
    top: unset;
    background: rgba(0, 0, 0, 0.05);
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: unset;
    padding: 1rem 0.5rem;
    -webkit-box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 0;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .foodlist-01 #foodlist__categories:hover {
    cursor: default;
  }
  .foodlist-01 #foodlist__categories:active {
    cursor: default;
  }
}
.foodlist-01 #foodlist__categories .foodlist__categories__item {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0.3rem 1rem;
  margin: 0.45rem;
  border-radius: 6px;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
          box-shadow: 0 3px 10px rgba(66, 0, 0, 0.15);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
  color: #131313;
  font-size: 1.05rem;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__categories .foodlist__categories__item {
    padding: 0.45rem 1.9rem;
  }
}
.foodlist-01 #foodlist__categories .foodlist__categories__item:hover, .foodlist-01 #foodlist__categories .foodlist__categories__item:focus {
  -webkit-box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
          box-shadow: 0 3px 20px rgba(66, 0, 0, 0.25);
}
.foodlist-01 #foodlist__categories .foodlist__categories__item.selected {
  background: #a20808;
  color: #fff;
}
.foodlist-01 #foodlist__content {
  position: relative;
  display: grid;
  grid-gap: 1rem;
  padding: 1.8rem 1.3rem;
  max-width: 1350px;
  margin: 0 auto;
  overflow: hidden;
}
.foodlist-01 #foodlist__content.two-columns {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .foodlist-01 #foodlist__content.two-columns {
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem 3rem;
  }
}
@media (min-width: 1400px) {
  .foodlist-01 #foodlist__content.two-columns {
    grid-gap: 2rem 4rem;
  }
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content {
    padding: 3rem 2rem 3.5rem;
  }
}
@media (min-width: 992px) {
  .foodlist-01 #foodlist__content {
    padding: 3rem 3.5rem 4.5rem;
  }
}
@media (min-width: 1400px) {
  .foodlist-01 #foodlist__content {
    padding: 3rem 4rem 5rem;
  }
}
.foodlist-01 #foodlist__content h3 {
  position: relative;
  grid-column: span 1;
  justify-self: center;
  margin-bottom: 0.7rem;
  color: #131313;
  font-size: 1.9rem;
  font-weight: 500;
  font-family: "Playfair Display", sans-serif;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content h3 {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .foodlist-01 #foodlist__content h3 {
    grid-column: span 2;
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }
}
.foodlist-01 #foodlist__content h3::before, .foodlist-01 #foodlist__content h3::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 2px;
  background: #a20808;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content h3::before, .foodlist-01 #foodlist__content h3::after {
    width: 3.5rem;
  }
}
.foodlist-01 #foodlist__content h3::before {
  left: -3rem;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content h3::before {
    left: -5rem;
  }
}
.foodlist-01 #foodlist__content h3::after {
  right: -3rem;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content h3::after {
    right: -5rem;
  }
}
.foodlist-01 #foodlist__content .item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 100%;
  margin-bottom: 0.3rem;
  -webkit-animation: itemFade 1s forwards;
          animation: itemFade 1s forwards;
  border-bottom: 1.15px solid rgba(0, 0, 0, 0.1);
}
.foodlist-01 #foodlist__content .item-list__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 0.2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 75%;
          flex: 1 0 75%;
  padding-right: 0.5rem;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content .item-list__content {
    padding-right: 1rem;
  }
}
.foodlist-01 #foodlist__content .item-list__content__name {
  margin-bottom: 0.3rem;
  color: #131313;
  font-size: 1.05rem;
  font-weight: 600;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content .item-list__content__name {
    font-size: 1.2rem;
  }
}
.foodlist-01 #foodlist__content .item-list__content__ingredients {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: #808080;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content .item-list__content__ingredients {
    font-size: 1rem;
  }
}
.foodlist-01 #foodlist__content .item-list__content__price {
  margin-top: auto;
  color: #a20808;
  font-size: 1.1rem;
  font-family: "Playfair Display", sans-serif;
}
@media (min-width: 576px) {
  .foodlist-01 #foodlist__content .item-list__content__price {
    font-size: 1.3rem;
  }
}
.foodlist-01 #foodlist__content .item-list__image {
  margin-bottom: 8px;
}
.foodlist-01 #foodlist__content .item-list__image a {
  height: 80px;
  width: 80px;
  display: block;
}
.foodlist-01 #foodlist__content .item-list__image a[href=null] {
  width: 0;
  height: 0;
}
.foodlist-01 #foodlist__content .item-list__image a img {
  max-width: 100%;
  border-radius: 0.3rem;
  -webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.foodlist-01 #loading {
  position: relative;
  text-align: center;
  padding: 40px 0 20px;
  grid-column: span 2;
  color: #131313;
  font-size: 1.1rem;
}
.foodlist-01 #loading:before {
  content: "";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: 10px;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  -webkit-animation: spinner 0.6s linear infinite;
          animation: spinner 0.6s linear infinite;
  font-style: italic;
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes itemFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contact-04 {
  position: relative;
  background-color: #a20808;
  background-image: url("../images/crisscross.png");
  z-index: 0;
  overflow: hidden;
}
.contact-04 .card {
  background: #fff;
  padding: 25px 25px 40px;
  position: relative;
  text-align: left;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .contact-04 .card {
    padding: 25px 35px;
  }
}
.contact-04 .card h2 {
  margin-bottom: 1.5rem;
  font-size: 2.1rem;
  color: #131313;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-04 .card h2 {
    font-size: 2.5rem;
  }
}
.contact-04 .card.info {
  position: relative;
  color: #131313;
}
.contact-04 .card.info p,
.contact-04 .card.info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #131313;
}
@media (min-width: 768px) {
  .contact-04 .card.info p,
.contact-04 .card.info a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.contact-04 .card.info p i,
.contact-04 .card.info a i {
  margin-right: 10px;
}
.contact-04 .card.info p i::before,
.contact-04 .card.info a i::before {
  display: inline-block;
  width: 2rem;
  font-size: 1.4rem;
  color: #a20808;
  text-align: center;
}
@media (min-width: 768px) {
  .contact-04 .card.info p i,
.contact-04 .card.info a i {
    font-size: 1.5rem;
    margin-right: 0.6rem;
  }
}
.contact-04 .card.info a {
  font-weight: 700;
}
.contact-04 .card.info a:hover {
  color: #a20808;
}
.contact-04 .card.info .social {
  position: absolute;
  bottom: 15px;
  right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row, nowrap;
          flex-flow: row, nowrap;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social {
    bottom: 25px;
    right: 25px;
  }
}
.contact-04 .card.info .social a {
  margin-bottom: 0;
  margin-right: 17px;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social a {
    margin-right: 12px;
  }
}
.contact-04 .card.info .social a i {
  margin: 0;
}
.contact-04 .card.info .social a i::before {
  display: inline-block;
  width: 2rem;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #a20808;
  font-size: 2.3rem;
  font-weight: 400;
  text-align: center;
}
@media (min-width: 992px) {
  .contact-04 .card.info .social a i::before {
    font-size: 2.2rem;
  }
}
.contact-04 .card.info .social a i:hover::before {
  color: #7b0606;
}
.contact-04 .card.business-hours li {
  padding: 0 0.3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #131313;
  font-size: 1.1rem;
  line-height: 1.8rem;
}
.contact-04 .card.business-hours li span {
  float: right;
}
.contact-04 .card.business-hours li:last-child {
  border-bottom: none;
}
.contact-04 .card.business-hours li.today {
  font-weight: 700;
  background: rgba(0, 0, 0, 0.1);
}
.contact-04 .card.business-hours p.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0 0.5rem;
  margin: 0;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .contact-04 .card.business-hours p.info {
    font-size: 1rem;
  }
}
.contact-04 .card.business-hours p.info i {
  opacity: 0.8;
  font-size: 1rem;
  margin: 0.1rem 0.5rem 0 0;
}
@media (min-width: 576px) {
  .contact-04 .card.business-hours p.info i {
    margin-top: 0.2rem;
    font-size: 1.1rem;
  }
}
.contact-04 .map {
  position: relative;
  padding: 0;
  min-height: 300px;
  border-radius: 5px;
  overflow: hidden;
}
.contact-04 .map a.way-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.contact-04 .pizza {
  position: absolute;
  bottom: -300px;
  right: -20%;
  max-width: 620px;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.8));
  -webkit-animation-name: pizza-contact-rotate;
          animation-name: pizza-contact-rotate;
  -webkit-animation-duration: 90s;
          animation-duration: 90s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media (min-width: 992px) {
  .contact-04 .pizza {
    right: -180px;
    max-width: 820px;
  }
}

@-webkit-keyframes pizza-contact-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes pizza-contact-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.footer-02 {
  background: #131313;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
.footer-02 .info {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.footer-02 .info p strong {
  font-size: 1.1rem;
}
.footer-02 p {
  margin-bottom: 0;
}
.footer-02 a {
  display: inline-block;
  line-height: 1.1;
  border-bottom: 2px dashed #a20808;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #f1f3f6;
  font-weight: 600;
}
.footer-02 a:hover {
  color: #a20808;
}

.arrow-to-top.arrow-01 {
  cursor: pointer;
  pointer-events: none;
  position: fixed;
  text-align: center;
  z-index: 100;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  right: 40px;
  bottom: 10px;
  opacity: 0;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 {
    right: 0;
  }
}
.arrow-to-top.arrow-01.show {
  opacity: 1;
  pointer-events: all;
  bottom: 40px;
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01.show {
    bottom: 20px;
  }
}
.arrow-to-top.arrow-01 a {
  text-decoration: none;
  padding: 5px 12px;
  color: #ffffff;
  background: #a20808;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 8px;
  font-size: 1.2rem;
  display: inline-block;
}
.arrow-to-top.arrow-01 a i {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.arrow-to-top.arrow-01 a:hover {
  background: #7b0606;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
}
.arrow-to-top.arrow-01 a:hover i {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
@media (max-width: 575.98px) {
  .arrow-to-top.arrow-01 a:hover {
    background: #a20808;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .arrow-to-top.arrow-01 a:hover i {
    -webkit-transform: none;
            transform: none;
  }
}

.mousey {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 30px;
  height: 48px;
  border: 2px solid white;
  border-radius: 20px;
  opacity: 0;
  -webkit-animation: mousey 4s ease 3s infinite;
          animation: mousey 4s ease 3s infinite;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}
@media (min-width: 768px) {
  .mousey {
    display: block;
  }
}
.mousey .scroller {
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background-color: white;
  -webkit-animation: mousey-scroller 4s ease 3s infinite;
          animation: mousey-scroller 4s ease 3s infinite;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

@-webkit-keyframes mousey {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}

@keyframes mousey {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
}
@-webkit-keyframes mousey-scroller {
  0% {
    top: 8px;
  }
  30% {
    top: 8px;
  }
  80% {
    top: 14px;
  }
  90% {
    top: 14px;
  }
}
@keyframes mousey-scroller {
  0% {
    top: 8px;
  }
  30% {
    top: 8px;
  }
  80% {
    top: 14px;
  }
  90% {
    top: 14px;
  }
}
#preloader {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99999;
  overflow: hidden;
  color: #000;
}
#preloader img.logo {
  width: 80%;
  max-width: 110px;
  margin-bottom: 20px;
}
#preloader p {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
#preloader .jumper {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}
#preloader .jumper > div {
  background: #000;
  border-radius: 100%;
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: jumper 3s 0s linear infinite;
          animation: jumper 3s 0s linear infinite;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#preloader .jumper > div:nth-child(2) {
  -webkit-animation-delay: 0.33333s;
          animation-delay: 0.33333s;
}
#preloader .jumper > div:nth-child(3) {
  -webkit-animation-delay: 0.66666s;
          animation-delay: 0.66666s;
}

@-webkit-keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes jumper {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  5% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.popup-overlay {
  height: 100%;
  width: 100%;
  margin: 0;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}

.popup__body {
  height: auto;
  max-height: 80vh;
  width: 100%;
  max-width: 550px;
  margin: 100px auto;
  padding: 45px 10px;
  background: #fff;
  color: #000;
  position: relative;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px #000;
          box-shadow: 0 2px 5px #000;
  z-index: 103;
}
@media (min-width: 768px) {
  .popup__body {
    padding: 35px 35px;
  }
}
.popup__body img {
  display: block;
  max-height: 60vh;
  max-width: 100%;
  margin: auto auto;
  border-radius: 10px;
}
.popup__body p {
  color: #131313;
  font-size: 1.1rem;
  margin: 15px auto 0;
  max-width: 500px;
  font-weight: 600;
  text-align: center;
}
.popup__body a {
  text-decoration: none;
}
.popup__body .close-btn {
  color: #000;
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 30px;
  cursor: pointer;
}

#error-page {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  text-align: center;
  background: url("../images/bg11.jpg") center/cover;
  color: #fff;
}
#error-page::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
#error-page h1 {
  letter-spacing: 0.1rem;
  line-height: 1;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0.05rem 0.05rem 0.5rem rgba(0, 0, 0, 0.8);
}
@media (min-width: 768px) {
  #error-page h1 {
    font-size: 5rem;
  }
}
@media (min-width: 1200px) {
  #error-page h1 {
    font-size: 6rem;
  }
}
#error-page h2 {
  margin-bottom: 2rem;
  color: #fff;
  font-family: "Inter", sans-serif;
}
#error-page p {
  font-size: 2rem;
  font-weight: 700;
}
#error-page .primary-btn i, #error-page .contact-04 .map a.way-btn i, .contact-04 .map #error-page a.way-btn i {
  position: relative;
  left: -5px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
#error-page .primary-btn:hover, #error-page .contact-04 .map a.way-btn:hover, .contact-04 .map #error-page a.way-btn:hover {
  background-color: #7b0606;
}
#error-page .primary-btn:hover i, #error-page .contact-04 .map a.way-btn:hover i, .contact-04 .map #error-page a.way-btn:hover i {
  left: -10px;
}/*# sourceMappingURL=style.css.map */

/* 2026 menu and opening-hours update */
.opening-strip {
  position: absolute;
  right: 5vw;
  bottom: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem;
  color: #fff;
  background: #e30613;
  box-shadow: .55rem 0 0 #a90912;
}
.opening-strip span {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.opening-strip strong { font-size: 1.25rem; }
.foodlist-menu-image { padding: 5rem 0; background: #e7edde; }
.foodlist-menu-image .foodlist__wrapper { max-width: 1100px; margin: 0 auto; }
.foodlist-menu-image #foodlist__heading { margin-bottom: 2rem; }
.menu-image-link {
  display: block;
  background: #fff;
  box-shadow: 0 1.5rem 4rem rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
}
.menu-image-link:hover { transform: translateY(-4px); box-shadow: 0 2rem 4.5rem rgba(0,0,0,.22); }
.menu-image-link img { display: block; width: 100%; height: auto; }
.menu-image-note { margin: 1.25rem 0 0; text-align: center; font-size: .9rem; }
@media (max-width: 767px) {
  .opening-strip { right: 1rem; left: 1rem; }
  .opening-strip strong { font-size: 1rem; }
  .foodlist-menu-image { padding: 3rem 0; }
}

.text-foodlist { margin-top: 6rem; color: #17140f; }
.text-foodlist-heading { max-width: 700px; margin-bottom: 2.5rem; }
.text-foodlist-heading > span { color: #e30613; font-size: .75rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.text-foodlist-heading h3 { margin: .65rem 0 .9rem; color: #e30613; font-family: "Playfair Display", serif; font-size: clamp(2.7rem, 5vw, 4.5rem); }
.text-pizza-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 2px solid #17140f; }
.text-pizza-item { padding: 1.5rem 1.4rem 1.35rem 0; border-bottom: 1px solid rgba(23,20,15,.22); }
.text-pizza-item:nth-child(even) { padding-right: 0; padding-left: 1.4rem; border-left: 1px solid rgba(23,20,15,.22); }
.text-pizza-item-heading { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: .65rem; }
.text-pizza-item-heading > span { color: #e30613; font-size: .8rem; font-weight: 700; }
.text-pizza-item h4 { margin: 0; font-family: "Playfair Display", serif; font-size: 1.35rem; text-transform: uppercase; }
.text-pizza-item-heading strong { white-space: nowrap; }
.text-pizza-item > p { margin: .65rem 0 .45rem 1.7rem; line-height: 1.5; color: #4c463d; }
.text-pizza-item > small { margin-left: 1.7rem; color: #746b5f; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.compact-menu-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 1.5rem; margin-top: 4rem; }
.compact-text-menu { padding: 2rem; background: #fffdf7; border-top: 7px solid #e30613; box-shadow: 0 .65rem 2rem rgba(26,22,14,.08); }
.compact-text-menu h3 { margin: 0; color: #e30613; font-family: "Playfair Display", serif; font-size: 1.8rem; }
.compact-text-menu ul { margin: 1.5rem 0 0; padding: 0; list-style: none; }
.compact-text-menu li { display: flex; justify-content: space-between; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid #ded6c9; line-height: 1.35; }
.compact-text-menu li:last-child { border-bottom: 0; }
.compact-text-menu li > span { display: flex; flex-direction: column; gap: .2rem; }
.compact-text-menu li small { color: #746b5f; }
.compact-text-menu li b { flex: 0 0 auto; white-space: nowrap; }
.allergen-pdf { margin: 2rem 0 0; text-align: center; }
.allergen-pdf a { color: #e30613; font-weight: 700; border-bottom: 1px solid currentColor; }
@media (max-width: 991px) {
  .compact-menu-grid { grid-template-columns: 1fr 1fr; }
  .compact-text-menu:first-child { grid-column: 1 / -1; }
}
@media (max-width: 767px) {
  .text-foodlist { margin-top: 4rem; }
  .text-pizza-grid { grid-template-columns: 1fr; }
  .text-pizza-item, .text-pizza-item:nth-child(even) { padding: 1.35rem 0; border-left: 0; }
  .compact-menu-grid { grid-template-columns: 1fr; gap: 1rem; }
  .compact-text-menu:first-child { grid-column: auto; }
}
