.login__section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  /* display: grid; */
  /* grid-template-columns: 1fr 3fr; */
  align-items: center;
  justify-content: center;

  gap: 2rem;
  padding: 0.5rem 0rem;
}

.login__form__container {
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  order: 1;

  gap: 1rem;
}

.login__form__container .text__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.login__form__container .text__container h1 {
  color: var(--clr-black);
  font-size: var(--size-3xl);
  font-weight: 500;
}

.login__form__container .text__container p {
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 400;
}

.login__form__container .login__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;

  gap: 1rem;
}

.login__form .input__field__wrapper input {
  width: 100%;
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 400;
  border-radius: 0.4rem;
  border: 1px solid var(--clr-300-black);

  padding: 0.5rem 0.5rem;
}

.login__form .submit__btn__container {
  width: 100%;
}

.login__form .submit__btn__container button {
  width: 100%;
  color: var(--clr-white);
  background-color: var(--clr-main-orange);
  font-size: var(--size-base);
  font-weight: 400;
  border-radius: 0.4rem;

  padding: 0.6rem 0.5rem;

  transition: all 0.2s ease-in-out;
}

.login__form .submit__btn__container button:hover {
  opacity: 0.9;
}

.login__screen__imag__container {
  height: 100%;
  width: 100%;
  background-image: url(../assets/login-page-img.webp);
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .login__section {
    height: 100vh;
    display: flex;
    flex-direction: row;
    /* display: grid; */
    /* grid-template-columns: 1fr 3fr; */
    align-items: center;
    justify-content: center;

    gap: 5rem;
    /* padding: 0.5rem 0rem; */
    padding: 0.75rem 0rem 0.75rem 2.5rem;
  }

  .login__form__container {
    width: 485px;
    order: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

    gap: 1rem;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
@media (min-width: 1536px) {
  .login__screen__imag__container {
    height: 900px;
    width: 100%;
    background-image: url(../assets/login-page-img.webp);
    background-size: cover;
    background-position: center;
    border-radius: 1rem;
  }
}

/* ------------------------------ */
/* MENU PAGE STYLES START */
/* ------------------------------ */

/* ------------------------------ */
/* MENU GRID WRAPPER STYLES START */
/* ------------------------------ */

/* body::-webkit-scrollbar {
    width: 12px; 
    display: block;
}

body::-webkit-scrollbar-track {
    background: #f1f1f1;
}

body::-webkit-scrollbar-thumb {
    background: #a8a8a8;

    transition: all 0.3s ease-in-out;
}

body::-webkit-scrollbar-thumb:hover {
    background: var(--clr-main-orange);
} */

.menu__page {
  /* display: flex; */
  flex-direction: row;
  justify-content: stretch;
}

.menu__grid__wrapper {
  position: relative;
  background-color: #f5f5f5;
  background-color: var(--clr-white);
  width: 100%;
  /* width: calc(100% - 380px); */
  /* height: 100vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* overflow-y: scroll; */
}

.navigation__wrapper {
  /* width: calc(100% - 380px); */
  width: 100%;
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;

  gap: 0rem;
  padding-top: 0.5rem;
}

.navigation__container {
  width: 100%;
  background-color: var(--clr-main-green);
  background-color: var(--clr-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 0px 2px 4px #00000025;

  gap: 1.5rem;
  padding: 0.5rem 0.5rem;
  padding-top: 50px;
}

.navigation__top__container .search__form {
  display: none;
}

.search__form input {
  width: 450px;
  color: var(--clr-white);
  font-size: var(--size-sm);
  font-weight: 400;
  border: none;
  /* box-shadow: 0px 2px 6px #00000025; */
  border-radius: 0.65rem;
  border: 1px solid var(--clr-ccc-black);

  padding: 0.6rem 1rem;
}

.navigation__top__container .cart__icon {
  position: relative;
  width: 40px;
  height: 40px;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  background-color: #e9ecef;
  border-radius: 100%;

  transition: all 0.2s ease-in-out;
}

.navigation__top__container .cart__icon:hover {
  background-color: #dee2e6;
}

.navigation__top__container .cart__icon img {
  width: 20px;
}

.navigation__top__container .cart__icon .cart__icon__quantity__container {
  position: absolute;
  top: -8%;
  right: -15%;

  width: 22px;
  height: 22px;
  border-radius: 100%;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  background-color: var(--clr-black);
}

.navigation__top__container .cart__icon .cart__icon__quantity {
  color: var(--clr-white);
  font-size: var(--size-sm);
}

.navigation__container .my__orders__btn button {
  color: var(--clr-white);
  font-size: var(--size-sm);
  font-weight: 500;
  background-color: var(--clr-main-orange);
  border-radius: 0.65rem;

  padding: 0.6rem 1.1rem;
}

.navigation__container .filter__by__category__bar {
  /* background-color: red; */
  width: 100%;
  /* max-width: 475px; */

  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;

  /* overflow-x: scroll; */

  overflow-x: auto; /* Enables horizontal scroll */
  overflow-y: hidden;

  gap: 0.7rem;
}

.navigation__container .filter__by__category__bar::-webkit-scrollbar {
  display: none;
}

.navigation__container .category__btn {
  color: var(--clr-black);
  background-color: var(--clr-white);
  border: 1px solid var(--clr-main-orange);
  font-size: var(--size-sm);
  white-space: nowrap;
  font-weight: 500;
  border-radius: 0.8rem;

  padding: 0.3rem 1rem;
}

.navigation__top__container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--clr-white);

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  padding: 0.5rem 0rem;
}

.navigation__top__container .top__bar {
  width: 100%;
  max-width: 1190px;
  background-color: var(--clr-white);

  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

  padding: 0rem 0.8rem 0rem 0.5rem;
}

.menu__grid__container {
  width: 100%;
  max-width: 1190px;
  /* background-color: lightcoral; */

  padding-top: 2rem;
}

.menu__items__grid {
  width: 100%;
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */

  gap: 1.8rem 1rem;
  padding: 0.5rem 0.5rem;
}

.menu__items__grid .menu__item {
  background-color: var(--clr-white);
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  align-items: stretch;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0px 2px 4px #00000020;
  box-shadow: none;
  border: 1px solid #e9ecef;

  gap: 1rem;
  padding: 0.5rem 0.5rem;
}

.menu__item .thumbnail {
  width: 150px;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.menu__item .details__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;

  /* gap: 0.25rem; */
  /* padding: 0rem 0.5rem; */
}

.menu__item .text__wrapper .title {
  color: var(--clr-black);
  font-size: var(--size-sm);
  font-weight: 500;
}

.menu__item .text__wrapper .desktop__title {
  display: none;
}

.menu__item .text__wrapper .description {
  color: var(--clr-300-black);
  font-size: var(--size-xs);
  font-weight: 400;
}

.menu__item .text__wrapper .desktop__description {
  display: none;
}

.menu__item .price__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.menu__item .price__container .price {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 400;
}

.menu__item .price__container .set__quantity {
  background-color: #e9e9e9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;

  gap: 0.4rem;
  padding: 0.1rem 0.8rem;
}

.menu__item .set__quantity .increase__btn {
  color: var(--clr-main-green);
  font-size: var(--size-lg);
  font-weight: 600;
}

.menu__item .set__quantity .amount {
  color: var(--clr-black);
  font-size: var(--size-lg);
  font-weight: 500;
}

.menu__item .set__quantity .decrease__btn {
  color: #ff4747;
  font-size: var(--size-lg);
  font-weight: 600;
}

.menu__item .details__container .add__cart__btn {
  background-color: #0ec916;
  background-color: #04e762;
  color: var(--clr-white);
  color: var(--clr-black);
  font-size: var(--size-xs);
  font-weight: 500;
  border-radius: 0.4rem;

  padding: 0.4rem 0.4rem;
  /* padding: 0.4rem 0.6rem; */
  margin-top: 0.5rem;

  transition: all 0.3s ease-in-out;
}

.mini__add__cart__btn {
  display: none;
}

.menu__item .details__container .add__cart__btn .desktop__item__add__text {
  display: none;
}

.menu__item .details__container .add__cart__btn:hover {
  opacity: 0.9;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .navigation__top__container .top__bar {
    width: 100%;
    max-width: 1190px;
    background-color: var(--clr-white);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    /* padding: 0rem 2rem; */
  }

  .navigation__container {
    width: 100%;
    background-color: var(--clr-main-green);
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: 0px 2px 4px #00000025;

    gap: 1.5rem;
    padding: 0.5rem 2rem;
    padding-top: 50px;
  }

  .navigation__top__container .search__form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 0.5rem;
  }

  .navigation__container .filter__by__category__bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    overflow: auto;

    gap: 0.7rem;
  }

  .menu__items__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 1.8rem 1rem;
    padding: 0.5rem 2rem;
  }

  .menu__items__grid .menu__item {
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    border-radius: 1rem;
    border-radius: 0rem;
    overflow: hidden;
    box-shadow: 0px 2px 4px #00000020;
    box-shadow: none;
    border: none;

    gap: 1rem;
    padding: 0rem 0rem;
  }

  .menu__item .thumbnail {
    width: 100%;
    height: 190px;
    object-fit: cover;
  }

  .menu__item .details__container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;

    gap: 0.5rem;
    /* padding: 0rem 0.5rem; */
  }

  .menu__item .text__wrapper .title {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 500;
  }

  .menu__item .text__wrapper .desktop__title {
    display: block;
  }

  .menu__item .text__wrapper .mobile__title {
    display: none;
  }

  .menu__item .text__wrapper .description {
    color: var(--clr-300-black);
    font-size: var(--size-xs);
    font-weight: 400;
  }

  .menu__item .text__wrapper .desktop__description {
    display: block;
  }

  .menu__item .text__wrapper .mobile__description {
    display: none;
  }

  .menu__item .price__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu__item .price__container .price {
    color: var(--clr-black);
    font-size: var(--size-base);
    font-weight: 400;
  }

  .menu__item .price__container .set__quantity {
    background-color: #e9e9e9;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 0.5rem;

    gap: 0.4rem;
    padding: 0.1rem 0.8rem;
  }

  .menu__item .set__quantity .increase__btn {
    color: var(--clr-main-green);
    font-size: var(--size-lg);
    font-weight: 600;
  }

  .menu__item .set__quantity .amount {
    color: var(--clr-black);
    font-size: var(--size-lg);
    font-weight: 500;
  }

  .menu__item .set__quantity .decrease__btn {
    color: #ff4747;
    font-size: var(--size-lg);
    font-weight: 600;
  }

  .menu__item .details__container .add__cart__btn {
    /* background-color: #0ec916; */
    background-color: #e9ecef;
    background-color: #04e762;
    /* background-color: #6aff1f; */
    /* background-color: #29bf12; */
    color: var(--clr-white);
    color: var(--clr-black);
    font-size: var(--size-xs);
    font-weight: 500;
    border-radius: 0.4rem;
    /* border-radius: 100%; */

    padding: 0.3rem 1rem;
    /* margin-bottom: 0.5rem; */

    transition: all 0.3s ease-in-out;
  }

  .menu__item .details__container .add__cart__btn .desktop__item__add__text {
    display: block;
  }

  .menu__item .details__container .add__cart__btn .mobile__item__add__icon {
    display: none;
  }

  .mini__add__cart__btn {
    display: block;
  }

  .large__add__cart__btn {
    display: none;
  }

  .menu__item .details__container .add__cart__btn:hover {
    opacity: 0.9;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* ------------------------------ */
/* MENU GRID WRAPPER END */
/* ------------------------------ */

.cart__container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 475px;
  height: 100vh;
  background-color: var(--clr-white);
  /* border-left: 1px solid var(--clr-ccc-black); */

  /* display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch; */

  display: grid;
  grid-template-rows: 70px 2fr 190px;
  justify-content: space-between;
  justify-content: stretch;
  align-items: stretch;

  gap: 0.5rem;

  transition: all 0.5s ease-in-out;
}

