@import url("../libs/fancybox/jquery.fancybox.min.css");
@import url("../libs/swiper-bundle.min.css");
@import url("../libs/select2/select2.min.css");
@import url("../libs/flatpickr/flatpickr.min.css");
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=TikTok+Sans:opsz,wght@12..36,300..900&display=swap');
@font-face {
	font-family: 'Nunito';
	src: local('Nunito Regular'),
		url('../fonts/Nunito-Regular.woff') format('woff');    
	font-display: swap;
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Nunito';
	src: local('Nunito Medium'),
		url('../fonts/Nunito-Medium.woff') format('woff');    
	font-display: swap;
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Nunito';
	src: local('Nunito Semibold'),
		url('../fonts/Nunito-SemiBold.woff') format('woff');  
	font-display: swap;
	font-weight: 800;
	font-style: normal;
}

@font-face {
	font-family: 'Nunito';
	src: local('Nunito Bold'),
		url('../fonts/Nunito-Bold.woff') format('woff');    
	font-display: swap;
	font-weight: 800;
	font-style: bold;
}

@font-face {
	font-family: 'Nunito';
	src: local('Nunito ExtraBold'),
		url('../fonts/Nunito-ExtraBold.woff') format('woff');    
	font-display: swap;
	font-weight: 800;
	font-style: bold;
}


