:root {
  --snow-white: #fff;
  --orange: #f5741b;
  --green: #05b577;
  --red: #ef4649;
  --black: #252525;
  --gray: #bbbbbb;
  --light-gray: #f0f0f0;
  --text: #696969;
  --transition: 0.3s ease-in-out;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Alegreya";
  src: url("../fonts/Alegreya-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  background: var(--snow-white);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  aspect-ratio: attr(width) / attr(height);
}

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.icon {
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.primary-btn {
  display: block;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  background: var(--orange);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  width: max-content;
  overflow: hidden;
}

.primary-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--green);
  transition: var(--transition);
  transform: translateY(100%);
}

.primary-btn:hover {
  background: transparent;
  color: var(--snow-white);
}

.primary-btn:hover::before {
  transform: translateY(-1px);
}

button.primary-btn {
  border: 0;
  padding: 15px 30px;
  font-size: 16px;
}

.secondary-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--black);
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  text-align: center;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 0%;
  height: 100%;
  background: var(--black);
  transition: var(--transition);
}

.secondary-btn:hover {
  color: var(--snow-white);
}

.secondary-btn:hover::before {
  width: 100%;
}

.fourth-btn {
  background: var(--green);
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.telegram-btn {
  padding: 15px;
  background: #2aabee;
  border-radius: 10px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  fill: white;
}

.whatsapp-btn {
  padding: 15px;
  background: #25d366;
  border-radius: 10px;
  font-weight: bold;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  fill: white;
}

.hidden {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.page {
  display: flex;
  align-items: flex-start;
}

.page-content {
  flex: 1;
  max-width: 80%;
}

/* animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Header */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.header__logo svg {
  width: 120px;
  height: 40px;
}

.mob__menu-btn {
  display: none;
}
.menu__items {
  display: flex;
}

.menu__item {
  margin: 0 10px;
  position: relative;
}

.menu__item::after {
  content: "";
  background: var(--black);
  height: 1px;
  width: 0%;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: var(--transition);
}

.menu__item:hover::after {
  width: 100%;
}

.header__wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__profile {
  cursor: pointer;
}

.header__profile .icon {
  stroke: var(--black);
}

.header__phone {
  position: relative;
}
.header__phone-wrap {
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 1;
  width: 288px;
  transform: translateX(-50%);
  padding-top: 30px;
  display: none;
}
.header__phone-inner {
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header__phone:hover .header__phone-wrap {
  display: flex;
}

.header__cart .icon,
.header__phone .icon {
  width: 28px;
  height: 28px;
}

.header__cart {
  position: relative;
  cursor: pointer;
}

.header__cart-index {
  width: 12px;
  height: 12px;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
}

.mob__menu {
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: space-around;
  padding: 12px;
  border-radius: 10px 10px 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.mob__menu__item {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  fill: var(--text);
  color: var(--text);
  position: relative;
}
.mob__menu__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mob__menu__item .icon {
  width: 20px;
  height: 20px;
}

.mob__menu__item .header__cart-index {
  width: 10px;
  height: 10px;
  right: 20px;
}

.mob__phone,
.mob__service {
  position: fixed;
  background: #fff;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 3;
  padding: 40px 20px;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.3s ease-in-out;
}

.mob__phone.open,
.mob__service.open {
  bottom: 0;
}

.menu__dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 10px;
  position: relative;
  cursor: pointer;
}

.menu__dropdown .icon {
  width: 16px;
  height: 16px;
}

.dropdown {
  display: none;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 30px;
  z-index: 2;
}

.dropdown__wrapper {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  width: 290px;
}

.menu__dropdown:hover .dropdown {
  display: block;
}

.third-btn {
  background: var(--black);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  text-align: center;
}

.login-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  width: min(372px, 90%);
  border-radius: 20px;
  cursor: pointer;
}
.login-popup__phone,
.login-popup__code {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.login-popup__phone.hidden,
.login-popup__code.hidden {
  display: none;
}
.login-popup__heading {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
}
.login-popup__desc {
  text-align: center;
}
.login-popup__input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--gray);
  font-size: 16px;
  margin-top: 4px;
}
.login-popup .primary-btn {
  width: 100%;
  margin-top: 20px;
}
.login-popup .primary-btn.disabled {
  background: var(--gray);
  pointer-events: none;
}
.login-popup-close .icon {
  display: block;
  fill: var(--text);
  margin-left: auto;
  margin-bottom: 10px;
}
.login-popup__new-code {
  font-size: 14px;
  text-align: center;
  color: var(--text);
}
.login-popup__new-code-btn {
  background: transparent;
  border: none;
  color: var(--green);
  text-decoration: underline;
  cursor: pointer;
}

/* Hero */

.hero__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.hero__text {
  font-family: "Alegreya", serif;
  font-size: 56px;
  line-height: 1.1;
}
.hero__image {
  line-height: 1;
  width: 48%;
  overflow: hidden;
  position: relative;
  height: 532px;
}
.hero__image--left {
  border-radius: 200px 0;
}
.hero__image--right {
  border-radius: 0 200px;
}
.hero__image img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: max-content;
}
.hero__btn {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 40px;
  justify-content: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}
