*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  height: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body > section {
  overflow-x: hidden;
}

body > div {
  overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

body {
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
}

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

a,
li {
  text-decoration: none;
}

p {
  text-align: justify;
}
@media (min-width: 1440px) {
  p {
    font-size: 1.6rem;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-style: italic;
}

a {
  color: rgb(225, 145, 55);
}

.heading-xxl {
  font-size: clamp(6rem, 10vw, 12rem);
}

.heading-lg {
  font-size: clamp(3rem, 6.5vw, 7rem);
}

.heading-md {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.heading-sm {
  font-size: clamp(2rem, 2vw, 2.5rem);
}

.heading-xs {
  font-size: 1.8rem;
}

.light-text {
  color: #fff;
}

.orange-text {
  color: rgb(225, 145, 55);
}

.underline-heading,
.underline-heading-light {
  display: inline-block;
  position: relative;
}

.underline-heading::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20rem;
  background-image: url("../img/home/vintage-underline-2.svg");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -2.5rem;
  left: 0;
}

.underline-heading-light::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 20rem;
  background-image: url("../img/contact/vintage-underline-2-light.svg");
  background-size: contain;
  background-repeat: no-repeat;
  bottom: -2.5rem;
  left: 0;
}

.underline-heading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.disclaimer {
  color: rgb(183, 183, 183);
  font-style: italic;
}
.disclaimer a {
  color: rgb(183, 183, 183);
  text-decoration: underline;
}

.fa-leaf {
  color: #00bf63;
  margin-left: 0.5rem;
}

.veg-icon {
  margin-left: 10px;
  display: inline-block;
  width: 34px;
}

.dark-bg {
  background: #1b1b1b;
}

.wrapper {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5.8vw;
}

.wrapper-no-padding {
  max-width: 1600px;
}
@media (min-width: 1440px) {
  .wrapper-no-padding {
    margin: 0 auto;
  }
}

.hero-sm {
  min-height: 40rem;
}

.padding-v {
  padding-block: min(10vh, 10rem);
}

.padding-b {
  padding-bottom: min(10vh, 10rem);
}

.padding-t {
  padding-top: min(10vh, 10rem);
}

.main-btn {
  display: inline-block;
  background: #212529;
  color: #fff;
  padding: 1rem 2.2rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  transition: background-color 0.4s;
  border: none;
}
.main-btn:hover {
  background-color: #000;
}
.main-btn-light {
  background: #fff;
  color: #212529;
}
.main-btn-light:hover {
  color: #fff;
}
.main-btn-light:hover i {
  color: #fff;
}
.main-btn-light i {
  color: #212529;
}
.main-btn-orange {
  background: #e69223;
  color: #fff;
}
.main-btn-orange:hover {
  color: #fff;
  background-color: #c16b1b;
}
.main-btn-orange:hover i {
  color: #fff;
}
.main-btn-orange i {
  color: #212529;
}
.main-btn-gray {
  background: #eaeaea;
  color: #000;
}
.main-btn-gray:hover {
  color: #000;
  background-color: #c8c8c8;
}
.main-btn-gray i {
  color: #000;
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.form-field label {
  margin-bottom: 0.8rem;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.5rem;
  border: 2px solid #dadada;
  border-radius: 5px;
}
.form-field select {
  background-color: #dadada;
}

@media (min-width: 768px) {
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

.required {
  color: red;
}

[type=checkbox] {
  opacity: 0;
}

[type=checkbox] + label {
  position: relative;
  padding-left: 4rem;
  margin-left: -1.2rem;
  cursor: pointer;
  display: inline-block;
}

[type=checkbox] + label::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  outline: 2px solid #dadada;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

[type=checkbox]:checked + label::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  outline: 2px solid #1b1b1b;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #1b1b1b;
}

[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/icons/check.png");
  background-size: contain;
  z-index: 5;
}

nav {
  background-color: rgb(25, 25, 25);
  border-bottom: 1px solid #515151;
  position: relative;
  z-index: 100;
}

.navmenu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  position: relative;
  padding: 1.2rem 2rem;
}
.navmenu__logo {
  width: 10rem;
}
.navmenu__menu {
  display: flex;
  gap: 3rem;
}
.navmenu__link {
  color: #fff;
  transition: 0.15s ease-in-out;
  position: relative;
}
.navmenu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: 0.15s ease-in-out;
}
.navmenu__link:hover::after {
  width: 100%;
}
.navmenu__open, .navmenu__close {
  position: absolute;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  display: none;
}
.navmenu__open {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.navmenu__close {
  top: 20px;
  right: 50px;
}

#check {
  display: none;
}