.grid-container-main-cat {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
.grid-item-main-cat {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.grid-item-main-cat img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 0.7;
  object-fit: cover;
}
.overlay-main-cat {
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 10px;
  background: #ea7108;
  color: #ffffff;
  font-size: 14px;
  border-radius: 8px;
}
/* Адаптивность */
@media(max-width: 1200px) {
  .grid-container-main-cat {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media(max-width: 768px) {
  .grid-container-main-cat {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media(max-width: 480px) {
  .grid-container-main-cat {
    grid-template-columns: repeat(2, 1fr);
  }
}

    .add__slider-wrapper {
    position: relative;
}
    .swiper-button-prev,
.swiper-button-next {
    color: #000; /* или нужный цвет */
    z-index: 999;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 28px !important;
    font-weight: 800;
}
.swiper-button-prev {
   ;
    background: #FF5D14;
    position: absolute;
    color: #fff;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    width: 42px !important;
    height: 42px !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important
;
    align-items: center !important;
    justify-content: center !important;
}

.swiper-button-next {
        
    background: #EA7108;
    position: absolute;
    color: #fff;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    cursor: pointer !important;
    width: 42px !important;
    height: 42px !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important
;
    align-items: center !important;
    justify-content: center !important;
}
/* Общий стиль для слайдера */
.slick-slider {
  position: relative!important;
}

.slick-prev:before, .slick-next:before {
    opacity: 1!important;
    color: #EA7108!important;
}

.slick-dots li.slick-active button:before {
    opacity: 1!important;
    color: #EA7108!important;
}

/* Стиль для стрелок */
.slick-prev, .slick-next {
  position: absolute!important;
  top: 50%!important;
  transform: translateY(-50%)!important;
  z-index: 2!important; /* Чтобы быть выше изображения */
  cursor: pointer!important;
  width: 16px!important; /* Ширина стрелки */
  height: 18px!important; /* Высота стрелки */
  /* background-color: rgba(0, 0, 0, 0.5)!important;  Фон стрелки */
  color: #fff!important; /* Цвет стрелки */
  border-radius: 50%!important; /* Круглая форма */
  display: flex!important;
  align-items: center!important;
  justify-content: center!important;
}

/* Стрелка слева */
.slick-prev {
  left: 10px!important; /* Смещение от левой границы изображения */
}

/* Стрелка справа */
.slick-next {
  right: 10px!important; /* Смещение от правой границы изображения */
}

/* Точки */
.slick-dots {
  position: absolute!important;
  bottom: 10px!important; /* Расположение внизу изображения */
  left: 50%!important; /* Центрирование */
  transform: translateX(-50%)!important;
  display: flex!important;
  justify-content: center!important;
  gap: 0px!important; /* Расстояние между точками */
  z-index: 2!important;
  list-style: none!important;
  padding: 0!important;
  margin: 0!important;
}

/* Точки: элементы списка */
.slick-dots li {
  display: inline-block!important;
  cursor: pointer!important;
}

/* Активная точка */
.slick-dots li.slick-active button {
  background-color: #EA7108!important; /* Цвет активной точки */
}

/* Неактивные точки */
.slick-dots li button {
  width: 8px!important; /* Размер точки */
  height: 8px!important; /* Размер точки */
  border-radius: 50%!important; /* Круглая форма */
  background-color: #EA7108bf!important; /* Цвет неактивных точек */
  border: none!important;
  padding: 0!important;
}

.slick-dots li button:before {
    display: none!important;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px!important;
}

::-webkit-input-placeholder {
  color: #040309;
}
::-moz-placeholder {
  color: #040309;
}
:-ms-input-placeholder {
  color: #040309;
}
::-ms-input-placeholder {
  color: #040309;
}
::placeholder {
  color: #040309;
}

::-moz-selection {
  background-color: #EA7108;
  color: #040309;
}

::selection {
  background-color: #EA7108;
  color: #040309;
}

input, textarea {
  outline: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

html {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  line-height: 130%;
}

body {
  color: #040309;
  padding: 0;
  margin: 0;
  min-width: 320px;
  position: relative;
  background: #ffffff;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
*::before, *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
  margin: 0;
  padding: 0;
}

input,
textarea,
button {
  font-family: inherit;
}

textarea {
  resize: none;
}

a,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: #040309;
}

p a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
p a:hover {
  color: #EA7108;
}

.page {
  overflow-x: hidden;
}

.container {
  width: 100%;
  padding-left: 42px;
  padding-right: 42px;
  margin-left: auto;
  margin-right: auto;
}
.container__content {
  width: 100%;
  padding-left: 78px;
}
.container--no-left-padding.fix-padding {
  padding-left: 42px;
}

.fix-padding {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding-left: 312px;
}

.input {
  min-height: 44px;
  background: #f7f7f7;
  border: 1px solid #090815;
  border-radius: 12px;
  padding: 10px 22px;
  color: #040309;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.input:focus {
  border-color: #EA7108;
}
.input:disabled {
  border-color: #282443;
  background: #282443;
}

.btn {
  padding: 13px 24px;
  border: 0;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  background: #EA7108;
  color: #ffffff;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.btn:disabled {
  cursor: not-allowed;
  background: #282443;
  color: #040309;
}
.btn--secondary {
  background: #EA7108;
  color: #ffffff;
}
.btn:hover {
  background: #040309;
  color: #ffffff;
}
.label {
  display: block;
}
.label__text {
  font-size: 12px;
  line-height: 130%;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}
.label__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 8px;
}
.label__flex .label__text {
  margin-bottom: 0;
}
.label__flex .form__error {
  margin-bottom: 0;
}
.label .input {
  width: 100%;
}
.label__input {
  display: block;
  width: 100%;
  position: relative;
}
.label__input .input {
  padding-right: 120px;
}
.label__btn {
  position: absolute;
  right: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #090815;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.label__btn--active {
  color: rgba(255, 255, 255, 0.5);
}
.label__btn:hover {
  color: #EA7108;
}

.title {
  font-size: 24px;
  line-height: 120%;
  font-weight: 800;
}

.form__agree {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.form__agree a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.form__error {
  display: block;
  color: #EA7108;
  font-size: 12px;
  line-height: 130%;
  font-weight: 400;
}

.header {
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  margin: auto;
  z-index: 90;
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  border-radius: 12px;
  color: #040309;
}
.header .logo {
  display: block;
}
.header .logo img {
  vertical-align: top;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  gap: 60px;
  margin: 0 40px;
  list-style: none;
}
.header__nav a {
  color: #040309;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__nav a:hover {
  color: #EA7108;
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__box {
  margin-left: 32px;
}
.header__box--active .header__modal {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.header__phone {
  text-align: right;
  font-weight: 800;
}
.header__phone-num {
  font-size: 18px;
  line-height: 140%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__phone-num:hover {
  color: #EA7108;
}
.header__phone-desc {
  margin-top: -1px;
  font-size: 12px;
  line-height: 130%;
}
.header__btn {
  position: relative;
  padding: 0;
  margin: 0;
  width: 36px;
  height: 36px;
  background: 0;
  border: 0;
  cursor: pointer;
  color: #040309;
}
.header__btn svg {
  width: 100%;
  height: 100%;
}
.catalog__box {
  margin-bottom: 40px;
  margin-top: 40px;
}
.catalog__box:last-child {
  margin-bottom: 0;
}
.navbar__btn-value {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #EA7108;
    border-radius: 50%;
    text-align: center;
    font-weight: 800;
    font-size: 9px;
    line-height: 110%;
    color: #040309;
}
.header__btn-value {
  width: 18px;
  height: 18px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #EA7108;
  border-radius: 50%;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  line-height: 110%;
  color: #fff;
}
.header__modal {
  position: absolute;
  right: 0;
  width: 609px;
  top: calc(100% + 58px);
  background: #f7f7f7;
  border-radius: 12px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 32px 36px;
}
.header__modal-sub {
  font-size: 24px;
  line-height: 120%;
  font-weight: 800;
}
.header__modal-close {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: 0;
  border: 0;
  padding: 0;
  color: #040309;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__modal-close:hover {
  color: #EA7108;
}
.header__modal-close svg {
  width: 100%;
  height: 100%;
}
.header__modal-footer {
  border-top: 1px solid #040309;
}
.header__cart {
  width: 379px;
}
.header__cart-body {
  padding: 32px 36px;
}
.header__cart-sub {
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}
.header__cart-items {
  margin-top: 19px;
  list-style: none;
}
.header__cart-add {
  border-top: 1px solid #040309;
  padding: 31px 0 18px 36px;
}
.header__cart-slider {
  margin-top: 12px;
}
.header__cart-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__cart-footer {
  border-top: 1px solid #040309;
  padding: 42px 36px 32px;
}
.header__cart-footer .btn {
  width: 100%;
  margin-top: 10px;
  padding: 9px;
}
.header__cart-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}
.header__cart-total:last-child {
  margin-bottom: 0;
}
.header__cart-total b {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
}
.header__cart-total span {
  text-align: right;
}
.header-cart__item {
  margin-bottom: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: auto;
}
.header-cart__item:last-child {
  margin-bottom: 0;
}
.header-cart__item-image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  border-radius: 16px;
  margin-right: 12px;
}
.header-cart__item-title {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  margin-bottom: 6px;
  display: block;
}
.header-cart__item-price {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: auto;
}
.header-cart__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-cart__item-bottom .header-cart__item-price {
  margin-left: 8px;
}
.header-cart__item .quantity__input {
  font-size: 14px;
  width: 24px;
}
.header__search-form {
  padding: 28px 36px 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__search-form .btn {
  margin-left: 24px;
  min-width: 148px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__search-form .input {
  width: 100%;
  min-height: 44px;
}
.header__profile-form {
  padding: 36px 36px 40px;
}
.header__profile-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.header__profile-flex .btn {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 24px;
}
.header__profile-flex .label {
  width: 100%;
}
.header__profile-send {
  margin-left: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__profile-send ::-webkit-input-placeholder {
  color: #040309;
}
.header__profile-send ::-moz-placeholder {
  color: #040309;
}
.header__profile-send :-ms-input-placeholder {
  color: #040309;
}
.header__profile-send ::-ms-input-placeholder {
  color: #040309;
}
.header__profile-send ::placeholder {
  color: #040309;
}
.header__profile .form__error {
  margin-top: 12px;
}
.header__profile .form__agree {
  margin-top: 24px;
}
.header__profile .form__error ~ .form__agree {
  margin-top: 8px;
}
.header__profile .input-code {
  width: 86px;
  height: 44px;
  text-align: center;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: #040309;
  border-radius: 12px;
  background: #fff;
  border: 2px solid #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__profile .input-code.invalid {
  border-color: #EA7108;
}

    .promo {
    width: 100%;
    padding: 0 42px;
    box-sizing: border-box;
    position: relative;
        margin-top: 120px;
}

.promo__slider {
    width: 100%;
}

.promo__slide {
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    height: 600px; /* Дефолт для десктопа */
}

.promo__slide--mobile {
    display: none; /* Мобильные скрыты по умолчанию */
}

/* Стили текста */
.promo__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #040309;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo__title {
    font-size: 48px;
    margin-bottom: 20px;
}

.promo__desc {
    font-size: 20px;
    line-height: 1.5;
}

.promo__slide {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
}
/*.promo__slide::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(6, 0, 15, 0.7);
  z-index: -1;
}*/
.promo__slide .container__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 78px;
}
.promo__content {
  padding: 150px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}
.promo__title {
  text-transform: uppercase;
  font-size: 64px;
  line-height: 110%;
  font-weight: 300;
}
.promo__desc {
  margin-top: 13px;
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
}
.promo__dots {
position: absolute;
    width: 100%;
    bottom: 20px;
    height: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    z-index: 10;
    align-items: flex-end;
}
.promo__dot {
  width: 12px;
  height: 12px;
  cursor: pointer;
  position: relative;
}
.promo__dot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.promo__dot--active::before {
  width: 10px;
  height: 10px;
  background: #EA7108;
}

.popular__main .swiper {
  padding: 10px;
  z-index: 11;
}

.menu {
  position: absolute;
  left: 42px;
  top: 156px;
  bottom: 30px;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 312px;
  min-height: auto;
  height: auto;
  max-height: calc(100vh - 200px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  visibility: visible;
}
.menu--hide {
  position: absolute;
}
.menu.fixed {
  position: fixed;
}
.menu.bottom {
  position: absolute;
  bottom: 30px;
  top: auto;
}
.menu--active .menu__main {
  background: #090815;
  width: 100%;
  border-radius: 12px;
  z-index: 99;
}
.menu--active {
  z-index: 99;
}
.menu--active .menu__btn {
  width: 100%;
  background: #090815;
  opacity: 0;
}
.menu__main {
  width: 0;
  border-radius: 21px;
  padding-bottom: 20px;
  background: #fff;
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 10;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 20px 30px 20px 32px;
  border: 0;
  background: #f7f7f7;
  color: #040309;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-transform: uppercase;
  cursor: pointer;
}
.menu .icon-arrow {
  width: 22px;
  height: 22px;
}
.menu__body {
  height: 100%;
  overflow: hidden;
}
.menu__list {
  height: 100%;
  overflow-y: auto;
  padding-bottom: 92px;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: #EA7108 #090815;
}
.menu__item {
  border-bottom: 1px solid #1D1A34;
}
.menu__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 14px 24px 14px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.menu__link:hover {
  color: #EA7108;
}
.menu__link img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  margin-right: 16px;
}
.menu__link--active {
  color: #EA7108;
}
.menu__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 30px 7px;
  background: #fff;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.menu__btn .icon-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.menu__btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(-90deg) translate(-50%, -50%);
  -ms-transform: rotate(-90deg) translate(-50%, -50%);
  transform: rotate(-90deg) translate(-50%, -50%);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  font-weight: 800;
  font-size: 18px;
  line-height: 120%;
  text-transform: uppercase;
  color: #1D1A34;
}
.menu ::-webkit-scrollbar-track {
  background: #090815;
}
.menu ::-webkit-scrollbar-thumb {
  background: #EA7108;
}

.quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.quantity__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: none;
  padding: 0;
  background: #EA7108;
  cursor: pointer;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.quantity__btn:last-child {
  background: #EA7108;
}
.quantity__btn svg {
  width: 10px;
  height: 10px;
}
.quantity__input {
  display: block;
  width: 34px;
  background: 0;
  border: none;
  text-align: center;
  color: #040309;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}

.select2-container {
  width: auto !important;
}
.select2-container--default .select2-selection--single {
  background: 0;
  border: 0;
  border-radius: 0;
  height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #040309;
  padding: 0;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #EA7108;
}
.select2-container--default .select2-results__option {
  padding: 7px 10px;
}
.select2-container--default .select2-results__option--selected {
  background: #EA7108;
}
.select2-selection__arrow {
  display: none;
}
.select2-search {
  display: none;
}
.select2-dropdown {
  border-radius: 16px;
  border: 1px solid #EA7108;
  border-top: 1px solid #EA7108;
  background: #090815;
  padding: 10px 0;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
}
.select2-dropdown--below {
  border-top: 1px solid #EA7108;
  border-radius: 16px;
}

.icon-sort {
  display: inline-block;
  width: 20px;
  height: 14px;
  background: #fff url("../images/icons/sort.svg") center no-repeat;
}

.attention {
  padding: 100px 0;
}
.attention__title {
  margin-bottom: 15px;
  font-weight: 800;
  font-size: 20px;
  line-height: 120%;
  text-align: center;
}
.attention__text {
  text-align: center;
  margin-bottom: 15px;
}
.attention .gift {
  margin-top: 120px;
}

.gift {
  border-radius: 12px;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 36px;
}
.gift__info {
  width: 213px;
  margin-right: 36px;
  text-align: left;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.gift__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 120%;
}
.gift__desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.gift__image {
  width: 300px;
  border-radius: 12px;
}
.gift__right {
  width: 534px;
  margin-left: 36px;
}
.gift__form {
  padding-top: 16px;
}
.gift__form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.gift__form .label {
  width: 366px;
}
.gift__form .btn {
  margin-left: 24px;
}
.gift .form__agree {
  margin-top: 10px;
  text-align: left;
  color: #040309;
}
.gift__success {
  text-align: left;
  margin-left: 36px;
  color: #040309;
}
.gift__success-title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
  margin-bottom: 8px;
}
.gift__success-text {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  text-align: left;
  margin-bottom: 0;
}

.footer {
  padding: 80px 0 0;
  background: #f7f7f7;
}
.footer .container {
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__left {
  max-width: 473px;
}
.footer__logo {
  display: block;
}
.footer__info {
  margin-top: 56px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
.footer__info p {
  margin-bottom: 16px;
}
.footer__info p:last-child {
  margin-bottom: 0;
}
.footer__box {
  margin-bottom: 60px;
}
.footer__box:last-child {
  margin-bottom: 0;
}
.footer__sub {
  font-weight: 800;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 24px;
}
.footer__nav {
  list-style: none;
}
.footer__nav li {
  margin-bottom: 16px;
}
.footer__nav li:last-child {
  margin-bottom: 0;
}
.footer__nav a {
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__nav a:hover {
  color: #EA7108;
}
.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__socials-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #040309;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  margin-right: 24px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__socials-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 12px;
  width: 40px;
  height: 40px;
  margin-right: 24px;
  margin-bottom: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer__socials-item:hover {
  border-color: #EA7108;
  color: #EA7108;
}
.footer__socials-item:last-child {
  margin-right: 0;
}
.footer__socials-item .icon-vk {
  width: 26px;
}
.footer__socials-item .icon-wa {
  width: 26px;
}
.header__socials-item:hover {
  border-color: #EA7108;
  color: #EA7108;
}
.header__socials-item:last-child {
  margin-right: 0;
}
.header__socials-item .icon-vk {
  width: 26px;
}
.header__socials-item .icon-wa {
  width: 26px;
}
.footer__bottom {
  margin-top: 58px;
  padding: 24px 0;
  border-top: 1px solid #040309;
}
.footer__bottom .container {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer .copyright {
  margin-right: 108px;
}
.footer .dev {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.footer .dev:hover {
  color: #EA7108;
}

.main {
  padding: 82px 0 100px;
  overflow: hidden;
  position: relative;
}
.main--no-padding {
  padding: 0;
}
.main .container {
  position: relative;
}
.main__content {
  position: relative;
  z-index: 20;
}
.main__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.main .menu {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 38px;
}
.main__content {
  padding-top: 42px;
  width: 100%;
}
.main .menu + .main__content {
  width: calc(100% - 439px);
}
.main .title {
  margin-bottom: 40px;
  margin-top: 40px;
}
.main__bar {
  padding: 24px 24px;
  margin-top: 10px;
  border-radius: 12px;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: #040309;
}

.catalog {
  padding-bottom: 50px;
}
.catalog__filter .reset {
  margin-left: auto;
  color: #EA7108;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}
.catalog__filter .filter-close {
  margin-left: auto;
}
.catalog__filter .sort {
  margin-left: 80px;
}
.catalog__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog__tab {
  margin-right: 80px;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  color: #040309;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog__tab:hover {
  color: #EA7108;
}
.catalog__tab--active {
  color: #EA7108;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.catalog__tab:last-child {
  margin-right: 0;
}
.catalog__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr 60px 1fr 60px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 60px;
  margin-top: 50px;
}
.catalog__item {
  position: relative;
  padding-top: 0px;
  width: 100%;
}
.catalog__item--add .catalog__item-body {
  border-color: #EA7108;
}
.catalog__item-body:hover {
  border-color: #EA7108;
  z-index:1;
}
.catalog__item:hover .catalog__item-image::before {
  opacity: 0;
}
.catalog__item:hover .catalog__item-image::after {
  opacity: 0;
}
.catalog__item-new {
  position: absolute;
    left: 20px;
    top: 20px;
  font-weight: 800;
  font-size: 10px;
  line-height: 120%;
  text-transform: uppercase;
  z-index:1;
          background: #38a158;
        padding: 4px 4px 3px 4px;
        color: #040309;
        border-radius: 4px;
}
.catalog__item-btns {
  position: absolute;
    left: 20px;
    top: 20px;
    z-index:1;
}
.catalog__item-btn {
  display: block;
  border: 0;
  background: 0;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
    z-index:99;
        background-color: #040309;
        border-radius:30px;
}
.catalog__item-fire {
  background-image: url("../images/icons/fire.svg");
margin-bottom:4px;
}
.catalog__item-sale {
  background-image: url("../images/icons/sale.svg");

}
.catalog__item-favorite {
  background-image: url("../images/icons/favorite.svg");

}
.catalog__item-favorite:hover {
  background-image: url("../images/icons/favorite2.svg");
}
.catalog__item-favorite--active {
  background-image: url("../images/icons/favorite2.svg");
}
.catalog__item-favorite--active:hover {
  background-image: url("../images/icons/favorite.svg");
}
.catalog__item-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
  width: calc(100% - 1px);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.catalog__item-image::before {
  content: "";
  position: absolute;
  width: 2.656px;
  height: 2.292px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  background: url("../images/icons/heart.svg") center/cover no-repeat;
  z-index: 1;
}
.catalog__item-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  background: rgba(6, 0, 15, 0.7);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog__item-image img {
    width: 100%;
    vertical-align: top;
    height: auto;
    object-fit: cover;
    background: #f7f7f7;
}
.catalog__item-body {
  margin-top: 0px;
  padding: 20px 20px 20px;
  border-radius: 0 0 8px 8px;
  background: #f7f7f7;
  border: 0px solid #1d1a34;
  min-height: 140px;
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.catalog__item-title {
  text-align: center;
  font-size: 18px;
  line-height: 120%;
  font-weight: 800;
}
.catalog__item-desc {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: #1d1a34;
  min-height: 2.3vw;
 
}
.catalog__item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 17px;
}
.catalog__item-price {
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 120%;
    font-weight: 800;
    align-content: center;
    justify-content: center;
}
.catalog__item-price .old {
  margin-right: 10px;
  margin-left: 10px;
  margin-top: 1px;
  font-size: 12px;
  line-height: 130%;
  font-weight: 400;
  position: relative;
}
.catalog__item-price .old::before {
  content: "";
  position: absolute;
    left: 0px;
    top: 7px;
    width: 90%;
  height: 1px;
  border-radius: 10px;
  background: #040309;
  -webkit-transform: rotate(-21deg);
  -ms-transform: rotate(-21deg);
  transform: rotate(-21deg);
}
.catalog__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.catalog__quantity .quantity__input, .catalog__quantity .quantity__btn--minus {
  display: none;
}
.catalog .quantity__input {
  width: 34px;
  text-align: center;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
}
.catalog .quantity__btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #EA7108;
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog .quantity__btn svg {
  width: 14px;
  height: 14px;
}
.catalog .quantity__btn:hover {
  background: #040309;
}
.catalog .quantity__btn--minus {
  background: rgba(126, 134, 158, 0.25);
}
.catalog .quantity--active .quantity__input {
  display: block;
}
.catalog .quantity--active .quantity__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sort__text {
  margin-right: 6px;
}
.sort__type {
  border: 0;
  width: 20px;
  height: 14px;
  margin-left: 13px;
  background: url("../images/icons/sort.svg") center no-repeat;
  cursor: pointer;
}

.filter-close {
  display: none;
  padding: 0;
  border: 0;
  background: 0;
  cursor: pointer;
  color: #040309;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.filter-close:hover {
  color: #EA7108;
}
.filter-close svg {
  width: 24px;
  height: 24px;
}

.add {
  padding: 30px 0 60px 0px;
}
.add__content {
  padding: 26px 24px;
  background: #f7f7f7;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
.add__slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
/*.add__slide::before {
  content: "";
  position: absolute;
  left: -46px;
  top: -10px;
  width: 1px;
  height: calc(100% + 20px);
  background: #090815;
} */
.add__slide-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 12px;
}
.add__slide-image img {
  width: 100%;
}
.add__slide-title {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400; 
  text-align: center;
  margin: 10px 0px 10px 0px;
}
.add__slide-title a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.add__slide-title a:hover {
  color: #EA7108;
}
.add__slide-box {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    margin-top: 0px;
    padding: 0px 0px 0px;
    border-radius: 0 0 8px 8px;
    background: #f7f7f7;
    border: 0px;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
}
.add__slide-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    flex-direction: column;

}
.add__slide .catalog__item-price {
  font-size: 16px;
  line-height: 130%;
}
.add__slide .catalog__item-price span::before {
  height: 1px;
  top: 6px;
  left: -6px;
  width: calc(100% + 12px);
}
.add__slide .quantity__input {
  font-size: 16px;
  width: 24px;
  margin-top: 10px;
}
.add__slide .quantity__btn {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #EA7108;
  margin-top: 10px;
}
.add__slide .quantity__btn:hover {
  background: #1D1A34;
  color:#fff;
}
.add__slide .quantity__btn--minus {
  background: #EA7108;
}
.add__slide .quantity--active .quantity__btn--minus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.add__slide .quantity--active .quantity__input {
  display: block;
}

.breadcrumbs {
  margin-bottom: 30px;
}
.breadcrumbs__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.breadcrumbs__link:hover {
  color: #EA7108;
}
.breadcrumbs__icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.product {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.product__image {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 539px;
  margin-right: 60px;
  border-radius: 12px;
  overflow: hidden;
}
.product__image img {
  width: 100%;
}
.product__info {
  padding-top: 24px;
}
.product__title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
}
.product__flex {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product__quantity .quantity__input, .product__quantity .quantity__btn--minus {
  display: none;
}
.product__quantity.quantity--active .quantity__input {
  display: block;
}
.product__quantity.quantity--active .quantity__btn--minus {
  display: flex;
}
.product__quantity .quantity__btn {
  background: #ea7108;
}
.product__quantity .quantity__btn svg {
  width: 14px;
  height: 14px;
}
.product__price {
  margin-left: 16px;
}
.product .catalog__item-price {
  font-size: 20px;
}
.product__box {
  margin-top: 24px;
}
.product__sub {
  font-size: 16px;
  line-height: 140%;
  font-weight: 800;
  color: #040309;
}
.product__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.product__bottom {
  margin-top: 22px;
  padding: 16px 0 0;
  color: #1D1A34;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.product__chars {
  list-style: none;
  margin-top: 4px;
  margin-bottom: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.product__text {
  height: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.product__text--active {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.product .btn--show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 9px 23px;
}
.product .btn--show i {
  margin-left: 8px;
  width: 10px;
  height: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: url("../images/icons/down.svg") center no-repeat;
}
.product .btn--opened {
  margin-top: 24px;
}
.product .btn--opened i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.product__add {
  margin-top: 24px;
}
.product__add .product__sub {
  font-size: 18px;
}
.product__add-items {
  margin-top: 16px;
  border-radius: 16px;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.product__add .add__slide {
  width: 15%;
}
.product__add .add__slide::after, .product__add .add__slide::before {
  content: none;
}
.product__add .add__slide .catalog__item-price {
  font-size: 14px;
}
.product__add .add__slide .catalog__item-price span {
  margin-left: 8px;
  font-size: 10px;
}
.product__add .add__slide .catalog__item-price span::before {
  width: 15%;
}
.product__add .quantity__btn {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.product__add .quantity__btn svg {
  width: 10px;
  height: 10px;
}
.product__add .quantity__input {
  width: 24px;
  font-size: 14px;
}
.product__btns {
  position: absolute;
  left: 12px;
  top: 8px;
  text-align: center;
  padding: 8px 4px;
}
.product__new  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    height: 32px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #69B42D;
    padding: 4px 8px 4px 8px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product__fire {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    height: 32px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #EA7108;
    padding: 4px 8px 4px 8px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product__sale  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    height: 32px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #E73D00;
    padding: 4px 8px 4px 8px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product__favorite  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    height: 32px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #EA7108;
    padding: 4px 8px 4px 8px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.radio {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.radio input {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  clip: rect(0, 0, 0, 0);
}
.radio input:checked + .radio__box .radio__icon {
  border-color: #EA7108;
}
.radio input:checked + .radio__box .radio__icon::before {
  opacity: 1;
}
.radio__box {
  position: relative;
  display: -webkit-box;
  border: 1px solid #1D1A34;
    border-radius: 12px;
    padding: 12px;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.radio__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #040309;
  margin-right: 12px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.radio__icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: #EA7108;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.radio__text {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.radio__text a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.radio__text a:hover {
  color: #EA7108;
}

.checkbox {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.checkbox input {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  clip: rect(0, 0, 0, 0);
}
.checkbox input:checked + .checkbox__icon {
  border-color: #EA7108;
  background: #EA7108;
}
.checkbox input:checked + .checkbox__icon::before {
  opacity: 1;
}
.checkbox__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border-color: #EA7108;
  background: #EA7108;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.checkbox__icon::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 9px;
  background: url("../images/icons/check.svg") center no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
.checkbox__text {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.checkbox__text a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.checkbox__text a:hover {
  color: #EA7108;
}

.nav-mobile {
  /* display: none; */

      display: block;
    margin-top: 34px;
    padding: 0;
    border-radius: 8px;
    /*background: #f7f7f7;*/
    position: relative;
}
 .nav-mobile__slide {
    width: auto;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 30px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 800;
    color: #040309;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #f7f7f7;
    border-radius: 8px
  }
  .nav-mobile__slide:hover {
    color: #EA7108;
  }
  .nav-mobile__slide.active {
    color: #EA7108;
    font-size: 16px;
    font-weight: 800;
  }
.nav-filter {
  display: none;
  margin-top: 24px;
}

/*.catalog--mob {
  display: none;
}*/

.add--mob {
  display: none;
}

.navbar {
  display: none;
}

.news {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 50px;
}
.news__item {
  width: 100%;
  background: #090815;
  border-radius: 12px;
}
.news__btn {
    border-radius: 4px;
    border: none;
    background: #EA7108;
    cursor: pointer;
    color: #040309;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}
.news__btn:hover {
    background: #ff5e14c9;
}
.news__item-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 224px;
  border-radius: 12px;
  overflow: hidden;
}
.news__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.news__item-body {
  text-align: center;
  padding: 16px 24px 24px;
}
.news__item-date {
  font-size: 12px;
  line-height: 130%;
  font-weight: 400;
  color: #d9d9d9;
}
.news__item-sub {
  margin-top: 4px;
  font-size: 16px;
  line-height: 120%;
  font-weight: 800;
}
.news__item-sub a {
  color: #040309;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.news__item-sub a:hover {
  color: #EA7108;
}

.article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 60px;
  background: #090815;
  border-radius: 12px;
}
.article__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 12px;
  margin-right: 60px;
  width: 427px;
  flex-shrink: 0;
}
.article__info {
  padding-top: 24px;
}
.article__date {
  color: #EA7108;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  margin-bottom: 12px;
}
.article__sub {
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
  margin-bottom: 12px;
}
.article__text {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}

.work-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.work-time__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 20px;
}
.work-time__text {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}

.delivery {
  margin-top: 50px;
  padding-bottom: 100px;
}
.delivery .map {
  position: relative;
  border-radius: 12px;
  height: 590px;
  overflow: hidden;
  margin-bottom: 100px;
}
.delivery .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.delivery__item {
  margin-bottom: 100px;
}
.delivery__item:last-child {
  margin-bottom: 0;
}
.delivery__title {
  font-size: 36px;
  line-height: 120%;
  font-weight: 800;
  margin-bottom: 44px;
}
.delivery__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 80px 170px;
}
.delivery__box {
  max-width: 420px;
}
.delivery__sub {
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
  margin-bottom: 8px;
}
.delivery__text {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}

.about {
  margin-top: 60px;
  padding-bottom: 100px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.about p {
  margin-bottom: 25px;
}
.about p:last-child {
  margin-bottom: 0;
}

.profile-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.logout {
  color: #040309;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  text-align: right;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.logout:hover {
  color: #EA7108;
}

.profile {
  margin-top: 49px;
}
.profile-slider {
  display: none;
}
.profile-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}
.profile-tab {
  position: relative;
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
  color: #040309;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.profile-tab:focus, .profile-tab--active {
  color: #EA7108;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
.profile-tab:hover {
  color: #EA7108;
}
.profile-tab small {
  position: absolute;
  right: -18px;
  top: -9px;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #EA7108;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
.profile__sub {
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
}
.profile__item {
  display: none;
}
.profile__item--active {
  display: block;
}
.profile__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.profile__column {
  width: 100%;
  margin-left: 258px;
}
.profile__column--small {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 330px;
  margin-left: 0;
}
.profile__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 36px;
}
.profile .btn {
  padding: 9px 18px;
  font-size: 14px;
  line-height: 130%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
    background: #EA7108;
  color: #ffffff;
}
.profile .btn:hover {
  background: #040309;
  color: #ffffff;
}
.profile__box {
  margin-top: 38px;
}
.profile__box .label {
  margin-bottom: 24px;
}
.profile__address {
  margin-bottom: 24px;
  padding-bottom: 24px;
}
.profile__address:last-child {
  margin-bottom: 0;
}
.profile__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.profile__remove {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3px;
  background: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: #EA7108;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.profile__remove:hover {
  color: #040309;
}
.profile__remove-icon {
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.profile .input {
  background: #f7f7f7;
  border-color: #1D1A34;
}
.profile__checkbox {
  margin-top: 35px;
}
.profile__checkbox .checkbox:not(:last-child) {
  margin-bottom: 16px;
}
.profile__save {
  margin-top: 53px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-start;
}
.profile__cancel {
  margin-right: 24px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  background: 0;
  border: none;
  padding: 0;
  color: #040309;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.profile__cancel:hover {
  color: #EA7108;
}
.profile .label__date .input {
  padding-right: 35px;
}
.profile .quantity--active .quantity__btn--minus {
  display: flex;
}
.profile .quantity--active .quantity__input {
  display: block;
}
.profile .quantity__btn:last-child {
  background: #fff;
}
.label__date {
  width: 190px;
  position: relative;
}
.label__date::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("../images/icons/down2.svg") center no-repeat;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.label__date::after:has(.active)::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.label__date::after .input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 35px;
}

.flatpickr-day:hover, .flatpickr-day.selected {
  color: #040309;
  background: #EA7108;
  border-color: #EA7108;
}

.orders {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 60px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.orders__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #1D1A34;
  font-size: 18px;
  line-height: 140%;
}
.orders__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #1D1A34;
}
.orders__row:last-child {
  border-bottom: none;
}
.orders__column {
  text-align: center;
  border-right: 1px solid #1D1A34;
  padding: 12px 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.orders__column:first-child {
  width: 18.3%;
}
.orders__column:nth-child(2) {
  width: 15.7%;
}
.orders__column:nth-child(3) {
  width: 12.93%;
}
.orders__column:last-child {
  border-right: none;
  text-align: left;
}
.orders__short {
  display: none;
}

.cart {
  padding-bottom: 100px;
  padding-top: 30px;
}
.cart-add {
  padding-bottom: 50px;
}
.cart-add .title {
  font-size: 32px;
  margin-bottom: 30px;
}
.cart-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart-bar__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart-bar__radio .radio {
  margin-right: 36px;
}
.cart-bar__radio .radio:last-child {
  margin-right: 0;
}
.cart-bar__radio .radio__text {
  font-size: 20px;
  font-weight: 800;
}
.cart__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart__column {
  width: 597px;
}
.cart__column--order {
  width: 624px;
}
.cart__sub {
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
  margin-bottom: 24px;
}
.cart__box {
  margin-bottom: 36px;
}
.cart__box--restaurant {
  /*display: none;*/
}
.cart__box .cart__sub {
  margin-bottom: 24px;
}
.cart__box .input {
  background: #ffffff;
}
.cart__box--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart__box--flex .cart__sub {
  margin-bottom: 0;
}
.cart__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 18px;
  max-width: 516px;
}
.cart__group:last-child {
  margin-bottom: 0;
}
.cart__group .label,
.cart__group .checkbox {
  width: calc(50% - 26px);
}
.cart__group .checkbox {
  margin-top: 25px;
}
.cart__delivery-group {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
.cart__delivery-group .label:first-child {
  width: 129px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.cart__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart__time .label {
  margin-right: 36px;
}
.cart__time .label--date {
  width: 101px;
}
.cart__time .label--time {
  width: 115px;
}
.cart__time .label__date {
  width: auto;
  display: block;
}
.cart__time .label__date .input {
  width: 100%;
  padding-right: 25px;
}
.cart__comment {
  resize: none;
  display: block;
  margin-top: -8px;
  max-width: 520px;
  width: 100%;
  height: 100px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #1D1A34;
  padding: 18px 24px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  color: #040309;
}
.cart__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 16px;
}
.cart__quantity .quantity__input {
  width: 24px;
  font-size: 14px;
}
.cart__radios {
  margin-top: -8px;
  margin-bottom: 36px;
}
.cart__radios .radio {
  display: block;
  margin-bottom: 16px;
}
.cart__radios .radio:last-child {
  margin-bottom: 0;
}
.cart__checkboxes {
  margin-bottom: 36px;
}
.cart__checkboxes .checkbox {
  margin-bottom: 16px;
}
.cart__checkboxes .checkbox:last-child {
  margin-bottom: 0;
}
.cart__final {
  width: 100%;
}
.cart__final .btn {
  padding: 8px 15px;
  width: 250px;
  font-size: 14px;
}
.cart__final-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 130%;
}
.cart__order .cart__sub {
  margin-bottom: 24px;
}
.cart__order-head {
  padding-bottom: 12px;
}
.cart__order-btn {
  position: relative;
  background: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  padding-right: 22px;
  color: #040309;
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
}
.cart__order-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background: url("../images/icons/down2.svg") center/contain no-repeat;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.cart__order-btn--active::after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.cart__order-body {
  opacity: 1;
  visibility: visible;
  height: auto;
}
.cart__order-body--active {
  height: 0;
  visibility: hidden;
  opacity: 0;
}
.cart__order-list {
  padding: 22px 0;
  list-style: none;
  border-top: 1px solid #1D1A34;
}
.cart__order-item {
  margin-bottom: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.cart__order-item:last-child {
  margin-bottom: 0;
}
.cart__order-name {
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
}
.cart__order-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cart__order-price {
  margin-left: 5px;
  width: 70px;
  font-size: 14px;
  line-height: 130%;
  font-weight: 400;
  text-align: right;
}
.cart__order-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cart__order-quantity .quantity__input {
  width: 24px;
  font-size: 14px;
}
.cart__order-total {
  margin-top: 12px;
}
.cart__subline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 20px;
  line-height: 120%;
  font-weight: 800;
}
.cart__subline span {
  font-size: 18px;
  line-height: 140%;
  font-weight: 400;
}
.cart__subline .bold {
  font-weight: 800;
}
.cart__free {
  margin-top: 36px;
}
.cart__sum {
  padding: 23px 0;
  margin-top: 12px;
  border-top: 1px solid #1D1A34;
  border-bottom: 1px solid #1D1A34;
}
.cart__promo {
  padding: 36px 0;
  border-bottom: 1px solid #1D1A34;
}
.cart__promo .input {
  min-height: 44px;
  width: 240px;
  background: #ffffff;
}
.cart__info {
  padding-top: 34px;
}
.cart__info .cart__subline {
  margin-bottom: 23px;
}
.cart__info .cart__subline:last-child {
  margin-bottom: 0;
}
.cart__info .cart__total {
  margin-top: 33px;
  font-weight: 800;
}
.cart__info .cart__total span {
  font-weight: 800;
  font-size: 20px;
}

@media screen and (max-width: 1660px) {
  .catalog__items {
    gap: 30px;
  }
  .fix-padding .gift__image {
    width: 250px;
  }
  .fix-padding .gift__right {
    width: 410px;
    margin-left: 20px;
  }
  .fix-padding .gift__info {
    width: 200px;
    margin-right: 20px;
  }
  .product__image {
    width: 470px;
    margin-right: 40px;
  }
  .profile__column {
    margin-left: 25px;
  }
  .profile__column--small {
    margin-left: 0;
  }
  .order {
    padding: 40px;
  }
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1290px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .container--no-left-padding.fix-padding {
    padding-left: 15px;
  }
  .container__content {
    padding-left: 67px;
  }
  .fix-padding {
    padding-left: 300px;
  }
  .menu {
    left: 15px;
  }
  .header {
    top: 24px;
  }
  .header__content {
    padding: 10px 32px;
  }
  .header__nav {
    gap: 20px;
  }
  .header__nav a {
    font-size: 14px;
  }
  .header .logo {
    width: 234px;
  }
  .header .logo img {
    width: 100%;
  }
  .header__phone-num {
    font-size: 16px;
  }
  .promo .menu {
    left: 75px;
  }
  .promo__content {
    padding: 0;
  }

  .promo__title {
    font-size: 48px;
  }
  .promo__desc {
    margin-top: 8px;
    font-size: 18px;
  }
  .promo__slide {
    height: 480px!important;
}
.promo {
  padding: 0 18px!important;
}
  .menu {
    width: 300px;
  }
  .add__slide {
    width: 258px;
  }
  .add__slide::before {
    left: -32px;
  }
  .catalog__items {
    max-width: 100%;
    gap: 30px;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
  .main__content {
    padding-top: 0;
  }
  .gift__info {
    width: 183px;
    margin-right: 20px;
  }
  .gift__right {
    margin-left: 20px;
    width: 500px;
  }
  .gift__image {
    width: 250px;
  }
  .fix-padding .gift {
    padding: 36px 24px;
  }
  .fix-padding .gift__info {
    width: 130px;
    margin-right: 24px;
  }
  .fix-padding .gift__image {
    width: 240px;
  }
  .fix-padding .gift__right {
    margin-left: 24px;
    width: 310px;
  }
  .fix-padding .gift__title {
    font-size: 16px;
  }
  .fix-padding .gift__desc {
    font-size: 12px;
  }
  .fix-padding .gift__success-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .fix-padding .gift__success-text {
    font-size: 12px;
  }
  .fix-padding .gift__form .btn {
    font-size: 12px;
    padding: 13px;
    margin-left: 16px;
  }
  .fix-padding .gift__form .label__text {
    font-size: 12px;
  }
  .product {
    padding: 52px;
  }
  .product__image {
    width: 356px;
    margin-right: 32px;
  }
  .product__add-items {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-radius: 24px;
  }
  .product__add .add__slide {
    width: 15%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .product__add .add__slide-image {
    width: 50px;
  }
  .product__add .add__slide-title {
    font-size: 12px;
  }
  .product__add .add__slide-bottom {
    margin-top: 4px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .product__add .catalog__quantity {
    width: 100%;
    margin-top: 8px;
  }
  .product__add .catalog__quantity .quantity__btn, .product__add .catalog__quantity .quantity__input {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .breadcrumbs {
    margin-bottom: 20px;
  }
  .article {
    padding: 52px;
  }
  .article__image {
    width: 358px;
    margin-right: 30px;
  }
  .news {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .delivery__group {
    gap: 80px;
  }
  .profile-bar {
    padding: 32px;
  }
  .profile-tabs {
    gap: 20px;
  }
  .profile-tab {
    font-size: 14px;
  }
  .profile__group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }
  .profile__group .label {
    margin-bottom: 0;
  }
  .profile__remove {
    margin-top: 24px;
  }
  .profile__save {
    margin-top: 80px;
  }
  .logout {
    font-size: 14px;
  }
  .orders {
    padding: 36px;
    font-size: 12px;
    line-height: 130%;
  }
  .orders__head {
    font-size: 16px;
  }
  .profile-bar {
    display: none;
  }
  .profile-slider {
    display: block;
    border-radius: 24px;
    background: #090815;
    padding: 30px;
  }
  .profile-slider .logout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    padding: 0 30px;
    text-align: left;
  }
  .profile-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    padding: 0 30px;
    text-align: left;
  }
  .profile-tab small {
    position: relative;
    right: -5px;
  }
  .cart__column {
    width: 440px;
  }
}
@media screen and (max-width: 1170px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
    max-width: 1024px;
  }
    .promo__slide {
    height: 360px!important;
}
  .container__content {
    max-width: 100%;
    padding-left: 0;
  }
  .header {
    top: 18px;
  }
  .header__content {
    padding: 14px 32px 14px 32px;
  }
  .header__btn {
    width: 36px;
    height: 36px;
  }
  .header__btn-value {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }
  .header__box {
    margin-left: 44px;
  }
  .header__nav {
    display: none;
  }
  .header__phone {
    display: none;
  }
  .header .logo {
    width: 234px;
  }
  .promo {
    padding: 0 16px!important;
  }
  .promo__slider {
    border-radius: 12px;
  }
  .promo__slide {
    height: 480px;
  }
  .promo__desc {
    font-size: 14px;
    line-height: 130%;
    font-weight: 400;
    margin-top: 2px;
  }
  .menu {
    display: none;
  }
  .nav-mobile {
    display: block;
    margin-top: 20px;
    padding: 0;
    border-radius: 8px;
    /*background: #f7f7f7;*/
    position: relative;
  }
  /*.nav-mobile::before, .nav-mobile::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;

    background: -o-linear-gradient(359deg, rgba(9, 8, 21, 0) 0%, #1D1A34 78.5%);
    background: linear-gradient(91deg, rgba(9, 8, 21, 0) 0%, #1D1A34 78.5%);
    z-index: 10;
    pointer-events: none;
  }
  .nav-mobile::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 0;
  }
  .nav-mobile::after {
    right: 0;
  }*/
  .nav-mobile__slide {
    width: auto;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 30px;
    font-size: 16px;
    line-height: 130%;
    font-weight: 400;
    color: #040309;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #f7f7f7;
    border-radius: 8px
  }
  .nav-mobile__slide:hover {
    color: #EA7108;
  }
  .nav-mobile__slide.active {
    color: #EA7108;
    font-size: 16px;
    font-weight: 800;
  }
  .nav-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main {
    padding-top: 124px;
  }
  .main--no-padding {
    padding: 0;
  }
  .main .menu {
    display: none;
  }
  .main .menu + .main__content {
    width: 100%;
  }
  .main__content {
    width: 100%;
    max-width: 100%;
  }
  .main__bar {
    padding: 26px 36px;
    border-radius: 24px;
  }
  .main__bar + .catalog {
    margin-top: 60px;
  }
  .main .title {
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .title {
    font-size: 32px;
    font-weight: 800;
  }
  .catalog {
    padding-bottom: 40px;
  }
  .catalog__tab {
    margin-right: 44px;
    font-size: 14px;
  }
  .catalog--mob {
    display: block;
  }
  .add {
    padding-bottom: 0;
  }
  .add--mob {
    display: block;
  }
  .add__content {
    margin-top: 24px;
    margin-bottom: 60px;
  }
  .add__slide {
    width: 64%;
  }
  .attention {
    padding-bottom: 0;
  }
  .attention .gift {
    margin-top: 100px;
  }
  .footer {
    margin-top: 100px;
    padding: 60px 0 0;
  }
  .footer .container {
    padding-left: 18px;
    padding-right: 18px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer__left {
    max-width: 100%;
    width: 100%;
  }
  .footer__info {
    margin-top: 60px;
  }
  .footer__logo {
    width: 180px;
  }
  .footer__logo img {
    width: 100%;
  }
  .footer__column {
    margin-top: 60px;
    margin-right: 200px;
  }
  .footer__column:last-child {
    margin-right: 0;
  }
  .add + .gift {
    margin-top: 100px;
  }
  .catalog__items {
    gap: 30px;
  }
  .gift__right {
    width: 380px;
  }
  .news {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .delivery .map {
    height: 420px;
    border-radius: 24px;
  }
  .delivery__group {
    gap: 30px;
  }
  .delivery__box {
    max-width: 300px;
    width: auto;
  }
  .delivery__title {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 30px;
  }
  .delivery__sub {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .cart {
    padding-top: 30px;
  }
  .cart-add {
    padding-top: 0;
  }
  .cart-add .title {
    margin-top: 30px;
  }
  .cart__group .label,
  .cart__group .checkbox {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 980px) {
  .header__content {
    padding: 14px 32px 14px 32px;
  }
  .header__box {
    margin-left: 36px;
  }
  .header__modal {
    top: calc(100% + 20px);
  }
  .promo__slide {
    height: 360px;
  }
  .promo__title {
    font-size: 32px;
    line-height: 120%;
  }
  .promo__desc {
    font-size: 12px;
    margin-top: 4px;
  }
  .catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .catalog__filter {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .catalog .title {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .catalog__items {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    gap: 24px;
    margin-bottom: 0px;
    -ms-grid-columns: 1fr 24px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog__filter .sort {
    margin-left: 46px;
  }
  .catalog__items {
    gap: 4vw 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .catalog__item {
    width: 44vw;
    padding-top: 1vw;
  }
  .catalog__item-btn {
    padding: 0;
    width: 4.861vw;
    height: 4.861vw;
    background-size: contain;
  }
  .catalog__item-image {
    border-radius: 8px 8px 0 0;
    width: 100%;
  }
  .catalog__item-image::before {
    width: 38px;
    height: 33px;
    background-size: contain;
  }
  .catalog__item-image img {
    width: 100%;
    vertical-align: top;
    height: auto;
    object-fit: cover;
    background: #f7f7f7;
}
  .catalog__item-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    font-size: 3.3vw;
  }
  .catalog__item-price span {
    margin-top: 2px;
    margin-left: 0;
  }
  .catalog__item-body {
    padding: 20px 20px 10px;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
  }
  .catalog__item-title {
    font-size: 3.3vw;
  }
  .catalog__item-desc {
    margin-top: 1.389vw;
    font-size: 3vw;
    min-height: 8.3vw;
    margin-bottom: 1.389vw;
  }
  .catalog__item-bottom {
    margin-top: auto;
    padding-top: 16px;
    padding-bottom: 12px;
  }
  .catalog__item-new {
    font-size: 1.6vw;
  }
  .catalog .quantity__btn {
    width: 5.556vw;
    height: 5.556vw;
  }
  .catalog .quantity__btn svg {
    width: 2.431vw;
    height: 2.431vw;
  }
  .catalog .quantity__input {
    width: 5.903vw;
    font-size: 2.778vw;
  }
  .catalog__filter .reset {
    display: none;
  }
  .catalog .filter-close {
    display: block;
  }
  .catalog__box {
    margin-bottom: 40px;
    margin-top: 40px;
  }
  .catalog__box:last-child {
    margin-bottom: 0;
  }
  .main {
    padding-top: 104px;
    padding-bottom: 0;
  }
  .main--no-padding {
    padding: 0;
  }
  .main__bar + .catalog {
    margin-top: 40px;
  }
  .attention {
    display: none;
  }
  .footer__column {
    margin-right: 68px;
  }
  .gift {
    display: none;
  }
  .radio__box {
    border: 1px solid #1D1A34;
    border-radius: 12px;
    min-width: 180px;
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .radio input:checked + .radio__box {
    background: #fff;
    border-color: #040309;
    color: #090815;
  }
  .product {
    display: block;
    background: 0;
    border-radius: 0;
    margin-top: 40px;
    padding: 0;
  }
  .product__image {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 24px;
  }
  .product__info {
    border-radius: 24px;
    background: #f7f7f7;
    margin-top: -221px;
    padding: 260px 80px 80px;
  }
  .product .catalog__item-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .product .catalog__item-price span {
    margin-left: 8px;
    margin-top: 0;
    font-size: 16px;
  }
  .product__btns {
    left: 16px;
    bottom: 16px;
    padding: 8px 4px;
  }
  .cart__promo .input {
    margin-bottom: 15px;
  }
  .product .catalog__item-btn {
    width: 28px;
    height: 28px;
  }
  .article {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .article__image {
    width: 100%;
    margin-right: 0;
  }
  .article__info {
    margin-top: 45px;
    padding-top: 0;
  }
  .news {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .work-time__icon {
    width: 44px;
    margin-right: 12px;
  }
  .work-time__text {
    font-size: 14px;
  }
  .delivery {
    margin-top: 24px;
  }
  .orders {
    font-size: 10px;
    padding: 20px;
    border-radius: 24px;
  }
  .orders__head {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
  }
  .orders__column {
    padding: 12px 4px;
  }
  .orders__column:first-child {
    width: 15.3%;
  }
  .orders__column:nth-child(2) {
    width: 14.7%;
  }
  .orders__column:nth-child(3) {
    width: 10%;
  }
  .orders__column:last-child {
    width: 60%;
  }
  .profile {
    margin-top: 40px;
  }
  .profile__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .profile__column {
    margin: 0 0 100px;
    width: 100%;
  }
  .profile__column:last-child {
    margin-bottom: 0;
  }
  .cart__column {
    width: 100%;
  }
  .cart__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cart__final {
    margin-top: 36px;
  }
  .cart-add .title {
    font-size: 32px;
  }
  .navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 24px;
    margin: auto;
    width: calc(100% - 36px);
    padding: 14px 0;
    background: #f7f7f7;
    border-radius: 12px;
    list-style: none;
    z-index: 100;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0px 0px 100px 6px rgba(6, 0, 15, 0.7);
    -moz-box-shadow: 0px 0px 100px 6px rgba(6, 0, 15, 0.7);
    box-shadow: 0px 0px 100px 6px rgba(6, 0, 15, 0.7);
  }
  .navbar--hide {
    opacity: 0;
    visibility: hidden;
  }
  .navbar__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #040309;
    width: 32px;
    height: 32px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
  .navbar__link:hover {
    color: #EA7108;
  }
  .navbar__link--active {
    color: #EA7108;
  }
  .navbar__link svg {
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 576px) {
  .header__content {
    padding: 14px 32px;
  }
  .header .logo {
    width: 52%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .header__right {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    margin-left: 40px;
    margin-top: 6px;
  }
  .header__box {
    margin-left: 0;
  }
  .header__modal {
    width: 100%;
  }
  .header__modal-head {
    padding: 24px;
  }
  .header__modal-sub {
    font-size: 16px;
  }
  .header__modal-close {
    width: 20px;
    height: 20px;
  }
  .header__profile-form {
    padding: 24px 24px 34px;
  }
  .header__profile-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .header__profile-flex .btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }
  .header__profile-send {
    margin-top: 10px;
  }
  .header__profile-send .btn {
    margin-top: 0;
    margin-left: 20px;
    width: 100%;
  }
  .header__profile-send .input-code {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .header__cart-body {
    padding: 24px;
  }
  .header__cart-add {
    padding: 24px;
  }
  .header__cart-footer {
    padding: 24px;
  }
  .header__search-form {
    padding: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .header__search-form .btn {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  .promo {
    padding: 122px 18px 0;
  }
  .promo__slide {
    height: 270px;
  }
  .container {
    padding-left: 3.125vw;
    padding-right: 3.125vw;
  }
  .catalog .title {
    margin-bottom: 0;
    margin-top: 40px;
  }
  .catalog__items {
    margin-top: 16px;
  }
  .nav-mobile {
    margin-top: 18px;
    margin-bottom: 20px;
    padding: 0;
  }
  .nav-mobile::before, .nav-mobile::after {
    width: 80px;
  }
  .nav-mobile__slide {
    height: 40px;
    padding: 0 15px;
  }
  .nav-filter {
    margin-top: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .add__content {
    border-radius: 8px;
    padding: 0px 10px;
  }
  .title {
    margin-top: 40px;
    font-size: 20px;
    line-height: 120%;
  }
  .main__bar {
    padding: 22px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .main__bar + .catalog {
    margin-top: 20px;
  }
  .main .title {
    margin-top: 10px;
  }
  .sort__type {
    width: 16px;
    height: 12px;
    margin-left: 10px;
    background-size: contain;
  }
  .filter-close {
    width: 18px;
    height: 18px;
  }
  .filter-close svg {
    width: 100%;
    height: 100%;
  }
  .catalog__tab {
    margin-right: 15px;
  }
  .cart__promo .input {
    margin-bottom: 15px;
  }
  .catalog__filter .sort {
    margin-left: 20px;
  }
  .add__slide .catalog__item-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .add__slide .catalog__item-price span {
    margin-left: 8px;
    margin-top: 0;
  }
  .footer {
    background-position: center top;
    background-size: cover;
  }
  .product__image {
    width: calc(100% - 62px);
  }
  .product__info {
    margin-top: -155px;
    padding: 185px 31px 31px;
  }
  .product__flex {
    margin-top: 15px;
  }
  .product__radio {
    gap: 12px;
  }
  .product__add .add__slide-bottom {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .product__add .add__slide-image {
    margin-right: 8px;
  }
  .product__add .add__slide-price {
    font-size: 12px;
  }
  .product__add .add__slide .catalog__quantity {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .radio__box {
    min-width: 140px;
  }
  .news {
    gap: 24px;
  }
  .news__item {
    border-radius: 24px;
  }
  .news__item-image {
    border-radius: 24px;
    height: calc(50vw - 12px - 6.25vw);
  }
  .news__item-body {
    padding: 20px 15px 32px;
  }
  .news__item-date {
    color: #040309;
    font-size: 12px;
  }
  .news__item-sub {
    margin-top: 4px;
    font-size: 16px;
  }
  .delivery__box {
    max-width: calc(50% - 20px);
  }
  .delivery__sub {
    font-weight: 400;
  }
  .about {
    margin-top: 24px;
  }
  .orders {
    padding: 18px;
  }
  .orders__short {
    display: block;
  }
  .orders__sub {
    display: none;
  }
  .orders__column:first-child {
    width: 10%;
  }
  .orders__column:nth-child(2) {
    width: 25.7%;
  }
  .orders__column:nth-child(3) {
    width: 18%;
  }
  .orders__column:last-child {
    width: 43.3%;
  }
  .profile__sub {
    font-size: 16px;
  }
  .profile__box {
    margin-top: 24px;
  }
  .profile__group {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .profile__group .label:first-child {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 135px;
  }
  .profile__save {
    margin-top: 60px;
  }
  
  .cart-bar__radio .radio {
    max-width: 223px;
    width: 100%;
    margin-right: 30px;
  }
  .cart-bar__radio .radio:last-child {
    margin-right: 0;
  }
  .cart-bar__radio .radio__box {
    padding: 15px;
  }
  .cart-bar__radio .radio__icon {
    margin-right: 12px;
  }
  .cart-bar__radio .radio__text {
    font-size: 14px;
  }
  .cart-bar .logout {
    display: none;
  }
  .cart-add .title {
    font-size: 20px;
  }
  .cart__sub {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .cart .radio {
    display: block;
    width: 100%;
  }
  .cart .radio input:checked + .radio__box {
    background: #EA7108;
    border-color: #EA7108;
    color: #040309;
  }
  .cart .radio__box {
    width: 100%;
    min-width: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 16px 31px;
    background: #fff;
    color: #040309;
  }
  .cart .radio__icon {
    display: none;
  }
  .cart__time {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .cart__time .label {
    margin-right: 0;
  }
  .cart__time .label--time, .cart__time .label--date {
    width: calc(50% - 13px);
  }
  .cart__time .radio {
    margin-top: 24px;
  }
}
@media screen and (max-width: 480px) {
 .product__new  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
 height: 26px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #69B42D;
    padding: 2px 4px 2px 4px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product__fire {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
height: 26px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #EA7108;
    padding: 2px 4px 2px 4px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product__sale  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
   height: 26px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #E73D00;
    padding: 2px 4px 2px 4px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.product__favorite  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
 height: 26px;
    font-size: 12px;
    line-height: 120%;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 1;
    background: #EA7108;
    padding:2px 4px 2px 4px;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 6px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
 
  .header__content {
    padding: 14px 15px;
  }
  .header__right {
    margin-left: 20px;
    margin-top: 6px;
  }
  .header__btn {
    width: 36px;
    height: 36px;
  }
  .promo__title {
    font-size: 28px;
  }
  .nav-mobile__slide {
    font-size: 14px;
    padding: 0 15px;
  }
  .nav-mobile__slide .swiper-slide-active {
    font-size: 16px;
  }
  .select2-selection__rendered {
    font-size: 12px;
  }
  .sort__text {
    display: none;
    font-size: 12px;
  }
  .catalog__item {
    width: 44vw;
  }
  .product__title {
    font-size: 18px;
  }
  .product .catalog__item-price {
    font-size: 16px;
  }
  .product .catalog__item-price span {
    font-size: 16px;
  }
  .product__add .add__slide {
    width: 33%;
    margin-bottom: 20px;
  }
  .product__add .add__slide:last-child {
    
  }
  .product__btns {
    left: 8px;
    bottom: 8px;
    border-radius: 24px;
  }
  .radio__text {
    font-size: 12px;
  }
  .radio__box {
    min-width: auto;
    min-height: auto;
    padding: 12px 10px;
  }
  .radio__icon {
    margin-right: 8px;
  }
  .article {
    padding: 30px;
  }
  .delivery {
    padding-bottom: 60px;
  }
  .delivery .map {
    margin-bottom: 50px;
  }
  .cart__promo .input {
    margin-bottom: 15px;
  }
  .delivery__box {
    max-width: 100%;
  }
  .delivery__item {
    margin-bottom: 50px;
  }
  .profile__group {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .profile__group .label {
    width: calc(50% - 10px);
  }
  .cart__group {
    max-width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cart__group .label {
    width: 100%;
    margin-bottom: 24px;
  }
  .cart__group .label:last-child {
    margin-bottom: 0;
  }
  .cart__group .checkbox {
    width: 100%;
    margin-top: 0;
  }
 
  .cart-bar__radio .radio {
    margin-right: 15px;
  }
  .cart__delivery-group {
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cart__delivery-group .label,
  .cart__delivery-group .label:first-child {
    width: calc(50% - 5px);
  }
  .add__slide-image {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .add__slide .catalog__item-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .add__slide .catalog__item-price span {
    margin-left: 0;
    margin-top: 2px;
  }
  .nav-mobile::before, .nav-mobile::after {
    width: 40px;
  }
}
@media screen and (min-width: 1921px) {
  .promo__slide {
    height: 720px!important; /* Дефолт для десктопа */
}
}