.hero__btn .primary-btn {
  font-size: 18px;
  padding: 15px 30px;
  background: #f5741bc9;
}
.hero__image--left .primary-btn {
  background: #000000bf;
}
.hero__text-desc {
  font-size: 20px;
  margin: 30px 0;
}
.main-page-video {
  position: relative;
  margin: 80px 0;
}
.main-page-video__plat-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  fill: #fff;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.main-page-video__plat-btn .icon {
  width: 60px;
  height: 60px;
}

.about {
  font-family: "Alegreya", serif;
  font-size: 36px;
  text-align: center;
  position: relative;
  margin: 120px 0 80px;
}

.about__blockqoute {
  position: absolute;
  top: -40px;
  left: -50px;
  z-index: -1;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 50%;
  fill: #fff;
}

.about__blockqoute .icon {
  width: 40px;
  height: 40px;
}

/* Article */

.article {
  padding: 20px;
  background: var(--black);
  color: #fff;
  border-radius: 30px;
  margin: 120px 0;
}

.article p {
  margin: 10px 0;
}

.article h1 {
  font-size: 64px;
  font-family: "Alegreya", serif;
  font-weight: 400;
}

/* Reserve */

.reserve {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 180px 0 40px;
}

.reserve__title {
  font-size: 48px;
  font-family: "Alegreya", serif;
}

.reserve__desc {
  margin: 20px 0;
}

.reserve__wrap {
  max-width: 480px;
}

.reserve__from-input {
  padding: 20px;
  width: 100%;
  background: var(--snow-white);
  border: 1px solid var(--black);
  border-radius: 5px;
  margin: 10px 0;
  font-size: 16px;
}

.reserve__from-submit {
  margin-top: 10px;
  padding: 20px;
  width: 100%;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}
.alert-danger {
  color: var(--red);
}

.reserve img {
  max-width: 520px;
}

.tags {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  overflow: scroll;
}

.tags.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--snow-white);
  padding: 8px;
  width: 100%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}

.tags::-webkit-scrollbar {
  display: none;
}

.tags__item {
  flex: 0 0 auto;
}

/* Switches */
.download-menu {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 8px;
  fill: var(--black);
  padding: 4px 12px;
}

.switches {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}

.switches-layout {
  display: flex;
  align-items: center;
  padding: 4px;
  margin-left: auto;
  border-radius: 30px;
  background: #fff;
}

.switches-layout__btn {
  display: flex;
  align-items: center;
  margin: 0 4px 0;
  cursor: pointer;
  fill: var(--gray);
}

.switches-layout__btn.active {
  fill: var(--orange);
}

.show-more {
  cursor: pointer;
  font-style: italic;
  text-decoration: underline;
}

/* Category */
.category-menu {
  width: 232px;
  margin-right: 48px;
  flex: 0 0 auto;
}

.category-menu__close {
  cursor: pointer;
  display: none;
  justify-content: flex-end;
}