.cart__container-active {
  right: 0%;
}

.cart__container .title__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;
  padding-top: 1rem;
  padding-left: 1rem;
}

.cart__container .cart__window__close__btn {
  font-size: var(--size-2xl);
  cursor: pointer;
}

.cart__container .divider__line {
  border: none;
  border-top: 1px solid var(--clr-ccc-black);
}

.cart__container .title__wrapper .title {
  color: var(--clr-black);
  font-size: var(--size-3xl);
  font-weight: 600;
  text-align: end;
}

.cart__container .cart__quantity {
  color: var(--clr-main-orange);
  font-size: var(--size-xl);
  font-weight: 400;
  text-align: center;
}

.cart__container .cart__items__container {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch;
  overflow-y: scroll;

  gap: 1rem;
  padding: 1rem 0.5rem 1rem 1rem;
}

/* Custom Scrollbar Styles */
.cart__container .cart__items__container::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.cart__container .cart__items__container::-webkit-scrollbar-track {
  background: transparent;
  margin: 3px 0;
}

.cart__container .cart__items__container::-webkit-scrollbar-thumb {
  background: var(--clr-main-orange);
  border-radius: 5px;
}

.cart__container .cart__items__container::-webkit-scrollbar-thumb:hover {
  background: var(--clr-main-orange);
}

