h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 48px;
  color: var(--blackblue);
}

.title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 32px;
  color: var(--blackblue);
  flex-shrink: 0;
}

.subtitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: var(--blackblue);
}

input {
  margin: 0;
}

.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
}

* {
  box-sizing: border-box;
}

p {
  margin: 0;
}

:root {
  --font-family: "Manrope", sans-serif;
  --second-family: "Poppins", sans-serif;
}

:root {
  --white: #fff;
  --blackblue: #131b2d;
  --redcuba: #fb0106;
  --pink: #fb8585;
}

button {
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
}

ul, li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
}

a {
  text-decoration: none;
  line-height: normal;
  cursor: pointer;
}

img, svg {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

html,
body {
  padding: 0;
  height: 100%;
  margin: 0;
}

html {
  scrollbar-width: thin;
  scroll-behavior: smooth;
}

::placeholder {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  opacity: 0.6;
}

::-webkit-input-placeholder {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  opacity: 0.6;
}

::-moz-placeholder {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  opacity: 0.6;
}

:-ms-input-placeholder {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  opacity: 0.6;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
}
body.hidden {
  overflow: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  padding: 0 160px;
  box-sizing: border-box;
  margin: 0 auto;
}

.row {
  display: flex;
}

.opacite {
  background: rgba(0, 0, 0, 0.5);
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  backdrop-filter: blur(3px);
}
.opacite.active {
  display: block;
}

.header {
  flex: 0 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.header__row {
  align-items: center;
}
.header__top {
  display: flex;
  align-items: center;
  padding: 13px 0;
}
.header__top-social {
  display: flex;
  gap: 10px;
  margin-left: auto;
  margin-right: 0;
}
.header__top-social a svg {
  max-width: 25px;
}
.header__top-menu {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 60px;
}
.header__top-menu li:last-child {
  margin-left: -40px;
  margin-right: 0;
}
.header__line {
  width: 100vw;
  height: 1px;
  background-color: var(--blackblue);
}
.header__bottom {
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.header__logo {
  max-width: 160px;
  margin-right: 24px;
  display: flex;
}
.header__logo img {
  flex-shrink: 0;
}
.header__about {
  display: flex;
  margin-left: 24px;
  align-items: center;
  gap: 8px;
}
.header__about-top {
    margin-top: auto !important;
}
.header__about-circle {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  background-color: var(--blackblue);
}
.header__about-text {
  display: flex;
  flex-direction: column;
}
.header__about-title {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 16px;
  color: var(--blackblue);
}
.header__about-subtitle {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: var(--blackblue);
}
.header__leaf {
  position: absolute;
  right: 0;
  top: -45px;
  transform: rotateY(-180deg);
}

.footer {
  flex: 0 0 auto;
  background: var(--blackblue);
}
.footer__row {
  padding: 48px 0;
  flex-direction: column;
  gap: 48px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer__right {
  max-width: 185px;
}
.footer__middle {
  display: flex;
  gap: 48px;
  align-items: center;
}
.footer__middle .header__about {
  margin-left: 0;
}
.footer__middle .header__about-circle {
  background: var(--redcuba);
  flex-shrink: 0;
}
.footer__middle span {
  color: var(--white);
}
.footer__middle a {
  color: var(--white);
}
.footer__bottom {
  border-radius: 20px;
}
.footer__bottom iframe {
  border-radius: 20px;
}
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 37px;
}
.footer__menu {
  display: flex;
  gap: 60px;
  align-items: center;
}
.footer__menu .text {
  color: var(--white);
}
.footer__address {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__address a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.footer__address span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

.hidden-text {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  text-indent: -9999px;
  white-space: nowrap;
}

.js-filters-prev:disabled,
.js-filters-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.filters {
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}
.filters__buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-right: 38px;
  flex-shrink: 0;
  position: relative;
}
.filters__search-panel {
    position: absolute;
    left: 0;
    top: calc(100% + 12px);
    width: 320px;
    padding: 12px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    z-index: 30;
    display: none;
}
.filters__search-panel.active {
    display: block;
}

.filters__search-panel-input {
    width: 100%;
    padding: 12px 40px 12px 14px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 16px;
}

.filters__search-panel-close {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: none;
    font-size: 24px;
    cursor: pointer;
}

.filters__search-panel-result {
    margin-top: 10px;
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.filters__search-panel-result button {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--blackblue);
    width: 100%;
    text-align: left;
}

.filters__search-panel-item {
    display: block;
    padding: 10px;
    border-radius: 10px;
    color: #131b2d;
    text-decoration: none;
    cursor: pointer;
}

.filters__search-panel-item:hover {
    background: #f2f2f2;
}

.filters__search-panel-empty {
    padding: 10px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--blackblue);
}
.filters.is-stuck {
  backdrop-filter: blur(50px);
  background: rgba(255, 255, 255, 0.4);
  padding: 24px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.filters .swiper-btn {
  gap: 10px;
  margin-left: 10px;
}
.filters .swiper-btn svg {
  max-width: 15px;
}
.filters__menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filters__menu-item {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  transition: 0.4s;
  padding: 8px 14px;
  background: transparent;
  border-radius: 20px;
  white-space: nowrap;
}
.filters__menu-item:hover {
  color: var(--white);
  background-color: var(--blackblue);
}
.filters__menu-item.active {
  color: var(--white);
  background-color: var(--blackblue);
}
.filters__basket {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: var(--blackblue);
  padding: 5px 20px;
  margin-left: 50px;
}
.filters__basket-line {
  width: 2px;
  height: 100%;
  background-color: var(--white);
  margin: 0 6px;
}
.filters__basket-price {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.swiper-btn-prev:disabled,
.swiper-btn-next:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.modal {
    position: fixed;
    z-index: 100000000;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blackblue);
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 70%;
}
.modal.active {
    display: flex;
}
.modal p, a {
    color: #fff;
    font-size: 14px;
}
.modal a {
    text-decoration: underline;
}
.modal__button {
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid #fff;
}
.modal__button span {
    color: #fff;
}

.often {
  margin: 24px 0;
}
.often__row {
  flex-direction: column;
}
.often__title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.often__title-line {
  width: 100%;
  height: 1px;
  background-color: var(--blackblue);
}
.often__block {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 25px;
  padding: 24px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.often__block::-webkit-scrollbar {
  display: none;
}
.often__item {
  display: flex;
  gap: 8px;
  transition: 0.4s;
  border-radius: 20px;
  background: var(--white);
  padding: 8px;
  flex: 0 0 auto;
  position: relative;
}
.often__item:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.29), 0 10px 10px 0 rgba(0, 0, 0, 0.26), 0 23px 14px 0 rgba(0, 0, 0, 0.15), 0 41px 16px 0 rgba(0, 0, 0, 0.04), 0 63px 18px 0 rgba(0, 0, 0, 0.01);
}
.often__item img {
  max-width: 100px;
}
.often__item-about {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 0;
  max-width: 125px;
}
.often__item-about p:last-child {
  font-weight: 600;
}

.promo {
  margin-bottom: 48px;
}
.promo__slider {
  width: 100%;
  overflow: hidden;
}
.promo__track {
  gap: 20px;
  display: flex;
  width: max-content;
  animation: promo-scroll 30s linear infinite;
}
.promo__track:hover {
  animation-play-state: paused;
}
.promo__item {
  display: flex;
  gap: 15px;
  padding: 24px;
  border-radius: 20px;
  background-color: var(--blackblue);
  flex-shrink: 0;
  width: 583px;
}
.promo__item-img {
  max-width: 240px;
}
.promo__item-about {
  max-width: 280px;
  display: flex;
  flex-direction: column;
}
.promo__item .title {
  margin-bottom: 16px;
  color: var(--white);
}
.promo__item .text {
  color: var(--white);
}
.promo__item-button {
  border-radius: 10px;
  padding: 16px;
  background: var(--white);
  max-width: max-content;
  margin-top: auto;
  margin-bottom: 0;
}
.promo__item-button .text {
  color: var(--blackblue);
}

@keyframes promo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 10px));
  }
}
.menu {
  margin-bottom: 40px;
  scroll-margin-top: 100px;
  position: relative;
}
.menu__swiper {
  padding: 10px 10px 40px 10px !important;
}
.menu__leaf-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.menu__leaf-right {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.menu__line {
  width: 100vw;
  height: 1px;
  background: var(--blackblue);
  margin-left: 50%;
  transform: translateX(-50%);
  display: none;
}
.menu__row {
  flex-direction: column;
  gap: 24px;
}
.menu__title {
  display: flex;
  align-items: center;
}
.menu__title .title {
  flex-shrink: 0;
}
.menu__title-line {
  width: 100%;
  height: 1px;
  background-color: var(--blackblue);
  margin-left: 16px;
}
.menu__item {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 20px;
  height: auto !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  transition: 0.4s !important;
  position: relative;
}
.menu__item-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: none;
  border: none;
  cursor: pointer;
}
.menu__item .subtitle {
  text-align: center;
}
.menu__item:hover {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.29), 0 10px 10px 0 rgba(0, 0, 0, 0.26), 0 23px 14px 0 rgba(0, 0, 0, 0.15), 0 41px 16px 0 rgba(0, 0, 0, 0.04), 0 63px 18px 0 rgba(0, 0, 0, 0.01);
}
.menu__item:hover .menu__button {
  background-color: var(--blackblue);
}
.menu__item:hover .menu__button .text {
  color: var(--white);
}
.menu__item:hover .menu__item-img {
  transform: translateY(10px);
}
.menu__item-img {
  max-width: 200px;
  margin: 0 auto 16px auto;
  transition: 0.4s;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu__item-img img {
  max-height: 100%;
}
.menu__item .text {
  margin-top: 10px;
  text-align: left;
  font-size: 14px;
  margin-bottom: 5px;
}
.menu__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.menu__button {
  border-radius: 10px;
  padding: 16px;
  background: var(--white);
  max-width: max-content;
  border: 1px solid var(--blackblue);
  transition: 0.4s;
}
.menu__button .text {
  transition: 0.4s;
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  display: flex !important;
}
.swiper-wrapper {
  align-items: stretch;
}
.swiper-btn {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 16px;
  margin-right: 0;
  flex-shrink: 0;
}

.basket {
  position: fixed;
  height: 100dvh;
  right: 0;
  top: 0;
  z-index: 1000000;
  background-color: #ebebeb;
  padding-top: 24px;
  flex-direction: column;
  width: 100%;
  max-width: 428px;
  display: none;
}
.basket.active {
  display: flex;
}
.basket__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
.basket__menu {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: scroll;
  scrollbar-width: thin;
}
.basket__counter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #d9d9d9;
  border-radius: 20px;
}
.basket__counter-value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #000;
  text-align: center;
}
.basket__counter-btn {
  height: 22px;
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.basket__item {
  padding: 8px 16px 16px 16px;
  background: var(--white);
  position: relative;
  border-radius: 20px;
}
.basket__item-image {
  max-width: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.basket__item-image img {
  max-height: 100px;
}
.basket__item .subtitle {
  max-width: 90%;
}
.basket__item-top {
  display: flex;
  gap: 8px;
}
.basket__item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px 0;
}
.basket__item-line {
  margin: 16px 0;
  width: 100%;
  background: var(--blackblue);
  height: 1px;
}
.basket__item-bottom {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
}
.basket__item-price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--blackblue);
}
.basket__item-close {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.basket__result {
  margin-bottom: 0;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
}
.basket__result-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.basket__result-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--blackblue);
}
.basket__result-button {
  width: 100%;
  background: var(--blackblue);
  border-radius: 15px;
  padding: 13px 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.basket__result-button span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
}
.basket__clean {
  max-width: max-content;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  padding: 16px 24px;
  margin-top: auto;
  margin-bottom: 0;
}
.basket__clean span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--pink);
}
.basket__button {
  border-radius: 100%;
  border: 2px solid var(--blackblue);
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 1000;
}