.category-menu__close .icon {
  width: 32px;
  height: 32px;
}

.category-menu__item {
  padding: 10px 20px;
  display: block;
  border-radius: 10px;
  transition: var(--transition);
}

.category-menu__item.active {
  background: var(--orange);
  color: #fff;
}

.category-menu__item:hover {
  background: var(--orange);
  color: #fff;
  opacity: 0.5;
}

.category-menu__submenu {
  padding-left: 40px;
  position: relative;
}

.category-menu__submenu::before {
  content: "";
  width: 1px;
  height: calc(100% - 20px);
  background: var(--gray);
  position: absolute;
  left: 30px;
  top: 10px;
}

.category-content-hero {
  height: 360px;
  overflow: hidden;
  position: relative;
  border-radius: 25px;
  line-height: 0;
}

.category-content-hero img {
  transform: translateY(-20%);
}

.category-content-hero__title {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-family: "Alegreya", serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1.1;
  color: #fff;
}

.category-content-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #00000061, transparent);
}

.category-content-article {
  margin: 20px 0 0;
  max-height: 150px;
  overflow: hidden;
  transition: var(--transition);
}

.category-content-article p {
  margin: 10px 0;
}

/* Menu list */

.product-item-list {
  display: flex;
  align-items: stretch;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 25px;
  border: 1px solid var(--gray);
}

.product-item-list-drinks {
  align-items: center;
  justify-content: space-between;
}

.product-item-list__media {
  display: flex;
  align-items: stretch;
}

.product-item-list__gallery-wrap {
  position: relative;
  max-width: 380px;
  overflow: hidden;
}

.product-item-list__gallery {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  transition: var(--transition);
}

.product-item-list__img {
  flex: 0 0 auto;
  border-radius: 15px;
}

.lightbox-image {
  cursor: zoom-in;
}

.product-item-list__prev,
.product-item-list__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  fill: #fff;
}

.product-item-list__prev {
  left: 15px;
  justify-content: flex-start;
}

.product-item-list__next {
  right: 15px;
  justify-content: flex-end;
}

.product-item-list__prev .icon,
.product-item-list__next .icon {
  width: 32px;
  height: 32px;
}

.product-item-list-video {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
  margin-right: 30px;
}

.product-item-list-video__thumb {
  max-width: 180px;
  max-height: 180px;
  position: relative;
}

.product-item-list-video__thumb img {
  border-radius: 15px;
}

.product-item-list-video__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.product-item-list-video__play-btn {
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  fill: #fff;
  width: 36px;
  height: 36px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.product-item-list__info {
  flex: 1;
  position: relative;
}

.product-item-list__title {
  font-family: "Alegreya", serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  display: block;
  line-height: 1.1;
}

.product-item-list-drinks .product-item-list__title {
  margin-bottom: 0;
}

.product-item-list__title span {
  font-size: 20px;
}

.product-item-list__ingridients {
  margin-bottom: 20px;
  color: var(--text);
}
.product__video-wrap {
  border-radius: 20px;
  height: 140px;
  overflow: hidden;
  width: 280px;
  margin-bottom: 20px;
  position: relative;
}
.product__video-peview {
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.product__video-zoom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  fill: white;
}
.product__video-modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.product__video-modal.active {
  display: flex;
}
.product__video-modal-item {
  max-height: 90%;
  max-width: 80%;
}
.product-item-list__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 300px;
}

.product-item-list__desc {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
}

.product-item-list__price {
  font-family: "Alegreya", serif;
  font-size: 24px;
  padding: 6px 20px;
  background: var(--light-gray);
  border-radius: 5px;
  position: relative;
}

.product-item-list__price:before,
.product-item-list__price:after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  background: #fff;
}

.product-item-list__price:before {
  left: -10px;
}

.product-item-list__price:after {
  right: -10px;
}

.product-item-list-nutritional {
  position: absolute;
  bottom: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray);
}
.product-item-list-nutritional span {
  display: block;
  font-weight: 400;
}

