@import "index.css";
@import "landing.css";

.header {
  width: 100%;
  padding-top: 16px;
  position: fixed;
  z-index: 7;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
}

@media screen and (min-width: 993px) {
  .header {
    padding-bottom: 0px;
  }
}
.header__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.header__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.header__left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.header__logo {
  width: 120.1px;
  height: 64px;
}

.header__logo-link {
  width: 100%;
}

.header__logo-link svg {
  width: 100%;
  height: auto;
}

.slogan {
  width: 126px;
  flex-shrink: 0;
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  color: #888888;
  display: none;
}

.header__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__location-inp {
  position: relative;
  width: fit-content;
  min-width: 98px;
  display: flex;
  align-items: center;
  gap: 5px;
}


.header__button {
  width: fit-content;
  padding: 7px 7px 7px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  cursor: pointer;
}

.button__city,
.button__currency,
.button__lang {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  color: #000000;
}


.button__location .button__icon {
  width: 16px;
  height: 16px;
  background-image: url('../images/new-layout/icon-location.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.button__select-currency .button__icon,
.button__select-lang .button__icon {
  width: 16px;
  height: 16px;
  background-image: url('../images/new-layout/icon-arrow-down.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__search {
  position: absolute;
  top: 50%;
  right: 280px;
  transform: translate(36px, -50%);
  z-index: 1;
  width: 222px;
  display: none;
}

.header__search--active {
  display: flex;
  gap: 10px;
}


.header__search-hints{
  position: absolute;
  top: calc( 100% + 4px);
  left: 0;
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 12px 24px 0 rgba(0, 0, 0, .25);
  font-size: 14px;
  line-height: 1.75;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility 0s .2s;
}

.header__search-hints:hover{
  opacity: 1;
  visibility: visible;
  transition: opacity .2s, visibility 0s;
}

.header__search:focus-within .header__search-hints{
  opacity: 1;
  visibility: visible;
  transition: opacity .2s, visibility 0s;
}

.header__search-input:focus ~ .header__search-hints{
  opacity: 1;
  visibility: visible;
  transition: opacity .2s, visibility 0s;
}

.header__search-hints-btn{
  display: block;
  appearance: none;
  width: 100%;
  text-align: left;
}

.header__search-hints-btn:hover,
.header__search-hints-btn:focus{
  color: #3aa600;
  text-decoration: underline;
}

.header__search-hints-separator{
  color: #888;
}

.header__search-hints-separator:not(:first-child){
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #E0E0E0;
}


.header__search-input {
  width: 100%;
  padding: 4px 12px;
  padding-right: 36px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  transition: all .2s ease;
}

.header__search-input:focus,
.header__search-input:hover {
  outline: none;
  border: 1px solid #3aa600;
}

.header__search-input,
.header__search-input::placeholder {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #888888;
}

.header__search-input {
  color: var(--text-color)
}

.header__search-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  flex-shrink: 0;
  background-image: url('../images/new-layout/icon-search2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.header__search-input:focus~.header__search-icon,
.header__search-input:hover~.header__search-icon {
  background-image: url('../images/new-layout/icon-search.svg');
}

.header__right-wrapper {
  position: relative;
  display: flex;
}

.user-block {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-block__button {
  width: 24px;
  height: 24px;
}

.user-block__button--phone .icon-wrap,
.user-block__button--fanorites .icon-wrap,
.user-block__button--cart .icon-wrap,
.user-block__button--search .icon-wrap,
.user-block__button--login .icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

.user-block__button--phone .icon-phone,
.user-block__button--fanorites .icon-like,
.user-block__button--cart .icon-cart,
.user-block__button--search .icon-search,
.user-block__button--login .icon-login {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  transition: all .2s ease;
}

.user-block__button--phone .icon-phone {
  background-image: url('../images/new-layout/icon-phone2.svg');
}

.user-block__button--fanorites .icon-like {
  background-image: url('../images/new-layout/icon-hearts.svg');
}

.user-block__button--cart .icon-cart {
  background-image: url('../images/new-layout/icon-cart.svg');
}

.user-block__button--search .icon-search {
  background-image: url('../images/new-layout/icon-search2.svg');
}

.user-block__button--login .icon-login {
  background-image: url('../images/new-layout/icon-login.svg');
}

.user-block__button--phone .icon-phone-hov,
.user-block__button--fanorites .icon-like-hov,
.user-block__button--cart .icon-cart-hov,
.user-block__button--search .icon-search-hov,
.user-block__button--login .icon-login-hov {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  opacity: 0;
  transition: all .2s ease;
}

.user-block__button--phone .icon-phone-hov {
  background-image: url('../images/new-layout/icon-phone2-hov.svg');
}

.user-block__button--fanorites .icon-like-hov {
  background-image: url('../images/new-layout/icon-hearts-active.svg');
}

.user-block__button--cart .icon-cart-hov {
  background-image: url('../images/new-layout/icon-cart-hov2.svg');
}

.user-block__button--search .icon-search-hov {
  background-image: url('../images/new-layout/icon-search2-hov.svg');
}

.user-block__button--login .icon-login-hov {
  background-image: url('../images/new-layout/icon-login-hov.svg');
}

.user-block__button--phone:hover .icon-phone,
.user-block__button--fanorites:hover .icon-like,
.user-block__button--cart:hover .icon-cart,
.user-block__button--search:hover .icon-search,
.user-block__button--login:hover .icon-login {
  opacity: 0;
}

.user-block__button--phone:hover .icon-phone-hov,
.user-block__button--fanorites:hover .icon-like-hov,
.user-block__button--cart:hover .icon-cart-hov,
.user-block__button--search:hover .icon-search-hov,
.user-block__button--login:hover .icon-login-hov {
  opacity: 1;
}

/* .user-block__button--search {
  display: none;
} */

.user-block__button--fanorites,
.user-block__button--cart {
  position: relative;
}

.header__right .favorites-count,
.header__right .cart-count {
  position: absolute;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #3aa600;
  color: #fff;
  font-size: 8px;
  line-height: 9px;
  top: -4px;
  right: -7px;
}

.header__bottom {
  width: 100%;
  padding-bottom: 7px;
  border-bottom: 1px solid #E0E0E0;
}

.header__buttons--mobile {
  display: none;
}

.nav {
  width: 100%;
}

.nav__list {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.nav__item:nth-child(n+5) .dropdown-menu {
  left: auto;
  right: 0;
}

.nav__link.active {
  color: #3AA600;
}

.nav__item span{
  cursor: pointer;
}

.nav__link {
  display: inline-block;
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #000000;
  transition: all .2s ease;
}

.nav__link:focus,
.nav__link:hover {
  color: var(--main-color);
  cursor: pointer;
}

.pick-delivery-date{
  position: relative;
}
.pick-delivery-date__icon{
  vertical-align: text-top;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  width: 760px;
  padding: 20px;
  left: 0;
  top: 20px;
  background: #FFFFFF;
  box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.dropdown-menu__wrap {
  width: 100%;
  display: flex;
  gap: 40px;
}

.dropdown-menu__list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 240px;
  column-gap: 36px;
  row-gap: 2px;
}

.dropdown-menu__link {
  position: relative;
  padding: 0 2px;
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  color: var(--text-color);
  transition: all .2s ease;
}

.dropdown-menu__link.active{
  color: #3AA600;
}

.dropdown-menu__link:after {
  display: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 4px;
  left: 0;
  background-color: var(--main-color);
}

.dropdown-menu__link:focus,
.dropdown-menu__link:hover {
  color: var(--main-color);
}

.dropdown-menu__link:focus::after,
.dropdown-menu__link:hover::after {
  display: block;
}

.dropdown-menu__img-wrap {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
}

.dropdown-menu__message-wrap {
  position: absolute;
  width: 224px;
  padding: 5px;
  bottom: 10px;
  right: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 4px;
  background: #FFFFFF;
}

.dropdown-menu__message-wrap:before {
  position: absolute;
  content: "";
  width: 14.5px;
  height: 10.5px;
  top: 0;
  left: -9px;
  background: #fff;
  border-radius: 2px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 3px) 100%, 0 3px);
}

.dropdown-menu__message {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #000000;
}

.dropdown-menu__message--one {
  flex-grow: 1;
}

.dropdown-menu__message-time {
  align-self: flex-end;
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  color: #999999;
}

.nav__item {
  padding-bottom: 20px;
}

.nav__item:focus .dropdown-menu,
.nav__item:hover .dropdown-menu {
  display: block;
  margin-top: 10px;
  cursor: pointer;
}

.breadcrumb__container {
  gap: 4px;
}

.breadcrumb a,
.breadcrumb span {
  color: #999999;
}

/* Карточка букета */
.product__container {
  gap: 50px;
}

.product__left {
  width: 640px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product .parent_swp {
  width: 100%;
  height: 640px;
  margin-bottom: 0;
}

.product .parent_swp .swiper {
  height: 100%;
}

.product .parent_swp .swiper-slide {
  height: 100%;
}

.product .parent_swp .swiper-slide img {
  border-radius: 8px;
}

.product .child_swp {
  margin-bottom: 0;
}

.product .child_swp .swiper-slide {
  height: 120px;
  border: none;
  border-radius: 8px;
}

.product .child_swp .swiper::before,
.product .child_swp .swiper::after {
  display: none;
}

.product .child_swp .swiper-slide--active {
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  outline: 3px solid var(--main-color);
  border: 4px solid #FFFFFF;
  border-radius: 8px;
  box-sizing: border-box;
}

.product__description{
  margin-top: 20px;
  margin-bottom: 0 !important;
}

.product__description--mobile{
  display: none;
}

.product__description.text-formatting .small-container{
  max-width: none;
}

.product__left_text {
  margin-top: 20px;
  width: 100%;
  padding: 30px 54px 30px 30px;
  flex-direction: row;
  background: rgba(249, 218, 127, 0.4);
  border-radius: 8px;
  gap: 32px;
}

.product__left_text h3 {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-color);
}

.product__left_text ul li {
  font-family: 'Roboto Flex';
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-color);
}

.product__left_text--mobile {
  display: none;
}

.product__right_head .title {
  display: inline;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #000000;
}

.product__right_head .title__wrap {
  flex-direction: column;
  gap: 10px;
  padding-right: 0;
}

.product__right_head .title__wrap .title__wrap-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.favorites-button {
  width: 24px;
  height: 24px;
}

.favorites-button .icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

.favorites-button .icon-favorites {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/new-layout/icon-hearts.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.favorites-button .icon-favorites-active {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/new-layout/icon-hearts-active.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  opacity: 0;
}

.favorites-button.active .icon-favorites-active,
.favorites-button:hover .icon-favorites-active {
  opacity: 1;
}

.favorites-button.active .icon-favorites,
.favorites-button:hover .icon-favorites {
  opacity: 0;
}

.title__wrap-bottom {
  width: 100%;
  display: flex;
  gap: 6px;
}

.product__right_head {
  gap: 22px;
}

.product__right_head .title__wrap-bottom .title__info {
  padding: 4px 8px;
  background: #4FCF99;
  border-radius: 24px;
}

.product__right_head .title__wrap-bottom .title__info span {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #FFFFFF;
}

.order-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-block__item {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.order-block__item span {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: var(--text-color);
}

.order-block__item .city-modal__open {
  display: flex;
  align-items: center;
  gap: 6px;
}

.order-block__item .city-modal__open span {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: right;
  color: var(--main-color)
}

.order-block__rating-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
}

.order-block__item .order-block__rating-count {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #999999;
}

.order-block__item .order-block__rating {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #000000;
}

.order-block__item .order-block__icon-star {
  width: 16px;
  height: 16px;
}

.product__right_amount {
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.product__right_amount .calculation {
  gap: 7px;
}

.product__right_amount .calculation button {
  padding: 10px;
  border: 2px solid #F9DA7F;
  background-repeat: no-repeat;
  background-position: center;
  transition: all .2s ease;
}

.product__right_amount .calculation input {
  width: 64px;
  height: 36px;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  transition: all .2s ease;
}

.product__right_amount .calculation .minus {
  background-image: url('../images/new-layout/icon-minus.svg');
  background-size: 18px 2px;
}

.product__right_amount .calculation .plus {
  background-image: url('../images/new-layout/icon-plus.svg');
  background-size: 18px 18px;
}

.product__right_price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 5px;
}

.order-block__item .order-block__discount {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #999999;
}

.order-block__price {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

.order-block__item .order-block__old-price {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  text-decoration-line: line-through;
  color: #999999;
}

.order-block__item .order-block__new-price {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #000000;
}

.product__buttons {
  margin-top: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product__right .product__button {
  padding: 8px 16px;
  height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  color: var(--text-color);
  transition: all .2s ease;
}

.product__right .product__button--yellow {
  background: #F9DA7F;
}

.product__button--white {
  background: #FFFFFF;
  border: 2px solid #F9DA7F;
}

.product__right .product__button span {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product__right .product__button--yellow:focus,
.product__right .product__button--yellow:hover {
  background: #D1A934;
  color: white;
  border-color: transparent;
}

.icon-wrap {
  position: relative;
  width: 24px;
  height: 24px;
}

.icon-cart {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/new-layout/icon-cart.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  transition: all .2s ease;
}

.icon-cart-hov {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/new-layout/icon-cart-hov.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
  opacity: 0;
  transition: all .2s ease;
}

.product__right .product__button--yellow:focus .icon-cart-hov,
.product__right .product__button--yellow:hover .icon-cart-hov {
  opacity: 1;
}

.product__right .product__button--yellow:focus .icon-cart,
.product__right .product__button--yellow:hover .icon-cart {
  opacity: 0;
}

.icon-phone {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../images/new-layout/icon-phone2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.product__right_partners {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: -4px;
}

.product__payment-title {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.product__right_partners ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.product__right_partners ul li {
  width: calc((100% - 5 * 10px) / 6);
  height: 45px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  transition: all .2s ease;
}


.product__right_compaunt {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.product__right_compaunt-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product__right_compaunt h3 {
  margin: 0;
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-align: left;
  color: #000000;
}

.product__right_compaunt ul {
  gap: 14px;
}

.product__right_compaunt p {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--text-color);
}

.product__right_compaunt li::before {
  border-bottom: 1px dashed #999999;
}

.product {
  margin-bottom: 40px;
}

.present__title {
  margin-bottom: 40px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #000000;
}

.present__cards .card_head .alert {
  line-height: 23px;
  letter-spacing: 0.02em;
}

.present__cards .card_body h3 {
  color: var(--text-color);
}

.price__wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.present__link span {
  font-family: 'Roboto Flex';
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #000000;
}

.price__wrap .card-addCart {
  width: 16px;
  height: 16px;
}

.present__cards .card {
  display: flex;
  flex-direction: column;
}

.present__cards .card .card_body {
  height: 100%;
}

.present__cards .card .card_body .present__link {
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
}

.price__wrap .icon-wrap {
  position: relative;
  width: 16px;
  height: 16px;
}

.price__wrap .icon-cart {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/new-layout/icon-cart1.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.price__wrap .icon-cart-hov {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url('../images/new-layout/icon-cart1-hov.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  opacity: 0;
}

.price__wrap .card-addCart.active .icon-cart-hov,
.price__wrap .card-addCart:hover .icon-cart-hov {
  opacity: 1;
}

.price__wrap .card-addCart.active .icon-cart,
.price__wrap .card-addCart:hover .icon-cart {
  opacity: 0;
}

@media (max-width: 1150px) {
  .product__container {
    gap: 36px;
  }

  .product__left {
    width: 590px;
  }

  .product .parent_swp {
    height: 590px;
  }

  .product .parent_swp {
    height: 590px;
  }

  .product .child_swp .swiper-slide {
    height: 110px;
  }

  .product__right_compaunt {
    gap: 26px;
  }
}

@media (max-width: 1100px) {
  .slogan {
    display: none;
  }

  .product__left {
    width: 540px;
  }

  .product .parent_swp {
    height: 540px;
  }

  .product .child_swp .swiper-slide {
    height: 100px;
  }

  .product__right_head .title {
    font-size: 22px;
  }

  .product__right .product__button span {
    font-size: 16px;
  }

  .icon-wrap,
  .icon-phone {
    width: 20px;
    height: 20px;
  }

  .product__right_head .title__wrap-bottom .title__info span {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .header {
    margin-bottom: 0;
    padding-top: 14px;
  }

  .header__container {
    gap: 0;
  }

  .header__top {
    padding-top: 10px;
    gap: 15px;
  }

  .header__left {
    align-items: flex-start;
  }

  .header .bars {
    margin-top: 5px;
  }

  .header__logo {
    width: 64.31px;
    height: 39px;
  }

  .header__logo img {
    display: block;
    width: 64.31px;
    height: 39px;
  }

  .header .select_currency,
  .header .select_lang {
    display: block;
  }

  .header__right {
    flex-direction: column;
    align-items: flex-end;
    flex-wrap: wrap;
    row-gap: 5px;
  }

  .header__right-wrapper {
    width: 100%;
    flex-direction: row-reverse;
    /* justify-content: space-between; */
    gap: 10px 0;
  }

  .header__buttons {
    order: 3;
  }

  .header__location {
    position: unset;
    width: unset;

    border: none;
    padding: 0;
  }

  .header__search {
    display: none;
  }

  .header__search--active {
    display: flex;
    width: 60%;
    order: 2;
  }

  .user-block {
    padding: 4px 0;
    /* margin-left: auto; */
    order: 1;
  }

  .user-block__button--search {
    display: block;
    filter: saturate(0);
  }

  .user-block__button--search:hover {
    filter: saturate(1);
  }

  .header__bottom {
    display: none;
  }

  .nav {
    display: none;
  }

  .breadcrumb {
    margin-bottom: 20px;
    margin-top:20px;
  }

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

  .breadcrumb a,
  .breadcrumb span {
    font-size: 14px;
    line-height: 16px;
  }

  .product__description{
    margin-top: 10px;
  }

  .product__description--desktop{
    display: none;
  }

  .product__description--mobile{
    display: block;
  }

  .product__left {
    width: 640px;
    max-width: unset;
  }

  .product .parent_swp {
    height: 640px;
  }

  .product .child_swp .swiper-slide {
    height: 120px;
  }

  .product__left .swp_pagination {
    display: none;
  }

  .product__left_text--desktop {
    display: none;
  }

  .product__left_text--mobile {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 25px;
    gap: 20px;
  }

  .product__left_text ul li {
    text-align: center;
  }

  .product__right {
    width: 640px;
    gap: 20px;
  }

  .product__right_head {
    gap: 25px;
  }

  .product__right_head .title {
    font-size: 24px;
  }

  .product__right_head .title__wrap-bottom .title__info span {
    font-size: 14px;
  }

  .product__buttons {
    max-width: 500px;
    margin: 0 auto;
  }

  .product__right_partners {
    display: none;
  }

  .product__right_compaunt {
    gap: 20px;
  }

  .product__right_compaunt-wrap {
    gap: 15px;
  }

  .present__title {
    margin-bottom: 30px;
    font-size: 22px;
  }
}

@media (max-width: 704px) {}

@media (max-width: 687px) {
  .product__container {
    gap: 20px;
  }

  .product__left {
    width: 540px;
  }

  .product .parent_swp {
    height: 540px;
  }

  .product .child_swp .swiper-slide {
    height: 100px;
  }

  .product__right {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .header__right {
    row-gap: 10px
  }
}

@media (max-width: 579px) {
  .header__left {
    gap: 14px;
  }

  .product__left {
    width: 100%;
  }

  .header__right-wrapper {
    flex-direction: column;
  }

  .user-block {
    order: 1;
  }

  .header__search{
    position: relative;
    top: 0;
    right: 0;
    transform: none;
  }

  .header__search--active {
    order: 2;
    width: 100%;
  }

  .product .parent_swp {
    height: 490px;
  }
}

@media (max-width: 500px) {
  .product__right_head .title__wrap .title__box {
    position: relative;
  }
}

@media (max-width: 480px) {
  .header__top {
    flex-wrap: wrap;
  }

  .header__right {
    display: contents;
    padding-bottom: 56px;
  }

  .header__right-wrapper {
    display: contents;
  }

  .header__button {
    padding: 7px 7px 7px 10px;
  }

  .header__location_inp {
    padding: 0;
  }

  .product .parent_swp {
    height: 335px;
  }

  .product .child_swp .swiper-slide {
    width: 63px;
    height: 63px;
    margin-right: 5px;
  }

  .product .child_swp .swiper-slide--active {
    border: unset;
  }

  .product__left_text--mobile {
    gap: 10px;
  }

  .product__left_text ul li {
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .header__logo img {
    height: auto;
  }
}



.home {
  margin-bottom: 30px;
  display: block;
}
.home__container {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.home__swp {
  width: calc(100% - 379px);
  position: relative;
}
@media screen and (max-width: 992px) {
  .home__swp {
    width: 100%;
  }
}
.home__swp .swiper {
  height: 100%;
  border-radius: 16px;
}
@media screen and (max-width: 992px) {
  .home__swp .swiper-content {
    max-width: 198px;
    margin-bottom: 74px;
  }
}
.home__swp .swiper-slide {
  height: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 72px 0px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .home__swp .swiper-slide {
    padding: 0 0 26px 0;
  }
}
@media screen and (max-width: 760px) {
  .home__swp .swiper-slide {
    padding: 0 0 16px 0;
  }
}
.home__swp .main-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: -1;
}
.home__swp h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: bold;
  line-height: 120%;
  max-width: 392px;
  margin-bottom: 16px;
}
@media screen and (max-width: 992px) {
  .home__swp h3 {
    font-size: 20px;
  }
}
.home__swp p {
  font-size: 20px;
  line-height: 130%;
  max-width: 392px;
}
@media screen and (max-width: 992px) {
  .home__swp p {
    font-size: 14px;
  }
}
.home__swp_navigation {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 992px) {
  .home__swp_navigation {
    left: 26px;
  }
}
@media screen and (max-width: 760px) {
  .home__swp_navigation {
    left: 16px;
    bottom: 16px;
  }
}
.home__swp_navigation .swp_btn {
  display: flex;
  align-items: center;
  gap: 10px;
}
.home__content {
  width: 359px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .home__content {
    display: none;
  }
}
.home__content li {
  border: 2px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  min-height: 100px;
  padding: 0 24px;
}
.home__content h3 {
  font-size: 16px;
  line-height: 120%;
  font-weight: bold;
  text-transform: uppercase;
  color: black;
  font-family: "Montserrat", sans-serif;
}
.home__content p {
  font-size: 16px;
  line-height: 130%;
  margin-top: 4px;
}