.contact {
  position: relative;
  margin-top: 24px;
  padding-bottom: 96px;
  overflow: hidden;
}
.contact__row {
  flex-direction: column;
}
.contact__title {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.contact__title h1 {
  flex-shrink: 0;
}
.contact__title-line {
  width: 100%;
  height: 1px;
  background: var(--blackblue);
}
.contact__info {
  position: relative;
  border-radius: 20px;
  background-color: var(--blackblue);
  display: flex;
  justify-content: center;
  padding: 25px;
  margin-bottom: 10px;
}
.contact__info-text {
  max-width: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: var(--white);
}
.contact__info-text span:last-child {
  margin-top: 32px;
}
.contact__info-text a {
  color: var(--white);
}
.contact__leaf-left {
  position: absolute;
  left: 10px;
  top: 10px;
  max-width: 186px;
}
.contact__leaf-right {
  position: absolute;
  right: 10px;
  top: 10px;
  max-width: 186px;
  transform: rotateY(180deg);
}
.contact__bottom {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;
}
.contact__bottom-leaf {
  position: absolute;
  top: 0;
  right: 0;
}
.contact__bottom-left {
  width: 100%;
  display: flex;
  position: relative;
  flex-direction: column;
  gap: 18px;
  max-width: 457px;
  border-radius: 20px;
  background-color: var(--blackblue);
  padding: 24px 26px;
}
.contact__bottom-left .text {
  color: var(--white);
}
.contact__bottom-left .subtitle {
  color: var(--white);
}
.contact__bottom-middle {
  display: flex;
  flex-direction: column;
  padding: 24px 26px;
  gap: 24px;
  background: var(--blackblue);
  border-radius: 20px;
  flex-shrink: 0;
}
.contact__bottom-middle h2 {
  color: var(--white);
}
.contact__bottom-middle-svg {
  display: none;
}
.contact__bottom-middle .text {
  color: var(--white);
}
.contact__bottom-right {
  display: flex;
  flex-direction: column;
  background-color: var(--blackblue);
  border-radius: 20px;
  padding: 24px 30px;
  width: 100%;
}
.contact__bottom-right .text {
  color: var(--white);
}
.contact__social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.contact__social-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  background: var(--white);
  border-radius: 20px;
}
.contact__item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact__address {
  display: flex;
  gap: 16px;
  align-items: start;
}
.contact__address-right {
  display: flex;
  flex-direction: column;
}
.contact__address-right span {
  margin-bottom: 4px;
}
.contact__address-right button {
  text-align: start;
}
.contact__more {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.contact__more a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #af3a3a;
}
.contact__more:last-child {
  margin-bottom: 0;
}
.contact__more-circle {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__back-left {
  position: absolute;
  left: 0;
  bottom: -275px;
}
.contact__back-right {
  position: absolute;
  right: 0;
  bottom: -100px;
}

.thanks__row {
    flex-direction: column;
    padding: 50px 0 100px 0;
    text-align: center;
    gap: 20px;
}
.thanks .title {
    font-size: 80px;
}
.thanks .subtitle {
    font-size: 32px;
    font-weight: 500;
}

.promotion {
  margin-top: 24px;
  padding-bottom: 96px;
  position: relative;
}
.promotion__row {
  flex-direction: column;
}
.promotion__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.promotion__wrapper .menu__item {
  width: calc(33% - 11px);
  align-items: start;
  border: 0.5px solid rgba(0, 0, 0, 0.5);
  padding: 20px;
}
.promotion__wrapper .menu__item .text {
  font-size: 16px;
}
.promotion__wrapper .menu__item button {
  margin-top: 10px;
}
.promotion__wrapper .menu__item .subtitle {
  text-align: left;
}
.promotion__leaf-left {
  position: absolute;
  left: 0;
  top: 0;
}
.promotion__leaf-right {
  position: absolute;
  right: 0;
  bottom: 0;
}

.mob {
  display: none;
}

.burger {
  position: absolute;
  left: 0;
  top: 0;
  width: 284px;
  background: var(--white);
  padding: 40px 20px;
  z-index: 100000000000;
  display: none;
  flex-direction: column;
  min-height: 70%;
}
.burger.active {
  display: flex;
}
.burger__line {
  width: 100%;
  height: 2px;
  background-color: var(--blackblue);
  margin: 15px 0;
}
.burger__close {
  position: absolute;
  right: 20px;
  top: 40px;
}
.burger-svg {
  position: absolute;
  right: 0;
  top: 210px;
  max-width: 70px;
}
.burger__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.burger__menu-text {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  color: var(--blackblue);
}
.burger .contact__bottom-middle {
  background-color: transparent;
  padding: 0;
  gap: 10px;
  border-radius: 0;
  margin: 0px 0;
  flex-direction: row;
}
.burger .contact__bottom-middle .text {
  color: var(--blackblue);
}
.burger .contact__social svg {
  max-width: 25px;
}
.burger .header__about {
  margin-left: 0;
  gap: 20px;
  margin-top: 5px;
}
.burger .header__about-subtitle {
  font-size: 20px;
}

.card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 530px;
  border-radius: 20px;
  background: var(--white);
  z-index: 100000;
  display: flex;
  width: max-content;
  display: none;
}
.card__persona {
    display: flex;
    gap: 20px;
    padding: 10px 0;
}
.card.active {
  display: flex;
}
.card__img {
  max-width: 531px;
  margin: auto;
  padding: 20px;
}
.card__extra {
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
  margin-bottom: 40px;
}
.card__content {
  max-width: 426px;
  padding: 32px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.card__content-info {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--blackblue);
}
.card__content-info-light {
  opacity: 0.56;
  margin-bottom: 5px;
}
.card__content-sizes {
  display: flex;
  margin-top: 5px;
  background: #ebebeb;
  border-radius: 10px;
  padding: 4px;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card__content-sizes button {
  padding: 8px 14px;
  border-radius: 10px;
  width: calc(50% - 3px);
}
.card__content-type {
  display: flex;
  margin-top: 5px;
  background: #ebebeb;
  border-radius: 10px;
  padding: 4px;
  gap: 5px;
  justify-content: space-between;
}
.card__content-type button {
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  width: calc(50% - 10px);
}
.card__content-extra {
  display: flex;
  margin-top: 5px;
  background: #ebebeb;
  border-radius: 10px;
  padding: 4px;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card__content-extra button {
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  width: calc(50% - 10px);
}
.card__content-add {
  background: #131b2d;
  width: 100%;
  padding: 16px 32px;
  color: var(--white);
  border-radius: 10px;
  margin-top: auto;
}
.card__close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.card__option {
  display: flex;
  margin-top: 5px;
  background: #ebebeb;
  border-radius: 10px;
  padding: 4px;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.card__option button {
  padding: 8px 14px;
  border-radius: 10px;
  text-align: center;
  width: calc(50% - 10px);
}

.policy {
  margin-bottom: 40px;
  margin-top: 20px;
}
.policy p, .policy li, .policy span, .policy a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  margin-top: 5px;
}
.policy .title {
  margin-bottom: 20px;
}
.policy .subtitle {
  margin: 10px 0;
}

.error {
  position: relative;
  flex-direction: column;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.error__title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 64px;
  text-align: center;
  color: #131b2d;
}
.error__img {
  margin-top: -80px;
}

.option-group {
  position: relative;
}

.option-group[data-multiple="true"] .option-highlight {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    transform: translate(0, 0) !important;
}

.option-group[data-multiple="true"] button.active {
    background: var(--white);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13), 0 2px 1px rgba(0, 0, 0, 0.08);
}

.option-group .option-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.13), 0 2px 1px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, width 0.25s ease, height 0.25s ease, opacity 0.2s;
  pointer-events: none;
  z-index: 1;
}