.product-item-list-shot {
  margin-top: 10px;
  font-size: 14px;
  color: var(--gray);
}

.product-item-quantity {
  position: relative;
  margin-top: 20px;
}
.product-item-quantity__input {
  font-size: 16px;
  padding: 10px 20px;
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  text-align: center;
  width: 100%;
  outline: none;
}
.product-item-quantity__btn {
  position: absolute;
  top: 0px;
  z-index: 1;
  border: none;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 41px;
  cursor: pointer;
}
.product-item-quantity__minus {
  border-radius: 10px 0 0 10px;
  left: 0;
}
.product-item-quantity__plus {
  border-radius: 0px 10px 10px 0px;
  right: 0;
}
/* Menu grid */
.product-block {
  margin-bottom: 40px;
}
.product-block__title {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}
.product-block__subtitle {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}
.product-title {
  font-family: "Alegreya", serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}

.product-block__wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.product-item-grid {
  width: 25%;
  padding: 10px;
  position: relative;
}

.product-item-grid__inner {
  padding: 15px;
  background: #fff;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--gray)
}

.product-item-grid__title {
  font-family: "Alegreya", serif;
  font-size: 20px;
  line-height: 1.2;
  margin: 10px 0;
  display: block;
}

.product-item-grid__img {
  border-radius: 20px;
}

.product-item-grid__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.product-item-grid__weight {
  font-size: 14px;
  font-family: "Alegreya", serif;
}

.product-item-grid__price {
  font-family: "Alegreya", serif;
  font-size: 20px;
  padding: 4px 16px;
  background: var(--light-gray);
  border-radius: 5px;
  position: relative;
  width: fit-content;
}

.product-item-grid__price:before,
.product-item-grid__price:after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  background: #fff;
}

.product-item-grid__price:before {
  left: -8px;
}

.product-item-grid__price:after {
  right: -8px;
}

.product-item-grid__desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.product-item-grid__price-desc {
  font-size: 14px;
  font-family: "Alegreya", serif;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-item-grid__price-desc .icon {
  width: 20px;
  height: 20px;
}

.product-item-grid .primary-btn {
  width: 100%;
  margin-top: 20px;
}

.product-badges {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-badges__new {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 6px;
  background: var(--green);
  color: #fff;
  border-radius: 7px;
  line-height: 1;
  width: 40px;
  height: 24px;
}

.product-badges__hot {
  background: var(--orange);
  fill: white;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 24px;
}

.product-badges__hot .icon {
  width: 20px;
  height: 20px;
}

.product-badges__spacy {
  background: var(--red);
  fill: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  width: 40px;
  height: 24px;
}

.product-badges__spacy .icon {
  width: 20px;
  height: 20px;
}

/* Cart Popup */
.cart-popup {
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 99;
  height: 100vh;
  height: 100dvh;
  width: 360px;
  padding: 20px;
  background: #fff;
  transition: var(--transition);
}

.cart-popup.open {
  right: 0;
}

.cart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.cart-close-btn {
  cursor: pointer;
}

.cart-item-list {
  overflow-y: scroll;
  max-height: 80%;
}

.cart-item-list::-webkit-scrollbar {
  display: none;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray);
}

.cart-item img {
  width: 68px;
  height: auto;
  border-radius: 10px;
  margin-right: 10px;
}

.cart-item__wrap {
  flex: 1;
}

.cart-item__price {
  font-weight: 600;
  white-space: nowrap;
}

.cart-item__quantity {
  position: relative;
  margin: 0 12px;
}

.cart-item__quantity input {
  width: 100px;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  border: 1px solid var(--light-gray);
  background: var(--light-gray);
  outline: none;
}

.cart-item__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.cart-item__plus {
  right: 10px;
}

.cart-item__minus {
  left: 10px;
}
.cart-btns {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  padding: 20px;
  background: white;
}
.cart-close.secondary-btn {
  text-align: center;
  margin-left: 0;
  margin-bottom: 10px;
  width: 100%;
  font-size: 16px;
}

.cart-checkout.primary-btn {
  text-align: center;
  width: 100%;
}

/* Checkout */
.container.chekout {
  max-width: 1140px;
}

.checkout__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
}