.cart__container .cart__items__container .cart__item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  border: 1px solid var(--clr-ccc-black);
  border-radius: 0.5rem;

  gap: 0.6rem;
  padding: 0.8rem 0.8rem;
}

.cart__item .img {
  width: 98px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.25rem;
}

.cart__item .details__container {
  width: 100%;
  display: flex;
  flex-direction: column;

  gap: 0.8rem;
}

.cart__item .details__container .title {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 600;
}

.cart__item .price__container .price {
  color: var(--clr-black);
  font-size: var(--size-sm);
  font-weight: 400;
}

.cart__item .price__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cart__item .price__container .price {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 400;
}

.cart__item .price__container .set__quantity {
  background-color: #e9e9e9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;

  gap: 0.4rem;
  padding: 0.1rem 0.8rem;
}

.cart__item .price__container .increase__btn {
  color: var(--clr-main-green);
  font-size: var(--size-lg);
  font-weight: 600;
}

.cart__item .price__container .amount {
  color: var(--clr-black);
  font-size: var(--size-lg);
  font-weight: 500;
}

.cart__item .price__container .decrease__btn {
  color: #ff4747;
  font-size: var(--size-lg);
  font-weight: 600;
}

.cart__container .bottom__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;

  gap: 1.1rem;
}

.cart__container .bottom__container .amount__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;

  gap: 0.8rem;
}