@media (max-width: 610px) {
  .navmenu__menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    background-color: rgb(25, 25, 25);
    border-left: 1px solid #515151;
    transition: all 0.2s ease-in-out;
    gap: 4rem;
  }
  .navmenu__link {
    padding: 1rem;
  }
  .navmenu__open,
  .navmenu__close {
    display: block;
  }
  #check:checked ~ .navmenu__menu {
    right: 0;
  }
}
.banner {
  background: url("../img/background/banner-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 30rem;
  color: #fff;
  display: flex;
  align-items: center;
}
.banner__border {
  width: 25rem;
}

.landing {
  background: url("../img/home/landing-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  min-height: 63rem;
  height: calc(100vh - 6.8rem);
  display: flex;
  align-items: center;
}
.landing__layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .landing__layout {
    grid-template-columns: 1fr 1fr;
  }
}
.landing__layout > * {
  flex-basis: 100%;
}
.landing__overlay {
  background: #000;
  height: 100%;
  width: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .landing__overlay {
    opacity: 0.1;
  }
}
.landing .swiper {
  width: 100%;
}
.landing .dish-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.landing .dish-slide-dish {
  margin: 0 auto;
  width: 60%;
}
.landing .dish-slide-dish-1 {
  width: 65%;
}
.landing .dish-slide-dish-2 {
  position: relative;
  z-index: 1;
  width: 80%;
}
.landing .dish-slide-dish-3 {
  width: 70%;
  position: relative;
  z-index: 1;
}
.landing .dish-slide-el {
  position: absolute;
}
.landing .dish-slide-el-1 {
  width: 20%;
  top: 0;
  right: 0;
}
.landing .dish-slide-el-2 {
  width: 20%;
  bottom: 0;
  right: 0;
}
.landing .dish-slide-el-3 {
  width: 62%;
  top: 0;
  left: 20%;
}
.landing .dish-slide-el-4 {
  width: 20%;
  bottom: 0;
  left: 10%;
}
.landing .dish-slide-el-5 {
  width: 20%;
  top: 20%;
  left: 10%;
}
.landing .dish-slide-el-6 {
  width: 70%;
  right: 0;
  top: 0;
}
.landing .dish-slide-el-7 {
  width: 15%;
  right: 20%;
  top: 40%;
}
.landing .dish-slide-el-8 {
  width: 60%;
  bottom: 0;
  left: 10%;
  z-index: 0;
}
.landing .dish-slide-el-9 {
  width: 65%;
  top: 0;
  right: 0;
}
.landing .dish-slide-el-10 {
  width: 20%;
  right: 10%;
  bottom: 5%;
}
.landing .dish-slide-el-11 {
  width: 30%;
  right: 0;
  top: -5%;
}

.auth {
  display: flex;
  flex-direction: column;
  min-height: 60rem;
  height: calc(100vh - 6.8rem);
}
@media (min-width: 768px) {
  .auth {
    flex-direction: row;
  }
}
.auth > * {
  flex: 1;
  height: 100%;
}
.auth__bg {
  position: relative;
}
.auth__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  display: none;
}
@media (min-width: 768px) {
  .auth__bg img {
    display: block;
  }
}
.auth__form {
  padding: 5rem 6.5vw;
  display: flex;
  flex-direction: column;
}
.auth__text {
  position: absolute;
  bottom: 5rem;
  left: 3rem;
  color: #fff;
  display: none;
}
@media (min-width: 768px) {
  .auth__text {
    display: block;
  }
}
.auth button {
  width: 100%;
  justify-content: center;
}

.menu__swiper .swiper-button-prev {
  color: #000;
}
.menu__swiper .swiper-button-prev::after {
  font-size: 2.2rem;
}
.menu__swiper .swiper-button-next {
  color: #000;
}
.menu__swiper .swiper-button-next::after {
  font-size: 2.2rem;
}
.menu__select {
  background: #e5e5e5;
  border: none;
  width: 100%;
  padding: 1.5rem;
}
.menu-order {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 992px) {
  .menu-order {
    grid-template-columns: 1fr 45rem;
  }
}
.menu__items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.menu__item {
  padding: 2rem;
  border: 1px solid #dadada;
  border-radius: 0.8rem;
}
.menu__item-title {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.menu__item-title img {
  width: 3rem;
}
.menu__item-data {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu__receipt-wrapper {
  position: relative;
  border-radius: 0.8rem;
}
@media screen and (max-width: 992px) {
  .menu__receipt-wrapper.mobile {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    height: 100vh;
    z-index: 101;
    width: 100%;
    display: none;
  }
}
.menu__receipt-wrapper-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6c6c6c;
  font-size: 2rem;
  transition: 0.5s ease;
}
.menu__receipt-wrapper-close:hover {
  color: rgb(235, 47, 47);
}
@media (min-width: 992px) {
  .menu__receipt-wrapper-close {
    display: none;
  }
}
.menu__receipt {
  padding: 5rem 3rem;
  background: #fff;
  border: 1px solid #dadada;
  border-radius: 0.8rem;
}
@media (min-width: 992px) {
  .menu__receipt {
    width: 45rem;
  }
}
.menu__receipt-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid #dadada;
  padding: 1rem;
  border-radius: 0.8rem;
}
.menu__receipt-info i {
  font-size: 3rem;
}
.menu__receipt-item {
  position: relative;
  padding: 1.5rem;
  border-bottom: 2px solid #dadada;
}
.menu__receipt-item-title {
  font-weight: 500;
}
.menu__receipt-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #6c6c6c;
}
.menu__receipt-counter {
  display: flex;
  gap: 1rem;
}
.menu__receipt-counter input {
  max-width: 4rem;
  border: 1px solid #dadada;
  padding: 0.5rem;
  border-radius: 0.6rem;
  text-align: center;
}
.menu__receipt-counter button {
  background: #f1f1f1;
  border: none;
  border-radius: 2.6rem;
  color: #505050;
  padding: 0.4rem 1.3rem;
}
.menu__receipt-tips {
  display: flex;
  overflow: hidden;
  border: 2px solid #dadada;
  border-radius: 0.5rem;
}
.menu__receipt-tip {
  padding-block: 0.5rem;
  background: #fff;
}
.menu__receipt-tip label {
  padding-left: 2rem;
  cursor: pointer;
}
.menu__receipt-tip input {
  opacity: 0;
}