.chekout__back {
  display: flex;
  align-items: center;
  color: #696969;
  fill: #696969;
}

.chekout__back .icon {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

.checkout-form {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 100vh;
}

.checkout-form > div {
  flex: 1 1 48%;
  padding: 20px 10px;

}
.checkout-form__block {
  margin-bottom: 20px;
}

.checkout-form__block-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
}

.form__input,
.checkout-form__text {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.form__input input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--gray);
  font-size: 16px;
  margin-top: 4px;
}

.form__input span,
.checkout-form__text span {
  font-size: 14px;
}

.cart-item.checkout-item {
  justify-content: space-between;
  margin-top: 10px;
}

.checkout-item__position {
  margin-right: 12px;
}

.checkout-form__text textarea {
  border-radius: 10px;
  border: 1px solid var(--gray);
  font-size: 16px;
  padding: 10px;
  margin-top: 4px;
  resize: none;
}

.checkout-payment img {
  max-width: 50%;
}

.checkout-total {
  margin: 10px 0 20px;
  padding-bottom: 20px;
  line-height: 1.8;
  border-bottom: 1px solid var(--gray);
}

.addresses-suggested ul {
  margin-top: 10px;
}
.addresses-suggested li {
  margin-bottom: 5px;
  cursor: pointer;
}
.devlivery-zones {
  display: block;
}
.mobile-devlivery-zones {
  display: none;
}
.devlivery-zones table,
.mobile-devlivery-zones table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.devlivery-zones table th,
.mobile-devlivery-zones table th {
  padding: 0 10px;
  text-align: left;
}
.devlivery-zones table td,
.mobile-devlivery-zones table td {
  padding: 5px 10px;
  background-color: var(--light-gray);
}
/* Contacts */
.contacts {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
}
.contacts__block {
  width: 48%;
}
.contacts__text {
  font-family: "Alegreya", serif;
  font-size: 56px;
  line-height: 1.2;
}
.contacts__h1 {
  font-size: 24px;
  font-weight: 400;
  margin-top: 20px;
}

.contacts li {
  font-size: 18px;
  margin: 10px 0;
  color: var(--text);
}
.contacts li span,
.contacts li a {
  color: var(--black);
  font-weight: 600;
}
.requisites__h1 {
  font-size: 20px;
  color: var(--text);
}
.requisites li {
  font-size: 14px;
  margin: 6px 0;
  color: var(--text);
}
.requisites li span,
.requisites li a {
  color: var(--text);
  font-weight: normal;
}
/* Reserve popup */
.reserve-popup,
.info-bar-popup {
  display: none;
  position: fixed;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 360px;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  animation: fadeIn 0.3s;
}
.info-bar-popup {
  z-index: 3;
}
.info-bar-popup-image {
  margin-top: 20px;
}
.info-bar-popup-image img {
  width: 100%;
}
.reserve-popup.open,
.info-bar-popup.open {
  display: block;
}
.reserve-popup__title {
  font-family: "Alegreya", serif;
  font-size: 28px;
  text-align: center;
}
.reserve-popup-btn {
  border: none;
  width: 100%;
  margin-top: 20px;
}
.primary-btn.reserve-popup-btn:hover {
  background: var(--black);
}
.reserve-popup-close,
.info-bar-popup-close {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}
/* Footer */

.footer-wrapp {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--gray);
}

.footer-menu {
  display: flex;
  align-items: center;
}

.footer-menu__item {
  margin-left: 20px;
  font-size: 14px;
  color: var(--text);
}

.footer__copyright {
  text-align: center;
  margin: 20px 0;
  font-size: 14px;
  color: var(--gray);
}