.cart__container .amount__container {
  width: 100%;
}

.cart__container .amount__container .table {
  display: flex;
  flex-direction: column;

  padding: 0rem 1rem;
}

.cart__container .amount__container .table .table__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.cart__container .amount__container .table .title {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 600;
}

.cart__container .amount__container .table .value {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 500;
}

.cart__container .add__cart__btn__wrapper {
  padding: 0rem 1rem 0.5rem 1rem;
}

.cart__container .add__cart__btn {
  width: 100%;
  background-color: #0ec916;
  background-color: #04e762;
  color: var(--clr-white);
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 500;
  border-radius: 0.6rem;

  padding: 0.6rem 0.6rem;
  /* margin-bottom: 0.5rem; */
  /* margin: 0rem 1rem 0.5rem 1rem; */
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .cart__container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 420px;
    height: 100vh;
    background-color: var(--clr-white);
    /* border-left: 1px solid var(--clr-ccc-black); */

    /* display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch; */

    display: grid;
    grid-template-rows: 70px 2fr 190px;
    justify-content: space-between;
    justify-content: stretch;
    align-items: stretch;

    gap: 0.5rem;

    transition: all 0.5s ease-in-out;
  }

  .cart__container-active {
    right: 0%;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* ------------------------------ */
/* CART CONTAINEER STYLES END */
/* ------------------------------ */

/* ------------------------------ */
/* ITEM SHOW MODAL STYLES START */
/* ------------------------------ */

.menu__page .popup__modal__wrapper {
  position: absolute;
  top: 0;
  left: 0;
}

.menu__page .popup__modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.close__modal__wrapper {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: #00000075;
}

.popup__modal .show__item__modal__container {
  background-color: var(--clr-white);
  width: 60%;
  height: 100vh;
  width: 100%;

  /* height: 90vh;
  width: 90%;
  border-radius: 1.25rem; */
  /* max-width: 815px; */

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* border-radius: 1.25rem; */

  gap: 2rem;
  padding: 1rem 1rem;
}

.show__item__modal__container .img__wrapper {
  position: relative;
}

.show__item__modal__container .show__item__modal__close__btn {
  position: absolute;
  background-color: var(--clr-white);
  width: 30px;
  height: 30px;
  font-size: var(--size-lg);

  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

  border-radius: 100%;

  margin: 0.5rem 0.5rem;
}

.show__item__modal__container .img {
  width: 380px;
  height: 360px;
  object-fit: cover;
  border-radius: 0.6rem;
}

.show__item__modal__container .details__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;

  gap: 1.2rem;
}

.show__item__modal__container .details__wrapper .text__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;

  gap: 0.2rem;
}