.option-group button {
  position: relative;
  z-index: 2;
  background: transparent;
  flex-shrink: 0;
}

.option-group button span {
    pointer-events:none;
}

.order__row {
  flex-direction: column;
  gap: 24px;
  padding: 24px 0 100px 0;
}

.form {
  display: flex;
  gap: 12px;
}
.form__cash-change {
    display: none;
    align-items: center;
    gap: 10px;
}
.form__cash-change input.is-error {
    border: 2px solid var(--redcuba);
}
.form__cash-change .text {
    flex-shrink: 0;
}
.form__cash-change.active {
    display: flex;
}
.form__agree {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}
.form__agree input {
    display: none;
}
.form__agree-text {
    font-size: 14px;
}
.form__agree-text a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--blackblue);
    text-decoration: underline;
}
/* коробка */
.form__agree-box {
    width: 18px;
    height: 18px;
    border: 2px solid var(--blackblue);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: 0.2s ease;
}
/* галочка */
.form__agree-box::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: 0.2s ease;
}
/* актив */
.form__agree input:checked + .form__agree-box {
    background: var(--blackblue);
}
.form__agree input:checked + .form__agree-box::after {
    transform: rotate(45deg) scale(1);
}
.form__agree.is-error .form__agree-box {
    border: 2px solid var(--redcuba);
}
.form__agree.is-error .form__agree-text {
    color: var(--redcuba);
}
.form__messages {
    color: var(--redcuba);
    margin-top: 10px;
    text-align: center;
}
.form__left {
  width: calc(50% - 6px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form__get {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.29), 0 10px 10px 0 rgba(0, 0, 0, 0.26), 0 23px 14px 0 rgba(0, 0, 0, 0.15), 0 41px 16px 0 rgba(0, 0, 0, 0.04), 0 63px 18px 0 rgba(0, 0, 0, 0.01);
  background: var(--blackblue);
  border-radius: 20px;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
}
.form__get-address {
  padding: 24px 0;
}
.form__get-type {
  display: flex;
  align-items: center;
  gap: 46px;
}
.form__get-type label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form__get-type label input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--redcuba);
}
.form__get-text {
  margin-top: 10px;
  margin-bottom: 40px;
}
.form__get-text-second {
    margin-top: 16px;
}
.form__get .text {
  color: var(--white);
}
.form__get .subtitle {
  color: var(--white);
}
.form__client {
  display: flex;
  gap: 17px;
}
.form__client input {
  border: 1px solid var(--blackblue);
  border-radius: 20px;
  padding: 10px 24px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  width: 100%;
}
.form__client input:focus {
  outline: none;
}
.form__select {
  background: var(--white);
  width: 100%;
  border-radius: 20px;
  padding: 12px 24px;
  cursor: pointer;
  user-select: none;
}
.form__select .text {
  color: var(--blackblue);
}
.form__select-current {
  display: flex;
  justify-content: space-between;
}
.form__select-list {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}
.form__select-list .text {
  cursor: pointer;
}
.form__select-arrow {
  transition: transform 0.2s ease;
}
.form__select.open .form__select-arrow {
  transform: rotate(180deg);
}
.form__select.open .form__select-list {
  display: flex;
}
.form__pickup {
  display: block;
  transition: opacity 0.25s ease;
}
.form__comment {
  border: 1px solid var(--blackblue);
  border-radius: 20px;
  padding: 10px 24px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  width: 100%;
}
.form__comment:focus {
  outline: none;
}
.form__button {
  width: 100%;
  text-align: center;
  padding: 14px 28px;
  background: var(--blackblue);
  border-radius: 20px;
}
.form__button .text {
  color: var(--white);
}
.form__other {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--pink);
  margin-top: -15px;
}
.form__delivery {
  display: none;
  transition: opacity 0.25s ease;
}
.form__delivery-status {
    color: var(--redcuba) !important;
    margin-top: 5px;
}
.form__address {
  display: grid;
  grid-template-columns: 1fr 100px;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 5px;
}
.form__address-extra {
    display: flex;
    width: 100%;
    grid-column: 1 / -1;
    gap: 5px;
}
.form__address input {
  border: 1px solid var(--blackblue);
  border-radius: 20px;
  padding: 10px 24px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--blackblue);
  width: 100%;
}
.form__address input:last-child {
  grid-area: 2/1/3/3;
}
.form__address input:focus {
  outline: none;
}
.form__right {
  width: calc(50% - 6px);
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.29), 0 10px 10px 0 rgba(0, 0, 0, 0.26), 0 23px 14px 0 rgba(0, 0, 0, 0.15), 0 41px 16px 0 rgba(0, 0, 0, 0.04), 0 63px 18px 0 rgba(0, 0, 0, 0.01);
  background: var(--blackblue);
  border-radius: 20px;
  padding: 24px;
}
.form__right .text {
  color: var(--white);
}
.form__right .subtitle {
  color: var(--white);
}
.form__order {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__order ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-height: 300px;
  overflow-y: scroll;
  scrollbar-width: thin;
  padding-right: 10px;
  scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}