.checkout-form__row--half {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.checkout-form__input--radio {
  position: relative;
  width: 100%;
  flex: 0 0 47%;
  margin: 0;
}

.checkout-form__row--half .checkout-form__input--radio {
  width: 48%;
}

.checkout-form__input--radio input {
  position: absolute;
  visibility: hidden;
}

.checkout-form__input--radio span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 62px;
  width: 100%;
  background: var(--gray);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.checkout-form__input--radio img {
  width: 32px;
  height: 32px;
}

.checkout-form__input--radio input[type="radio"]:checked + span {
  background: var(--green);
}
.checkout-payment {
  padding-bottom: 20px;
  margin: 20px 0 0;
  border-bottom: 1px solid var(--gray);
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
.promocode {
  display: flex;
  gap: 10px
}
.thank-you {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.thank-you__inner {
  text-align: center;
  max-width: 600px;
}

.thank-you__title {
  font-family: "Alegreya", serif;
  font-size: 56px;
  line-height: 1.2;
}

.thank-you__text {
  font-size: 20px;
  margin-top: 20px;
}

.breadCrumbs {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  list-style-type: none;
  font-size: 13px;
  color: var(--text);
  white-space: nowrap;
}

.breadCrumbs div:last-child {
  color: var(--orange);
}

.politics h1 {
  text-align: center;
}

.politics h2 {
  margin: 60px 0 20px;
}

.politics p {
  margin-bottom: 10px;
}

.landing__hero.secondary {
  margin: 20px 0;
}

.landing__hero.secondary ul {
  margin: 20px 0;
  list-style-type: disc;
  list-style-position: inside;
}

.landing__hero.secondary ul li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.landing__hero.secondary table {
  margin: 20px 0;
  border-collapse: collapse;
  width: 100%;
}

.landing__hero.secondary table th,
.landing__hero.secondary table td {
  padding: 5px 10px;
  border: 1px solid var(--gray);
}

.landing__h1,
.landing__h2
 {
  font-family: "Alegreya", serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
}
.landing__h2 {
  font-size: 36px;
}

.landing__hero img {
  margin-top: 20px;
}

.landing p {
  margin: 20px 0;
}

.landing-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 160px 0;
  gap: 60px;
}
.landing-block__info {
  flex: 0 0 35%;
}

.landing-block img {
  width: 50%;
}

.landing-block.reverse {
  flex-direction: row-reverse;
}

.primary-btn.add-to-cart.disabled {
  background: var(--gray);
  pointer-events: none;
  cursor: not-allowed;
  font-size: 0.75rem;
}

.age-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
}

.age-modal__inner {
  background: white;
  max-width: 320px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.age-modal__title {
  font-size: 20px;
  font-weight: bold;
}

.age-modal__desc {
  font-size: 14px;
  color: var(--text);
}

.age-modal__second-btn:hover {
  color: var(--green);
}

.footer__text {
  font-size: 12px;
  color: var(--text);
  margin: 20px 0;
}

blockquote {
  padding-left: 20px;
  border-left: 2px solid var(--orange);
  margin-left: 30px;
  font-style: italic;
  font-size: 18px;
}


.promo {
  background: linear-gradient(45deg, #4372a1 10%, #004d9e 20% 80%, #4372a1 90%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 6px 10px;
  position: relative;
}
.promo-title {
  line-height: 1;
}
.promo-close {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.promo-close .icon {
  fill: #fff;
  width: 16px;
  height: 16px;
}
.promo-link {
  margin-left: 20px;
  padding: 3px 12px;
  font-size: 12px;
}
.promo-timer {
  min-width: 200px;
}
.promo-timer__items {
  display: flex;
  margin: 0 0 0 20px;
}
.promo-timer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 5px;
  font-size: 14px;
  font-weight: 700;
}
.promo-timer__title {
  font-size: 10px;
  font-weight: 400;
}

/* Profile */
.profile {
  width: 100%;
}
.profile__heading {
  font-size: 20px;
  color: var(--text);
}
.profile__data {
  margin-top: 40px;
}
.profile__data div {
  padding: 5px 0px;
  border-bottom: 1px solid var(--gray);
}
.profile__data span {
  font-weight: 600;
}
.bonus {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.bonus__wrappes {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  border-radius: 0 0 15px;
  background: linear-gradient(0deg, black, transparent);
  height: 78px;
  padding: 10px;
  color: #fff;
}
.bonus__block {
  max-width: 340px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  position: relative;
}
.bonus__desc {
  font-size: 20px;
  font-weight: 600;
}
.profile__info {
  margin-top: 60px;
}
.profile__block {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.profile__input {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.profile__input input{
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid var(--gray);
}
.profile__input label {
  font-size: 14px;
  color: var(--text);
}
.profile__input select {
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid var(--gray);
}
.profile__save.third-btn {
  font-size: 16px;
  border: 1px solid var(--black);
  width: 200px;
  margin-top: 20px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .mob__menu-btn {
    display: block;
    width: 232px;
  }
  .menu {
    display: none;
  }
  .category-menu {
    position: fixed;
    top: 0;
    left: -100%;
    background: #ffff;
    z-index: 2;
    padding: 20px;
    width: 256px;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: var(--transition);
  }
  .category-menu.open {
    left: 0;
  }
  .category-menu__close {
    display: flex;
  }
  .page-content {
    max-width: 100%;
    width: 100%;
  }

  .about__blockqoute {
    top: -50px;
    left: -20px;
  }
  .reserve img {
    max-width: 480px;
  }
}

@media (max-width: 1024px) {
  .hero__text {
    font-size: 48px;
  }
  .mob__menu {
    display: flex;
  }

  .about {
    font-size: 28px;
  }

  .article h1 {
    font-size: 48px;
  }

  .reserve__title {
    font-size: 48px;
  }

  .reserve__desc {
    font-size: 16px;
  }

  .reserve__wrap {
    max-width: 48%;
  }

  .reserve img {
    max-width: 48%;
  }
}

@media (max-width: 768px) {
  .hero__wrap {
    flex-direction: column;
  }
  .hero__image {
    width: 100%;
    height: 280px;
    margin: 20px 0 20px 0;
  }
  .hero__image img {
    width: 120%;
    max-width: 120%;
    height: auto;
  }
  .hero .primary-btn {
    width: auto;
  }
  .hero__image--left {
    border-radius: 150px 0;
  }
  .hero__image--right {
    border-radius: 0 150px;
  }
  .category-content-hero__title {
    font-size: 48px;
  }
  .product-item-list__media {
    flex-direction: column;
    margin-right: 20px;
  }
  .product-item-list-video {
    flex-direction: row;
    margin: 20px 0 0;
  }
  .product-item-list__gallery-wrap {
    max-width: 280px;
  }
  .product-item-list-video__thumb {
    max-width: 130px;
    max-height: 130px;
    position: relative;
  }

  .about {
    font-size: 24px;
  }

  .about__blockqoute {
    top: -30px;
    left: -20px;
    width: 60px;
    height: 60px;
  }

  .about__blockqoute .icon {
    width: 30px;
    height: 30px;
  }
  .reserve {
    margin: 120px 0 40px;
  }
  .reserve__wrap {
    max-width: 100%;
  }
  .reserve img {
    display: none;
  }
  .product-item-grid {
    width: 33.3%;
  }
  .contacts {
    flex-direction: column-reverse;
    padding-top: 0;
    justify-content: flex-start;
  }
  .contacts__block {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer__copyright {
    padding: 20px 0 80px;
  }
  .politics h1 {
    font-size: 24px;
  }
  .politics h2 {
    font-size: 20px;
    margin: 20px 0;
  }
  .landing-block {
    gap: 20px;
  }
  .landing-block__info {
    flex: 0 0 45%;
  }
  .checkout-form__input--radio {
    flex: 0 0 100%;
  }
  .checkout-form__row--half {
    flex-direction: column;
    gap: 20px;
  }
  .checkout-form__row--half .checkout-form__input--radio {
    width: 100%;
  }
  .cart-item.checkout-item a {
    font-size: 12px;
  }
  .promocode {
    display: block;
  }
  .devlivery-zones {
    display: none;
  }
  .mobile-devlivery-zones {
    display: block;
  }
  .mobile-devlivery-zones table {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .hero__wrap {
    width: 100%;
  }
  .hero__text {
    font-size: 28px;
  }
  .hero__text-desc {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }
  .product-title {
    font-size: 28px;
  }
  .header__wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
  }
  .header__logo {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  .category-content-hero {
    height: auto;
  }
  .category-content-hero img {
    transform: translateY(0%);
  }
  .category-content-hero__title {
    width: 100%;
    font-size: 36px;
  }
  .product-block__title {
    font-size: 28px;
  }
  .product-block__subtitle {
    font-size: 20px;
  }
  .product-item-list {
    flex-direction: column;
    padding: 15px;
  }
  .product-item-list-drinks {
    align-items: flex-start;
  }
  .product-item-list__media {
    margin-right: 0;
  }
  .product-badges {
    top: 18px;
    left: 18px;
  }
  .product-item-list__gallery-wrap {
    max-width: 100%;
  }
  .product-item-list-video {
    margin: 0;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
  }
  .product-item-list-video__thumb {
    width: 64px;
    height: 64px;
  }
  .product-item-list__title {
    font-size: 28px;
    margin: 20px 0;
  }
  .product-item-grid__weight {
    font-size: 12px;
  }
  .product-item-grid__title {
    font-size: 16px;
  }
  .product-item-grid__price {
    font-size: 16px;
  }
  .product-item-grid__price:before {
    left: -8px;
    top: 8px;
    width: 14px;
    height: 14px;
  }
  .product-item-grid__price:after {
    right: -8px;
    top: 8px;
    width: 14px;
    height: 14px;
  }
  .product-item-list-drinks .product-item-list__title {
    margin-bottom: 20px;
  }
  .category-content-item__ingridients {
    font-size: 14px;
  }
  .product-item-list-nutritional {
    position: static;
    font-size: 12px;
    margin-top: 20px;
  }
  .mob__menu-btn {
    width: auto;
    flex: 1;
  }

  .header__logo svg {
    width: 80px;
  }

  .header__reserve,
  .menu,
  .header__phone {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    z-index: 99;
    overflow: hidden;
    background: var(--snow-white);
    transition: height 0.3s ease-in-out;
  }

  .menu.active {
    display: flex;
    height: 100vh;
  }

  .menu__items {
    flex-direction: column;
    font-size: 24px;
    text-align: center;
  }

  .menu__item {
    display: block;
    margin: 10px;
  }

  .main-page-video__plat-btn {
    width: 100px;
    height: 100px;
  }

  .main-page-video__plat-btn .icon {
    width: 40px;
    height: 40px;
  }

  .about__blockqoute {
    left: 10px;
  }

  .article h1 {
    font-size: 32px;
  }

  .reserve {
    flex-direction: column-reverse;
  }

  .reserve__title {
    font-size: 32px;
  }
  .footer-wrapp,
  .footer-menu {
    flex-direction: column;
    align-items: center;
  }
  .footer-menu__item {
    margin: 10px 0;
    display: block;
  }
  .product-item-grid {
    width: 50%;
    padding: 5px;
  }
  .product-item-grid__inner {
    padding: 10px;
  }
  .checkout__header .header__phone {
    display: block;
  }
  .checkout-form {
    display: block;
  }
  .cart-popup {
    width: 100%;
  }
  .contacts__text {
    font-size: 32px;
  }
  .contacts li {
    font-size: 16px;
  }
  .checkout-form__row--half {
    flex-direction: column;
  }
  .checkout-payment {
    column-count: 1;
  }
  .product__video-wrap {
    width: 100%;
  }
  .thank-you__title {
    font-size: 32px;
  }

  .thank-you__text {
    font-size: 18px;
    margin-top: 10px;
  }
  .landing-block {
    flex-direction: column;
    margin: 60px 0;
  }
  .landing-block__info {
    flex: 0 0 100%;
  }
  .landing-block img {
    width: 100%;
  }
  .landing-block.reverse {
    flex-direction: column;
  }
  .landing__h1 {
    font-size: 36px;
  }
}