.show__item__modal__container .details__wrapper .title {
  color: var(--clr-black);
  font-size: var(--size-2xl);
  font-weight: 600;
  text-align: start;
}

.show__item__modal__container .details__wrapper .description {
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 400;
  text-align: start;
}

.show__item__modal__container .price__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.show__item__modal__container .price__container .price {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 400;
}

.show__item__modal__container .price__container .set__quantity {
  background-color: #e9e9e9;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;

  gap: 0.4rem;
  padding: 0.1rem 0.8rem;
}

.show__item__modal__container .set__quantity .increase__btn {
  color: var(--clr-main-green);
  font-size: var(--size-lg);
  font-weight: 600;
}

.show__item__modal__container .set__quantity .amount {
  color: var(--clr-black);
  font-size: var(--size-lg);
  font-weight: 500;
}

.show__item__modal__container .set__quantity .decrease__btn {
  color: #ff4747;
  font-size: var(--size-lg);
  font-weight: 600;
}

.show__item__modal__container .details__wrapper .add__cart__btn {
  background-color: #0ec916;
  background-color: #04e762;
  color: var(--clr-white);
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 500;
  border-radius: 0.6rem;

  padding: 0.5rem 0.6rem;
  margin-bottom: 0.5rem;

  transition: all 0.3s ease-in-out;
}

.show__item__modal__container .details__wrapper .add__cart__btn:hover {
  opacity: 0.9;
}

/* xxxs */
/* @media (min-width: 320px) {} */

/* xxs */
/* @media (min-width: 380px) {} */

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
/* @media (min-width: 768px) {} */

/* lg */
@media (min-width: 1024px) {
  .popup__modal .show__item__modal__container {
    background-color: var(--clr-white);
    width: 60%;
    max-width: 815px;
    height: auto;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    border-radius: 1.25rem;

    gap: 2rem;
    padding: 1.6rem 1.6rem;
  }

  .show__item__modal__img__wrapper {
    width: 380px;
    height: 360px;
  }

  .show__item__modal__container .img {
    width: 380px;
    height: 360px;
    max-width: 380px;
    border-radius: 0.6rem;
  }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */

/* ------------------------------ */
/* ITEM SHOW MODAL STYLES END */
/* ------------------------------ */

.popup__modal .checkout__form__modal__container {
  background-color: var(--clr-white);
  width: 40%;
  max-width: 700px;

  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;

  border-radius: 1.25rem;

  gap: 1rem;
  padding: 1.6rem 1.6rem;
}

.checkout__form__modal__container .title__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.checkout__form__modal__container .title {
  color: var(--clr-black);
  font-size: var(--size-2xl);
  font-weight: 600;
}

.checkout__form__modal__container .close__icon {
  color: var(--clr-300-black);
  font-size: var(--size-2xl);
  font-weight: 600;
  cursor: pointer;
}

.checkout__form__modal__container .sub__title {
  color: var(--clr-300-black);
  font-size: var(--size-lg);
  font-weight: 500;
}

.checkout__form__modal__container .checkout__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;

  gap: 1rem;
}

.checkout__form .form__field__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: stretch;

  gap: 0.6rem;
}

.checkout__form .form__field__wrapper input {
  width: 100%;
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 400;
  border-radius: 0.4rem;
  border: 1px solid var(--clr-300-black);

  padding: 0.5rem 0.5rem;
}

.checkout__form .form__field__wrapper select {
  width: 100%;
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 400;
  border-radius: 0.4rem;
  border: 1px solid var(--clr-300-black);

  padding: 0.4rem 0.5rem;
}

.checkout__form__modal__container .submit__btn {
  width: 100%;
  color: var(--clr-white);
  background-color: var(--clr-main-orange);
  font-size: var(--size-base);
  font-weight: 400;
  border-radius: 0.4rem;

  padding: 0.6rem 0.5rem;
  margin-top: 0.5rem;

  transition: all 0.2s ease-in-out;
}

.checkout__form__modal__container .submit__btn:hover {
  opacity: 0.9;
}

.popup__modal .empty__cart__alert__container {
  background-color: var(--clr-white);
  width: 40%;
  max-width: 300px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  border-radius: 1.25rem;

  gap: 0.8rem;
  padding: 2rem 1.6rem;
}

.empty__cart__alert__container .title {
  color: var(--clr-black);
  font-size: var(--size-2xl);
  font-weight: 600;
  text-align: center;
}

