/* #region reset */
html {
  font-size: 1.5625vw;
}
@media screen and (min-width: 968px) {
  html {
    font-size: 0.521vw;
  }
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  background-color: #0f0f11;
  font-family: "Montserrat";
  color: #fff;
  overflow-x: hidden;
}

/* #endregion */
/* #region header */
header {
  padding: 5rem 5rem;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  transition: all 0.3s ease 0s;
  z-index: 10;
}

.header.scroll {
  background-color: #000000;
  padding: 2rem 5rem;
  transition: all 0.3s ease 0s;
  z-index: 100;
}
.header__cart {
  position: relative;
}
#cart-counter {
  background-color: #fbd13e;
  padding: 0.1rem 0.2rem;
  border-radius: 2px;
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  position: absolute;
  width: 2.1rem;
  height: 1.7rem;
  font-weight: 600;
  left: -1rem;
  top: -1rem;
  display: none;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  width: 17rem;
  height: 3rem;
}
.header__list {
  display: flex;
  gap: 5rem;
  align-items: center;
}
.header__link {
  font-size: 1.8rem;
  transition: all 0.3s ease 0s;
  color: #fff;
  text-transform: uppercase;
}
.header__link:hover {
  color: #fbd13e;
}
.header__link.fire {
  position: relative;
}
.header__link.fire::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 2rem;
  background-image: url("./../img/icons/fire.svg");
  background-size: cover;
}
.header__link-dropdown {
  position: absolute;
  background-color: #000;
  padding: 2rem;
  display: none;
}
.header__link.arrow {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.header__link.arrow::after {
  content: "";
  display: block;
  width: 0.9rem;
  height: 0.5rem;
  background-image: url("./../img/icons/arrow-menu.svg");
  background-size: cover;
  transition: all 0.3s ease 0s;
  transform: translateY(-50%);
}

.header__item:hover .header__link.arrow::after {
  background-image: url("./../img/icons/arrow-menu-hover.svg");
  transform: translateY(-50%) rotate(180deg);
}
.header__item:hover .header__link-dropdown {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 1000;
}
.header__link-dropdown a {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 2rem;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.header__link-dropdown a:hover {
  color: #fbd13e;
}
.header__utils {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.header__utils-link svg {
  width: 2.4rem;
  height: 2.4rem;
}
.header__utils-link:hover svg {
  transition: all 0.3s ease 0s;
  scale: 1.2;
  path {
    fill: #fbd13e;
  }
}
/* #endregion */
/* #region scrollbar */
::-webkit-scrollbar {
  width: 0.5rem;
}

/* Track */
::-webkit-scrollbar-track {
  background: #2d2d2d;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0b0b0b;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
/* #endregion */
/* #region info */
.info {
  margin-top: 13.4rem;
}
.info__content {
  display: flex;
  gap: 6.8rem;
}
.content-text__text {
  margin-top: 5rem;
  max-width: 32.1rem;
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3rem;
}
.info__content-text {
  display: flex;
  flex-direction: column;
  gap: 26.7rem;
  position: relative;
}
.info__content-text img {
  position: absolute;
  top: 18rem;
  right: 16rem;
  width: 18.4rem;
  height: 18.4rem;
}
.content-text__box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.content-text__tel {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3rem;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.content-text__gmail {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.2rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  max-width: 18.6rem;
  transition: all 0.3s ease 0s;
}
.content-text__box a:hover {
  color: #fbd13e;
}
.container-right {
  padding-left: 5rem;
}

.info__content-photo img {
  width: 137rem;
  height: 75rem;
  position: absolute;
  right: 0;
}
.bg {
  position: absolute;
  top: 0;
  z-index: -2;
}
.info__content-order {
  position: absolute;
  background-image: url("./../img/icons/optional-bg.svg");
  padding: 3.6rem 6.8rem;
  background-repeat: no-repeat;
  background-size: cover;
  width: 35.5rem;
  height: 35.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 63rem;
  bottom: -20rem;
}
.order__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order__add {
  background-image: url("./../img/icons/shoping-cart-black.svg");
  background-position: center;
  background-size: 2.5rem;
  background-repeat: no-repeat;
  width: 4.2rem;
  height: 4.2rem;
  background-color: #fbd13e;
  transition: all 0.3s ease 0s;
}
.order__add:hover {
  background-color: #a7881a;
}
.content-order__title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3rem;
}
.weight {
  font-size: 1.3rem;
  line-height: 1.5rem;
  background-color: #ffffff70;
  border-radius: 3px;
  padding: 0.5rem;
  max-width: fit-content;
}
.content-order__descr {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.1rem;
  color: #ffffffde;
}
.order__price {
  font-size: 2.3rem;
  line-height: 2.8rem;
  font-weight: 800;
}

.dots-more__box img {
  position: absolute;
  width: 36.4rem;
  height: 36.4rem;
  right: -5rem;
  bottom: -30rem;
}
.info_tiramisu {
  max-width: fit-content;
}
.info_tiramisu-box {
  margin-top: 35.4rem;
  margin-left: 3rem;
}
.info_tiramisu-box img {
  width: 26.4rem;
  height: 26.4rem;
}
.tiramisu__inner {
  padding: 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info_tiramisu-title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.4rem;
}
/* #endregion */
/* #region popular */
.popular__title {
  font-size: 8rem;
  font-weight: 500;
  line-height: 9rem;
  text-align: left;
  max-width: 43rem;
  display: flex;
  margin: 0 auto;
  margin-bottom: 3.7rem;
}
.container {
  max-width: 150rem;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}
.popular__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.popular__content-dish {
  max-width: 23.3rem;
  min-height: 48.4rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.popular-dish__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-top: 1.6rem;
  margin-bottom: 1rem;
}
.popular__content-descr {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.8rem;
  opacity: 80%;
  margin-top: 0.6rem;
  margin-bottom: 2.5rem;
}
.content-dish_img {
  position: relative;
}
.content-dish_img img {
  width: 23.3rem;
  height: 23.3rem;
}
.content-dish_img:hover span {
  z-index: 2;
  transform: translateY(0);
}
.content-dish_img span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23.3rem;
  height: 23.3rem;
  font-size: 3rem;
  background-color: #55555538;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #fff;
  transform: translateY(-100%);
  transition: all 0.3s ease 0s;
}
.old__price {
  position: absolute;
  margin-bottom: 5rem;
  text-decoration: line-through;
  font-size: 1.8rem;
  color: #ffffffab;
}
/* #endregion */
/* #region menu */
.menu {
  margin-top: 14.5rem;
  margin-bottom: 17rem;
}
.menu__content-box {
  display: flex;
  justify-content: space-between;
  padding-left: 55rem;
  margin-bottom: 6.5rem;
}
.menu__title {
  font-size: 8rem;
  line-height: 9rem;
  font-weight: 500;
}
.menu__btn {
  position: relative;
  display: flex;
  gap: 4rem;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}
.swiper-button-next {
  transform: rotate(180deg);
}
.swiper-button-next,
.swiper-button-prev {
  width: 5.3rem !important;
  height: 5.3rem !important;
}
.swiper-button-next img,
.swiper-button-prev img {
  width: 5.3rem;
  height: 5.3rem;
}
.menu__discount {
  background-color: #b70000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 23.3rem;
  min-height: 31.4rem;
  max-height: 31.4rem;
  gap: 6.5rem;
  padding: 2.3rem 4rem;
  overflow: hidden;
}
.menu__discount:hover .menu__more-info {
  transform: translateY(0);
}
.menu__discount-number {
  color: #000;
  font-size: 7rem;
}
.menu__discount-text {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
}
.menu__discount-text::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url("./../img/icons/fire.svg");
  background-size: cover;
}
.menu__more-info {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 23.3rem;
  min-height: 31.4rem;
  max-height: 31.4rem;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 2rem;
  color: #ffffff;
  font-weight: 600;
  transform: translateY(-100%);
  transition: all 0.3s ease 0s;
}
.menu__text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.4rem;
  text-align: center;
}
.menu__discount.warm {
  background-image: url("./../img/menu1.png");
  background-position: center;
  background-size: cover;
  background-color: #000;
}
.menu__discount.soap {
  background-image: url("./../img/menu2.png");
  background-position: center;
  background-size: cover;
  background-color: #000;
}
.menu__discount.hinc {
  background-image: url("./../img/menu3.png");
  background-position: center;
  background-size: cover;
  background-color: #000;
}
.menu__discount.cold {
  background-image: url("./../img/menu4.png");
  background-position: center;
  background-size: cover;
  background-color: #09234e;
}
.menu__discount.salat {
  background-image: url("./../img/menu5.png");
  background-position: center;
  background-size: cover;
  background-color: #000;
}

.menu__text.cold {
  border-bottom: 1px solid #fff;
}
/* #endregion */
/* #region footer */
.footer {
  background-color: #000;
  padding: 5rem;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  width: 13.5rem;
  height: 2.4rem;
}
.footer__list {
  display: flex;
  gap: 5rem;
  padding-left: 12rem;
}
.footer__link {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease 0s;
}
.footer__link:hover {
  color: #fbd13e;
  border-bottom: 1px solid #fbd13e;
}
.footer__row-box {
  display: flex;
  gap: 3rem;
  align-items: center;
  padding-left: 30.5rem;
}
.footer__row-tel {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease 0s;
}

.footer__row-tel:hover {
  color: #fbd13e;
}
.footer__row-gmail:hover {
  color: #fbd13e;
  border-bottom: 1px solid #fbd13e;
}
.footer__row-gmail {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease 0s;
}
.footer__policy {
  margin-top: 2.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 4rem;
  border-top: 1px solid #ffffff93;
}
.footer__privacy {
  font-size: 1.4rem;
  font-weight: 500;
}
.footer__policy-box {
  display: flex;
  gap: 4.5rem;
}
.footer__policy-box a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease 0s;
  border-bottom: 1px solid #fff;
}
.footer__policy-box a:hover {
  color: #fbd13e;
  border-bottom: 1px solid #fbd13e;
}
/* #endregion */
/* //======================================================================================================================================================== */
/* #region catalog-warm */
.warm-dish {
  margin-top: 13.4rem;
}
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-image: url("./../img/bg-cart.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.main {
  flex: 1;
}
.warm__title {
  font-size: 8rem;
  font-weight: 500;
  line-height: 9rem;
}
.main-page {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6rem;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.breadcrambs {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.current-page {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6rem;
  color: #ffffff87;
  transition: all 0.3s ease 0s;
}
.main-page:hover,
.current-page:hover {
  color: #fbd13e;
}
.warm__select {
  display: flex;
  align-self: flex-end;
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
.warm__inner {
  display: flex;
  flex-direction: column;
}
.sort {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #ffffff70;
}
.dropdown-sort {
  display: flex;
  align-items: center;
}
.dropdown-content {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  top: 3rem;
  z-index: 100;
}
.sort-button {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  position: relative;
  gap: 0.5rem;
  transition: all 0.3s ease 0s;
}
.sort-button::after {
  content: "";
  display: block;
  background-image: url("./../img/icons/arrow-menu.svg");
  background-size: cover;
  width: 0.9rem;
  height: 0.6rem;
  transition: all 0.3s ease 0s;
}
.sort-button:hover {
  color: #fbd13e;
}
.sort-button.active + .dropdown-content {
  display: flex;
}

.sort-button:hover::after {
  background-image: url("./../img/icons/arrow-menu-hover.svg");
  transform: rotate(180deg);
}
.sort-option {
  font-size: 1.6rem;
  padding: 2rem;
  background-color: #000;
  transition: all 0.3s ease 0s;
  text-align: start;
}
.sort-option:hover {
  background-color: #09234e;
  color: #fbd13e;
}
.warm__content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 20rem;
}
.more-types {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 1rem 1.7rem;
  border: 1px solid #fbd13e;
  text-transform: uppercase;
  color: #fbd13e;
  transition: all 0.3s ease 0s;
}
.more-types:hover {
  color: #000;
  background-color: #fbd13e;
}
/* #endregion */
/* //======================================================================================================================================================== */
/* #region dish-cart */
.dish-card {
  margin-top: 13.4rem;
  padding-left: 5rem;
  margin-bottom: 12.3rem;
}
.dish-card__title {
  font-size: 8rem;
  line-height: 9rem;
}
.dish-card__box {
  padding: 0 5rem;
  margin-bottom: 5rem;
}
.dish-card__content {
  display: flex;
  gap: 5rem;
  padding-right: 5rem;
  justify-content: center;
}
.dish-card__content img {
  max-width: 77rem;
}
.card__order-diference {
  color: #9ea2aa;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.dish-card__order {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.card__order-box {
  display: flex;
  align-items: center;
  background-color: #000;
  padding: 2.5rem 2.2rem;
}
.order-box__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order-box__name {
  font-size: 2rem;
  font-weight: 500;
}
.order-box-counter {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  gap: 1.6rem;
  padding-left: 30rem;
}
.order-box__action {
  display: flex;
  gap: 5rem;
  align-items: center;
  padding-left: 8.5rem;
}
.dish-card__price {
  font-size: 2.4rem;
  font-weight: 800;
}
.box__counter-btn {
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease 0s;
  font-size: 3rem;
}
.box__counter-btn:hover {
  color: #fbd13e;
}
.box__counter-btn::after {
  content: "";
  position: absolute;
  top: -0.5rem;
  width: 0.1rem;
  height: 1rem;
  background-color: #9ea2aa;
  left: 0.8rem;
}
.box__counter-btn::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  width: 0.1rem;
  height: 1rem;
  background-color: #9ea2aa;
  left: 0.8rem;
}
.box__counter-number {
  width: 5rem;
  position: relative;
  text-align: center;
}
.box__counter-number::before {
  content: "";
  position: absolute;
  width: 9.3rem;
  height: 0.1rem;
  background-color: #9ea2aa;
  top: -1.3rem;
  left: -1.9rem;
}
.box__counter-number::after {
  content: "";
  position: absolute;
  width: 9.3rem;
  height: 0.1rem;
  background-color: #9ea2aa;
  bottom: -1.3rem;
  left: -1.9rem;
}
.dish-card__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dish-card__descr-box {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dish-card__descr-text {
  font-size: 1.8rem;
  max-width: 60rem;
  font-weight: 600;
  color: #ffffffa9;
}
.dish-card__dots {
  position: absolute;
  top: 28rem;
  left: 0;
}
/* #endregion */
/* #region also */
.also {
  padding-left: 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 16.4rem;
}
.also__title {
  font-size: 5rem;
  font-weight: 500;
  max-width: 53.7rem;
}
.also__content {
  display: flex;
  gap: 2rem;
}
/* #endregion */
/* //======================================================================================================================================================== */
/* #region shopping-cart */
.shopping-cart {
  margin-top: 13.4rem;
}
.shopping-cart__box {
  display: flex;
}
#shopping-cart__amount {
  color: #fbd13e;
  font-size: 5rem;
  line-height: 5rem;
}
.shopping-cart__product {
  padding: 4rem 0rem;
}
.cart__product-box {
  display: grid;
  grid-template-columns: 50rem 25rem 35rem 35rem;
  text-align: start;
  padding-left: 25rem;
}
.cart__product-box p {
  color: #9ea2aa;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 600;
}
.dish-card__product {
  display: flex;
  gap: 7.3rem;
  align-items: center;
  background-color: #000;
}
.dish-card__product-img {
  width: 18rem;
  height: 18rem;
}
.for-pad {
  padding: 0 5rem;
}
.card__product-inner {
  display: grid;
  grid-template-columns: 50rem 25rem 35rem 35rem auto;
  align-items: center;
}
.order-box-counter.cart {
  padding-left: 0;
}
.product-inner__name {
  font-size: 2.5rem;
}
.product-inner__name-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.delete__product {
  padding: 0.7rem;
  border: 1px solid #b70000;
  transition: all 0.3s ease 0s;
}
.delete__product:hover {
  border: 1px solid #fbd13e;
}
.shopping-cart__dish {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4.5rem;
}
.bg-cart {
  position: absolute;
  z-index: -1;
  max-height: 160rem;
}
/* #endregion */
/* #region promo */
.promo {
  padding-left: 130rem;
}
.promo__text {
  font-size: 1.8rem;
  color: #9ea2aa;
}
.promo__input-box {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.promo__input-box input {
  height: 4.2rem;
  background-color: #fff;
  width: 23.4rem;
  color: #000;
  font-size: 1.8rem;
  padding-left: 1rem;
}
.check__promo {
  font-size: 1.8rem;
  padding: 1rem 2rem;
  color: #fbd13e;
  border: 1px solid #fbd13e;
  transition: all 0.3s ease 0s;
}
.check__promo:hover {
  border: 1px solid #b70000;
  color: #fff;
}
.promo__final {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0;
}
.final__sum-text {
  font-size: 1.6rem;
  color: #9ea2aa;
}
.final__sum-number {
  font-size: 2.6rem;
  color: #fff;
}
.palce__order {
  color: #000;
  background-color: #fbd13e;
  padding: 1rem 2.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15rem;
  transition: all 0.3s ease 0s;
}
.palce__order:hover {
  background-color: #a7881a;
}
/* #endregion */
/* #region popup */
.popup {
  position: fixed;
  bottom: -5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  border: 1px solid #09234e;
  background-color: #2d2d2d;
  color: #fff;
  backdrop-filter: blur(4px);
  padding: 1rem;
  border-radius: 5px;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  z-index: 1000;
}

.popup.show {
  bottom: 1rem;
  opacity: 1;
}
.empty {
  font-size: 4rem;
  margin-top: 2rem;
  color: #fbd13e;
}
.cart__empty {
  margin-top: 2rem;
  color: #ffffff;
}
.none {
  display: none;
}
.block {
  display: block;
}
/* #endregion */
/* #region policy & privacy */
.policy-popup {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: -100rem;
  gap: 3rem;
  height: 70rem;
  overflow: scroll;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  background-color: #2d2d2d;
  color: #fff;
  padding: 1rem;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
  z-index: 1000;
  padding: 3rem 2rem;
}
.policy-popup.show {
  opacity: 1;
  top: 10rem;
}
.policy-popup__close-btn {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 5rem;
  color: #fbd13e;
  cursor: pointer;
}
.policy-popup__title {
  text-align: center;
  font-size: 2.4rem;
}
.policy-popup p {
  font-size: 1.8rem;
}
.no-scroll {
  overflow: hidden;
}
/* #endregion */
/* //======================================================================================================================================================== */
/* #region feetback */
.feetback {
  margin-top: 13.4rem;
  margin-bottom: 15rem;
  position: relative;
}
.feetback__form {
  margin-left: 5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 9rem;
}
.textarea__box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 61.5rem;
}
.gmail__box p,
.textarea__box p {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #9ea2aa;
}
.textarea__box textarea {
  background-color: #fff;
  max-width: 62rem;
  min-width: 62rem;
  max-height: 13rem;
  min-height: 13rem;
  color: #000;
  font-size: 1.4rem;
  padding: 2rem;
  outline: none;
}
.gmail__box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gmail__box input {
  width: 36rem;
  height: 4.2rem;
  background-color: #fff;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  color: #000;
}
.feetback__btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.2rem;
  padding: 1rem 2.8rem;
  color: #fbd13e;
  border: 1px solid #fbd13e;
  transition: all 0.3s ease 0s;
  max-width: 20rem;
}
.feetback__btn:hover {
  border: 1px solid #b70000;
}
.feetback__img-right {
  position: absolute;
  right: 0;
  width: 40rem;
  z-index: -1;
}
.feetback__img-bottom {
  position: absolute;
  bottom: 0;
  right: 50rem;
  width: 60rem;
}
/* #endregion */
/* #region order */
.place-order {
  margin-top: 13.4rem;
  margin-bottom: 12.1rem;
}
.place-order__content {
  display: flex;
  gap: 2rem;
  padding: 0rem 5rem;
}
.order__form {
  max-width: 86.7rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.form-punkt {
  font-size: 3.6rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid #3d3d3d;
  margin-bottom: 4rem;
}
.form__data-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.6rem;
  align-self: center;
  margin-bottom: 9rem;
}
.data-box__name {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.data-box__name input {
  background-color: #fff;
  font-size: 1.8rem;
  color: #000;
  padding: 1rem;
  font-weight: 600;
}
.required {
  color: #fbd13e;
}
.delivery-box__inner {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.delivery-box__alley,
.delivery-box__home {
  text-align: start;
  padding: 2.3rem 1.6rem;
  border: 2px dashed #9ea2aa;
  cursor: pointer;
}
.box-home__inner {
  display: flex;
  justify-content: space-between;
  font-size: 2.2rem;
}
.home__inner-price {
  font-size: 2.6rem;
  font-weight: 600;
}
.box__home-text {
  font-size: 1.4rem;
  margin-top: 1rem;
  color: #9ea2aa;
}
.alley {
  color: #fbd13e;
  border-bottom: 1px solid #fbd13e;
}
.delivery-box__alley.active,
.delivery-box__home.active {
  border: 2px dashed #fbd13e;
}

.box__form-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}
.form__inner-alley {
  display: flex;
  align-items: center;
  gap: 3rem;
  font-size: 1.6rem;
}
.form__inner-alley input {
  background-color: #fff;
  font-size: 1.8rem;
  color: #000;
  padding: 1rem;
  width: 33rem;
}
.form__inner-house {
  display: flex;
  justify-content: space-between;
  font-size: 1.6rem;
  gap: 3.6rem;
}
.delivery-box__form {
  max-width: 51rem;
  width: 100%;
  margin: 0 auto;
}
.box__form-alley {
  font-size: 1.6rem;
  padding-left: 15rem;
  margin-bottom: 2rem;
}
.form__inner-house div {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.form__inner-house div input {
  background-color: #fff;
  max-width: 10rem;
  font-size: 1.8rem;
  padding: 1rem;
  color: #000;
}
.form__delivery-box {
  margin-bottom: 6rem;
}
.form__payment-box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.payment-box__kuryer {
  padding: 2.5rem 2rem;
  border: 1px dashed #9ea2aa;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 2.2rem;
  cursor: pointer;
}
.sircle-ratio {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid #9ea2aa;
  flex-shrink: 0;
}
.box__card-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.card-inner__img {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.card-inner__img img {
  height: 2.8rem;
}
.sircle-ratio.active {
  background-color: #fbd13e;
}
.order-item__details {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.order-item__result {
  display: flex;
  gap: 3rem;
}
.order-item__img {
  width: 10rem;
  height: 10rem;
}
.final__order-inner {
  background-color: #000;
  padding: 2rem 5rem 5rem 2rem;
  height: max-content;
  width: 100%;
  font-size: 2rem;
}
.final__order {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.order-item__inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.order-item__total {
  font-size: 2.4rem;
  font-weight: 600;
}
.final__sum {
  margin-top: 2rem;
  text-align: right;
  padding-top: 2rem;
  border-top: 1px solid #9ea2aa;
  width: 100%;
}
.order__final {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #000;
  padding: 1rem 2.4rem;
  max-width: 24rem;
  font-weight: 700;
  background-color: #fbd13e;
  transition: all 0.3s ease 0s;
  margin-top: 5rem;
}
.payment-box__kuryer.active {
  border: 2px dashed #fbd13e;
}
.order__final:hover {
  background-color: #a7881a;
}
/* #endregion */
/* #region mobile-nav-icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 40px;
  --height: 10px;

  --line-height: 2px;
  --spacing: 6px;

  --color: #fff;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
  height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: var(--width);
  height: var(--line-height);

  border-radius: var(--radius);
  background-color: var(--color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
  background-color: #fbd13e;
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
  background-color: #fbd13e;
}
/* #endregion */
/* #region mobile-nav */
.mobile-nav__discount {
  background-color: #b70000;
  padding: 1rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.discount__number {
  color: #000;
  font-size: 8rem;
}

.mobile-nav {
  padding: 4rem 3rem;
  position: absolute;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: #000000cc;
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  margin-top: -1rem;
}
.mobile-nav {
  display: none;
}
/* #endregion */
.final__order.mobile {
  display: none;
}
.footer__menu-mobile {
  display: none;
}
/* #region adaptive tablet 768px */
@media (max-width: 968px) {
  .header {
    padding: 10rem 4rem;
  }
  .footer__menu-mobile {
    display: block;
  }
  .mobile-nav {
    display: block;
    left: -100%;
    transition: all 0.3s ease 0s;
    position: fixed;
  }
  .mobile-nav--open {
    left: 0;
  }
  .mobile-nav-btn {
    display: block;
  }
  .header.scroll {
    background-color: #000000;
    padding: 5rem;
    transition: all 0.3s ease 0s;
    z-index: 100;
  }
  .header__list {
    display: none;
  }
  .info__content {
    flex-direction: column;
    padding-top: 10rem;
  }
  .info__content-photo img {
    width: 100%;
    height: auto;
  }
  .dots-more__box {
    display: none;
  }
  .info__content-text img {
    display: none;
  }
  .container-right {
    padding-left: 2rem;
  }
  .info__content-text {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
  }
  .content-text__text {
    margin-top: 0;
  }
  .info__content-order {
    left: 0;
    bottom: -34rem;
    position: relative;
  }
  .info__content-photo {
    display: flex;
    flex-direction: column;
    gap: 50rem;
  }
  .info_tiramisu-box {
    display: none;
  }
  .popular {
    margin-top: 40rem;
  }
  .menu__content-box {
    padding-left: 2rem;
  }
  .footer__logo {
    flex-shrink: 0;
  }
  .footer {
    padding: 5rem 2rem;
  }
  .footer__list,
  .footer__row-box {
    padding-left: 0;
  }
  .footer__menu {
    display: none;
  }
  .footer__menu-mobile {
    margin-top: 4rem;
  }
  .footer__policy {
    flex-direction: column;
    align-items: start;
    gap: 3rem;
  }
  .menu__content-box {
    justify-content: start;
    gap: 28rem;
  }
  .nav__hot-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 2rem;
  }
  .nav__cold-inner div,
  .nav__hot-box > div {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav__cold-inner div a,
  .nav__hot-box > div a {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
  }
  .nav__hot-box > div img {
    width: 9rem;
    height: 9rem;
  }
  .nav__hot {
    margin-top: 4rem;
    margin-bottom: 2.1rem;
    padding-left: 14rem;
    font-size: 2.3rem;
    color: #9ea2aa;
  }
  .nav__cold-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .nav__cold-inner div img {
    width: 9rem;
    height: 9rem;
  }
  .warm__inner {
    margin-top: 20rem;
    padding: 0 3rem;
  }
  .mobile-nav.baken {
    margin-top: 10rem;
  }
  .policy-popup {
    width: 80%;
  }
  .policy-popup.show {
    top: 20rem;
  }
  .dish-card__content {
    flex-direction: column;
  }
  .order-box-counter {
    padding-left: 5rem;
  }
  .order-box__action {
    padding-left: 8rem;
  }
  .dish-card__dots {
    display: none;
  }
  .dish-card__content,
  .dish-card {
    padding: 0;
  }
  .dish-card__title {
    margin-top: 10rem;
    font-size: 7rem;
  }
  .dish-card__inner {
    padding: 0 3rem;
  }
  .also__content {
    flex-wrap: wrap;
    row-gap: 4rem;
  }
  .cart__product-box,
  .card__product-inner {
    display: flex;
  }
  .promo {
    padding-left: 0;
  }
  .for-pad {
    padding: 0 2rem;
  }
  .dish-card__product-img {
    display: none;
  }
  .card__product-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    position: relative;
    width: 100%;
    padding: 3rem;
  }

  .product-inner__name-box {
    grid-column: 1 / -1;
    order: -1;
  }

  .order__price:first-of-type {
    grid-column: 1 / span 1;
    align-self: center;
  }

  .order-box-counter.cart {
    grid-column: 2 / span 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .order__price:last-of-type {
    grid-column: 3 / span 1;
    align-self: center;
  }

  .delete__product {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 5rem;
    height: 5rem;
  }
  .cart__product-box {
    padding-left: 1rem;
    display: flex;
    justify-content: space-between;
  }
  .promo__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 3rem;
  }
  .final__order-inner {
    position: absolute;
    max-width: 55rem;
    right: -87%;
    transition: all 0.3s ease 0s;
  }
  .place-order {
    overflow-x: hidden;
    position: relative;
  }
  .order-item__name {
    max-width: 15rem;
  }
  .order-item__details {
    justify-content: space-between;
    align-items: center;
  }
  .order-item__inner {
    gap: 1rem;
  }
  .final__order.mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: absolute;
    left: -14rem;
    max-width: 14rem;
    background-color: #000;
    padding: 1rem;
  }
  .final__order.mobile.active .final__order-inner {
    right: 0;
  }
  .final__order-arrow {
    width: 2rem;
    height: 2rem;
    transition: all 0.3s ease 0s;
  }
  .final__order-open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .final__order-open p {
    color: #9ea2aa;
    font-size: 1.6rem;
    text-align: center;
  }
  .final__order-text {
    text-align: center;
  }
  .final__order-descr {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
  }
  .shopping-cart-mobile {
    width: 5rem !important;
    height: 5rem !important;
    padding-top: 2rem;
  }
  .final__order-arrow.active {
    transform: rotate(180deg);
  }
  .final__order-inner.active {
    right: -5rem;
  }
  .final__order.mobile.active {
    left: -12rem;
  }
  .delivery-box__inner {
    flex-direction: column;
  }
  .box__home-text {
    font-size: 2rem;
  }
}

/* #endregion */