.bottom-bar {
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #dadada;
  padding-block: 3rem;
  position: fixed;
  bottom: 0;
}
.bottom-bar button {
  width: 100%;
  justify-content: center;
}
@media (min-width: 992px) {
  .bottom-bar {
    display: none;
  }
}

.add-to-cart-modal {
  max-width: 65rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: none;
  padding: 4rem 3rem;
  border-radius: 1.2rem;
}
.add-to-cart-modal textarea {
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.add-to-cart-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: #6c6c6c;
  font-size: 2rem;
  transition: 0.5s ease;
}
.add-to-cart-modal__close:hover {
  color: rgb(235, 47, 47);
}

.payment-methods {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
@media (min-width: 768px) {
  .payment-methods {
    flex-direction: row;
    align-items: stretch;
  }
}

.payment-method {
  width: 100%;
  max-width: 25rem;
}
.payment-method label {
  position: relative;
  height: 100%;
  background-color: #eaeaea;
  padding: 1.5rem;
  border-radius: 0.5rem;
  max-width: 27.5rem;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.payment-method label img {
  height: 2rem;
}
.payment-method input[type=radio] {
  opacity: 0;
  position: absolute;
}
.payment-method input[type=radio]:checked + label {
  background-color: #000;
  color: #fff;
}
.payment-method input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  background-image: url("../img/icons/check.png");
  background-size: contain;
  width: 2rem;
  height: 2rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.delivery-time {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.delivery-time label {
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}
.delivery-time input[type=radio] {
  opacity: 0;
  position: absolute;
}
.delivery-time input[type=radio]:checked + .custom-radio .custom-radio__inner {
  opacity: 1;
}

.custom-radio {
  width: 2rem;
  height: 2rem;
  border: 2px solid #e69223;
  border-radius: 50%;
  position: relative;
}
.custom-radio__inner {
  opacity: 0;
  position: absolute;
  width: 1rem;
  height: 1rem;
  background-color: #e69223;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}

.delivery-time-notice {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.delivery-time-notice-hours {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1rem;
  border: 1px solid #dadada;
  border-radius: 1rem;
}
@media (min-width: 768px) {
  .delivery-time-notice-hours {
    flex-direction: row;
    align-items: center;
  }
}
.delivery-time-notice-hours span {
  background-color: #f2f2f2;
  border: #a5a5a5 1px solid;
  padding: 0.5rem;
  border-radius: 0.5rem;
}
.delivery-time-notice-hours p {
  margin-bottom: 0;
}
.delivery-time-notice-time {
  display: flex;
  gap: 1.5rem;
  padding: 1rem;
  border: 1px solid #e69223;
  border-radius: 1rem;
  background-color: #ffedd6;
}
.delivery-time-notice-time p {
  margin-bottom: 0;
}
.delivery-time-notice-time i {
  margin-top: 0.7rem;
  color: #e69223;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .profile {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}
.profile-sidebar-wrapper {
  flex: 1 1 30%;
  border: 1px solid #dadada;
  border-radius: 0.8rem;
  overflow: hidden;
}
.profile-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile__sidebar-tab {
  display: flex;
  width: 100%;
  gap: 1.3rem;
  align-items: center;
  background: #fff;
  border: none;
  padding: 1.5rem 2rem;
  color: #000;
}
.profile__sidebar-tab.active {
  background: #000;
  color: #fff;
}
.profile-view-wrapper {
  flex: 1 1 70%;
}

.card-numbers i {
  margin-right: 0.5rem;
  font-size: 0.9rem;
}

.list-items {
  display: flex;
  flex-direction: column;
}

.list-item {
  border: 1px solid #dadada;
  border-radius: 0.8rem;
  padding: 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.list-item__title {
  font-weight: 600;
}
.list-item-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 360px) {
  .list-item-buttons {
    flex-direction: row;
    justify-content: space-between;
  }
}