.empty__cart__alert__container .description {
  color: var(--clr-main-orange);
  color: #f74114;
  font-size: var(--size-base);
  font-weight: 500;
  border-bottom: 1px solid #f74114;
  cursor: pointer;
}

.empty__cart__message__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 1rem;
  padding-top: 1.5rem;
}

.empty__cart__message__container .img {
  width: 66px;
}

.empty__cart__message__container .details__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.empty__cart__message__container .title {
  color: var(--clr-black);
  font-size: var(--size-xl);
  font-weight: 600;
  text-align: center;
}

.empty__cart__message__container .description {
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 400;
}

/* ------------------------------ */
/* MENU PAGE STYLES END */
/* ------------------------------ */

/* ------------------------------ */
/* ORDER DETAILS PAGE STYLES START */
/* ------------------------------ */

/* .order__details__page .navigation__wrapper {
  position: relative;
  z-index: 9999;
} */

.order__details__page .order__successful__alert__wrapper {
  height: 100vh;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;

  margin-top: 2rem;
}

.order__details__page .order__successful__alert__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--clr-white);
  border: 1px solid var(--clr-ccc-black);
  border-radius: 1.25rem;

  gap: 2rem;
  padding: 2rem 2rem 2rem 2rem;
  margin: 3rem 0rem 3rem 0rem;
}

.order__successful__alert__container .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: 0.5rem;
}

.order__successful__alert__container .header .img {
  width: 100px;
}

.order__successful__alert__container .header .title {
  color: var(--clr-black);
  font-size: var(--size-2xl);
  font-weight: 500;
}

.order__successful__alert__container .bottom__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;

  gap: 1.1rem;
}

.order__successful__alert__container .bottom__container .amount__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;

  gap: 0.8rem;
}

.order__successful__alert__container .amount__container {
  width: 100%;
}

.order__successful__alert__container .divider__line {
  border: none;
  border-top: 1px solid var(--clr-ccc-black);
}

.order__successful__alert__container .amount__container .table {
  display: flex;
  flex-direction: column;

  /* padding: 0rem 1rem; */
}

.order__successful__alert__container .amount__container .table .table__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  gap: 5rem;
}

.order__successful__alert__container .amount__container .table .title {
  color: var(--clr-black);
  /* color: #0A0A0A; */
  font-size: var(--size-base);
  font-weight: 500;
}

.order__successful__alert__container .amount__container .table .details__title {
  color: var(--clr-black);
  color: #0a0a0a;
  font-size: var(--size-sm);
  font-weight: 400;
}

.order__successful__alert__container .amount__container .table .items__title {
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 500;
}

.order__successful__alert__container .amount__container .table .value {
  color: var(--clr-black);
  font-size: var(--size-base);
  font-weight: 500;
}

.order__successful__alert__container .amount__container .table .details__value {
  color: var(--clr-black);
  color: #0a0a0a;
  font-size: var(--size-sm);
  font-weight: 400;
}

.order__successful__alert__container .amount__container .table .item__value {
  color: var(--clr-300-black);
  font-size: var(--size-sm);
  font-weight: 500;
}

.order__successful__alert__container .cta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
}

.order__successful__alert__container .redirect__btn {
  width: 100%;
  background-color: var(--clr-white);
  border: 2px solid var(--clr-main-orange);
  color: var(--clr-main-orange);
  font-size: var(--size-base);
  font-weight: 500;
  border-radius: 0.6rem;

  transition: all 0.2s ease-in-out;

  padding: 0.6rem 0.6rem;
  margin-bottom: 0.5rem;
}

.order__successful__alert__container .redirect__btn:hover {
  background-color: #04e762;
  border: 2px solid #04e762;
  color: var(--clr-black);
}

.order__successful__alert__container .whatsapp__btn {
  width: 100%;
  background-color: var(--clr-main-orange);
  border: 2px solid var(--clr-main-orange);
  color: var(--clr-white);
  font-size: var(--size-base);
  font-weight: 500;
  border-radius: 0.6rem;

  transition: all 0.2s ease-in-out;

  padding: 0.6rem 0.6rem;
  margin-bottom: 0.5rem;
}

.order__successful__alert__container .whatsapp__btn:hover {
  background-color: #04e762;
  border: 2px solid #04e762;
  color: var(--clr-black);
}