.form__order ul::-webkit-scrollbar-track {
  background: transparent;
}
.form__order ul li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.form__order-line {
  width: 100%;
  height: 1px;
  background: var(--white);
}
.form__order-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form__order-left {
  gap: 2px;
  display: flex;
  flex-direction: column;
}
.form__order-price {
  font-weight: 600;
}
.form__order-pay {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.form__order-pay label {
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  cursor: pointer;
}
.form__order-pay label .text {
  color: var(--blackblue);
  margin-left: 16px;
  margin-right: auto;
}
.form__order-pay label input {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--redcuba);
}

@media (max-width: 1440px) {
  .container {
    padding: 0 120px;
  }
  .header__leaf {
    max-width: 200px;
    top: -25px;
  }
  .promo__item {
    gap: 10px;
    padding: 20px;
    width: 520px;
  }
  .promo__item .title {
    line-height: 1;
  }
  .promo__item-img {
    max-width: 200px;
  }
  .menu__leaf-right {
    max-width: 160px;
  }
  .menu__leaf-left {
    max-width: 160px;
  }
  .menu__item {
    padding: 10px;
  }
  .menu__item .text {
    margin: 10px 0;
  }
  .menu__item-img {
    max-width: 140px;
    height: 140px;
    margin-bottom: 10px;
  }
  .menu__buttons .subtitle {
    font-size: 16px;
  }
  .menu__button {
    padding: 10px;
  }
  #pizza .menu__leaf-right {
    max-width: 100px;
  }
  #drink .menu__leaf-right {
    max-width: 100px;
  }
  .footer__bottom iframe {
    height: 300px;
  }
  .footer__row {
    padding: 30px 0;
    gap: 30px;
  }
  .footer__right {
    max-width: 120px;
  }
  .footer__middle {
    gap: 20px;
  }
  .footer__middle .header__about-circle {
    width: 40px;
    height: 40px;
  }
  .footer__middle .header__about-circle svg {
    max-width: 20px;
  }
  .promotion__leaf-left {
    max-width: 160px;
  }
  .promotion__leaf-right {
    max-width: 160px;
  }
  .contact__info-text {
    max-width: 400px;
  }
  .contact__bottom-leaf {
    display: none;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
  .filters.is-stuck {
    padding: 15px 0;
  }
  .filters__buttons {
    margin-right: 20px;
    gap: 10px;
  }
  .filters__buttons svg {
    max-width: 15px;
  }
  .filters__basket {
    padding: 5px 10px;
    margin-left: 20px;
  }
  .filters__basket-price {
    font-size: 14px;
  }
  .filters__basket-line {
    width: 1px;
  }
  .filters__basket svg {
    max-width: 20px;
  }
  .filters__menu {
    gap: 5px;
  }
  .filters__menu-item {
    padding: 5px 10px;
    border-radius: 15px;
  }
  .header__logo {
    max-width: 100px;
  }
  .header__bottom {
    padding: 10px 0;
  }
  .header__leaf {
    max-width: 140px;
  }
  .header__about-subtitle {
    font-size: 16px;
  }
  .header__about-circle {
    width: 40px;
    height: 40px;
  }
  .header__about-circle svg {
    max-width: 20px;
  }
  .often {
    margin: 12px 0;
  }
  .often__block {
    padding: 12px 0;
  }
  .promo {
    margin-bottom: 24px;
  }
  .menu {
    margin-bottom: 20px;
    scroll-margin-top: 80px;
  }
  .menu__swiper {
    padding: 10px 10px 20px 10px !important;
  }
  .menu__row {
    gap: 12px;
  }
  .menu__leaf-right {
    max-width: 120px;
  }
  .menu__leaf-left {
    max-width: 120px;
  }
  .footer__left {
    gap: 20px;
  }
  .footer__top {
    position: relative;
  }
  .footer__middle {
    order: 3;
    margin-top: 20px;
  }
  .footer__address {
    order: 2;
  } 
  .footer__menu {
      gap: 30px;
  }
  .footer__right {
    max-width: 100px;
    position: absolute;
    right: 0;
  }
  .footer__bottom iframe {
    height: 250px;
  }
  .promotion {
    padding-bottom: 60px;
  }
  .promotion__leaf-right {
    max-width: 120px;
  }
  .promotion__leaf-left {
    max-width: 120px;
  }
  #pizza .menu__leaf-right {
    max-width: 80px;
  }
  #drink .menu__leaf-right {
    max-width: 80px;
  }
  .contact__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    row-gap: 10px;
  }
  .contact__bottom-right {
    grid-column: 1/span 2;
  }
  .contact__bottom-left {
    max-width: none;
  }
  .contact__bottom-leaf {
    display: block;
  }
  .contact__leaf-right {
    max-width: 150px;
  }
  .contact__leaf-left {
    max-width: 150px;
  }
  .contact__back-left {
    bottom: -100px;
    max-width: 200px;
  }
  .contact__back-right {
    max-width: 80px;
  }
  .card__img {
    max-width: 300px;
    display: flex;
    align-items: center;
  }
  .form__client {
    flex-direction: column;
    gap: 10px;
  }
  .form__left {
    gap: 15px;
  }
  .form__other {
    margin-top: -10px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .contact__leaf-right {
    display: none;
  }
  .contact__leaf-left {
    display: none;
  }
  .modal {
    bottom: 0px;
    left: 0;
    transform: translateX(0);
    border-radius: 20px 20px 0 0;
    gap: 10px;
    flex-direction: column;
    align-items: start;
    max-width: 100%;
  }
  .decs {
    display: none;
  }
  .mob {
    display: flex;
  }
  .error__title {
    font-size: 40px;
  }
  .error__img {
    max-width: 300px;
    margin-top: -20px;
  }
  .header__logo {
    max-width: 50px;
    margin-left: auto;
    margin-right: 0;
    position: relative;
  }
  .header__logo::before {
    content: "";
    position: absolute;
    top: -12%;
    width: 113px;
    background-image: url('../image/logo-before.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 85px;
    right: 61%;
  }
  .header__top {
    padding: 10px 0;
  }
  .header__phone {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 16px;
    color: var(--blackblue);
    margin-left: 16px;
  }
  .filters {
    padding: 12px 0;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05), 0 6px 6px 0 rgba(0, 0, 0, 0.04), 0 14px 9px 0 rgba(0, 0, 0, 0.03), 0 25px 10px 0 rgba(0, 0, 0, 0.01), 0 39px 11px 0 rgba(0, 0, 0, 0);
  }
  .filters__menu {
    min-height: 32px;
  }
  .filters__buttons {
    margin-right: 10px;
  }
  .filters__buttons svg {
    max-width: none;
  }
  .title {
    font-size: 26px;
  }
  .often {
    margin: 24px 0 12px 0;
  }
  .swiper-btn {
    margin-left: 10px;
    gap: 10px;
  }
  .swiper-btn-next {
    max-width: 20px;
  }
  .swiper-btn-prev {
    max-width: 20px;
  }
  .often__title {
    gap: 10px;
  }
  .often__title .swiper-btn {
    margin-left: 0;
  }
  .often__block {
    padding: 8px 0;
  }
  .often__item {
    gap: 5px;
    padding: 8px;
  }
  .often__item .text {
    font-size: 14px;
  }
  .often__item img {
    max-width: 80px;
  }
  .menu {
    margin-bottom: 10px;
  }
  .menu__swiper {
    padding: 10px !important;
  }
  .promo__item {
    width: 420px;
  }
  .promo__item .title {
    margin-bottom: 10px;
  }
  .promo__item .text {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .promo__item-button {
    padding: 8px 15px;
  }
  .promo__item-img {
    max-width: 150px;
  }
  .footer__bottom {
    order: -1;
  }
  .footer__bottom iframe {
    height: 250px;
  }
  .footer__row {
    gap: 10px;
    padding: 20px 0;
  }
  .footer__top {
    gap: 10px;
  }
  .footer__logo {
    max-width: 100px;
  }
  .footer__menu {
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 5px;
  }
  .footer__address {
    gap: 20px;
  }
  .footer__middle {
    gap: 10px;
    margin-top: 0;
    flex-direction: column;
    align-items: start;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__left {
    gap: 15px;
  }
  .basket {
    max-width: 360px;
  }
  .promotion__wrapper {
    gap: 10px;
  }
  .promotion__wrapper .menu__item {
    width: calc(50% - 5px);
  }
  .contact {
    padding-bottom: 60px;
  }
  .contact__bottom-leaf {
    right: -30px;
  }
  .contact .footer__bottom {
    order: 0;
  }
  .card {
    flex-direction: column;
    height: 90%;
    width: 90%;
    border-radius: 15px;
    max-height: 600px;
  }
  .card__extra {
    max-height: 100%;
  }
  .card__img {
    max-width: 100%;
    display: flex;
    align-items: center;
    max-height: 200px;
    justify-content: center;
  }
  .card__img img {
    height: 100%;
  }
  .card .text {
    font-size: 14px;
  }
  .card__option button {
    padding: 4px 8px;
  }
  .card__content {
    max-width: 100%;
    height: 100%;
    padding: 0 10px 10px 10px;
  }
  .card__content-add {
    margin-top: auto;
  }
  .card__content-sizes button {
    padding: 4px 8px;
  }
  .card__content-type button {
    padding: 4px 8px;
  }
  .card__content-extra button {
    padding: 4px 8px;
  }
  .card__content-info {
    font-size: 14px;
    max-height: 100px;
    overflow: auto;
    flex-shrink: 0;
  }
  .form {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .form__right {
    width: 100%;
  }
  .form__left {
    width: 100%;
  }
  .order__row {
    padding-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .often__title {
    justify-content: space-between;
  }
  .often__title-line {
    display: none;
  }
  .often__block {
    gap: 10px;
  }
  .error__title {
    font-size: 30px;
  }
  .error__img {
    max-width: 200px;
  }
  .form__address {
    display: flex;
    flex-direction: column;
  }
  .form__address-extra {
      flex-direction: column;
  }
  .form__right {
    padding: 12px;
  }
  .form__order-pay {
    gap: 10px;
  }
  .form__get {
    padding: 12px;
  }
  .promo__item {
    width: 270px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 15px;
  }
  .promo__item-about {
    align-items: center;
    text-align: center;
  }
  .promo__track {
    gap: 10px;
  }
  .menu__item:hover {
    box-shadow: none;
  }
  .menu__title {
    justify-content: space-between;
  }
  .menu__title-line {
    display: none;
  }
  .menu__line {
    display: block;
  }
  .menu__item-img {
    max-width: 200px;
    height: 200px;
  }
  .footer__middle {
    align-items: start;
    flex-direction: column;
    margin-top: 0;
    gap: 10px;
  }
  .footer__address {
    gap: 5px;
    flex-direction: column;
    align-items: start;
  }
  .footer__menu {
    gap: 20px;
    row-gap: 5px;
  }
  .footer__left {
    gap: 10px;
  }
  .footer__logo {
    max-width: 75px;
  }
  .footer__top {
    gap: 10px;
  }
  .footer__row {
    padding: 20px 0;
    gap: 10px;
  }
  .promotion__wrapper .menu__item {
    width: 100%;
  }
  .contact__info-text span:last-child {
    margin-top: 20px;
  }
  .contact__bottom {
    display: flex;
    flex-direction: column;
  }
  .contact__bottom-leaf {
    display: none;
  }
  .contact__bottom-left {
    padding: 20px;
  }
  .contact__bottom-middle {
    position: relative;
    padding: 20px;
  }
  .contact__bottom-middle-svg {
    display: block;
    position: absolute;
    top: 40px;
    right: 25px;
  }
  .contact__bottom-right {
    padding: 20px;
  }
  .contact__more-circle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .contact__more-circle svg {
    max-width: 20px;
  }
}