.gallery-hidden{
  display: none;
  opacity: 0;
}

.no-scroll {
  overflow: hidden;
}

.blur-layer {
  display: none;
  position: absolute;
  width: 100%;
  height: 200%;
  background-color: #dfdfdf80;
  backdrop-filter: blur(11px);
  -webkit-backdrop-filter: blur(11px);
  z-index: 3;
}

.blur-layer.active {
  display: block;
}

.master-button {
  width: max-content;
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  color: #052668;
  text-decoration: none;
  transition: 0.5s;
}

.master-button:hover {
  opacity: 0.75;
}

.master-button--yellow {
  background-color: #ffa100;
}

.master-button--white {
  background-color: white;
}

.master-button__text {
  height: 24px;
  display: flex;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
}

.master-button__icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
}

.visually-hidden {
  display: none !important;
}

/*******************************************************
HEADER
*******************************************************/
.header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__topbar-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffa100;
  padding: 16px 20px;
  position: relative;
}

.header__topbar {
  width: 100%;
  max-width: 1084px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__language-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 100%;
  color: #2f323a;
  text-decoration: none;
}

.header__language-link img {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
}

.header__auth {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__master-button {
  padding: 4px 12px;
}

.header__burger img {
  min-width: 24px;
  min-height: 24px;
}

.header__nav-wrapper {
  position: absolute;
  top: 100%;
  right: 20px;
  width: 184px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 0 4px 8px 0 #00000033;
  z-index: 2;
  transform: translateY(-16px);
  transition: 0.2s ease-in-out;
  opacity: 0;
  pointer-events: none;
}

.header__nav-inner {
  padding: 4px 4px 28px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.header__nav-wrapper.active {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}

.header__nav {
  width: 100%;
}

.header__menu-link {
  display: flex;
  padding: 8px 12px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
  text-decoration: none;
  transition: 0.5s;
}

.header__menu-link:hover {
  background-color: #f9f9f9;
}

.header__menu-link.active{
  color: #052668;
  font-weight: 600;
}

.header__request {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__request-button {
  width: max-content;
  display: flex;
  align-items: center;
  border: 1px solid #ffa100;
  padding: 16px;
  gap: 8px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #2f323a;
  text-decoration: none;
}

.header__request-button::before {
  display: flex;
  align-items: center;
  content: url(/pub/media/svg/plane.svg);
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.header__main {
  width: 100%;
  border-bottom: 1px solid #eaeae5;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.header__main-container {
  width: 100%;
  max-width: 1084px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  min-width: 164px;
  min-height: 40px;
}

.header__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.header__icon-button {
  position: relative;
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
}

.header__icon-button img {
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
}

.header__icon-count {
  position: absolute;
  top: 0;
  left: 11px;
  width: 13px;
  height: 13px;
  min-width: 13px;
  min-height: 13px;
  background-color: #ffa100;
  border-radius: 50%;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 7px;
  color: #052668;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__main-container .header__search-form--mobile {
  display: none;
  width: 100%;
  height: 40px;
  position: relative;
}

.header__search-form--mobile.active {
  display: block;
}

.header__search-form--mobile .header__search-input {
  width: 100%;
  padding-right: 72px;
  height: 40px;
}

.header__search-form--mobile .header__search-submit,
.header__search-form--mobile .header__search-close {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 0;
  transform: translateY(50%);
}

.header__main-container .header__search-submit {
  right: 42px;
}

.header__main-container .header__search-close {
  right: 12px;
}

.header__desktop-tools {
  height: 100%;
  display: none;
  align-items: center;
}

.header__search-form {
  width: 330px;
  position: relative;
}

.header__search-input {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #eaeae5;
  padding: 8px 12px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #2f323a;
  padding-right: 40px;
}

.header__search-input:focus {
  outline: none;
  border-color: #b6b8bb;
}

.header__search-input::placeholder {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  color: #b6b8bb;
}

.header__desktop-tools .header__search-submit {
  position: absolute;
  top: 0;
  right: 12px;
  transform: translateY(50%);
}

.header__search-submit img {
  min-width: 16px;
  min-height: 16px;
}

.header__contacts {
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #717786;
}

.header__contacts span {
  width: max-content;
}

.header__contacts span a{
  color: inherit;
  text-decoration: none;
}
.header__contacts span a:hover{
  text-decoration: underline;
}

.header__categories {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.header__categories-container {
  width: 100%;
  max-width: 1084px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.header__categories-list {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
}

.header__category-link {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
}

.header__category-link:hover {
  color: #052668;
}


.header__category-link.active .header__category-text{
  font-weight: 600;
}

.header__category-link.dropdown::after {
  content: url(/pub/media/svg/chevron-down.svg);
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.header__category-text {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
}

.header__actions {
  display: none;
  gap: 24px;
}

/*******************************************************
HEADER SUBMENU LOGIC START
*******************************************************/
@media (hover: hover) {
  .header__nav-item:hover .header__category-link.dropdown::after {
    content: url(/pub/media/svg/chevron-up.svg);
  }
}

.header__nav-item:has(.header__submenu.active)
  .header__category-link.dropdown::after {
  content: url(/pub/media/svg/chevron-up.svg);
}

.header__submenu {
  position: absolute;
  top: 100%;
  z-index: 1;
  background-color: white;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 4px 8px 0 #00000033;
  white-space: nowrap;
  display: none;
}

@media (hover: hover) {
  .header__nav-item:hover .header__submenu {
    display: flex;
  }
}


@media(min-width: 1200px){
.header__nav-item .header__submenu ul{
  column-count: 2;
}
}

.header__submenu.active {
  display: flex;
}

.header__submenu-link {
  display: flex;
  padding: 8px 12px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
  text-decoration: none;
}

.header__submenu-link:hover {
  background-color: #f9f9f9;
}

.header__submenu-link.active{
  font-weight: 600;
}

.header__submenu-image {
  display: none;
  width: 320px;
  height: 240px;
}
/*******************************************************
HEADER SUBMENU LOGIC END
*******************************************************/

/*******************************************************
SLIDERS
*******************************************************/
.swiper.sliders {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 0;
}

.sliders__container {
  width: 100%;
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slider {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.slider__container {
  width: 100%;
  min-height: 460px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 16px;
}

.slider__content {
  width: 100%;
  max-width: 1084px;
  display: flex;
  justify-content: flex-end;
}

.slider__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 28px;
}

.slider__text-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.slider__headline {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-align: right;
  color: #052668;
}

.slider__subheadline {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  text-align: right;
  color: #052668;
}

.sliders .swiper-pagination,
.featured-products .swiper-pagination {
  width: max-content !important;
  display: flex;
  align-self: center;
  gap: 8px;
  position: static;
}

.sliders .swiper-pagination-bullet,
.featured-products .swiper-pagination-bullet {
  margin: 0 !important;
  opacity: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b6b8bb;
}

.sliders .swiper-pagination-bullet-active,
.featured-products .swiper-pagination-bullet-active {
  width: 52px;
  height: 4px;
  border-radius: 2px;
  background: #ffa100;
}



.featured-products .product-card__description ul{
    list-style: disc;
    padding-left: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeae5;
    margin-bottom: 20px;
    margin-top: 10px;
    color: inherit;

}





.logos {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  border-bottom: 1px solid #EAEAE5;
}

.logos__wrapper {
  overflow: hidden;
  position: relative;
}

.logos__list {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: scroll-logos 20s linear infinite alternate;
  width: max-content;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.logos__item {
  flex: 0 0 auto;
}

.logos__item img{
  height: 40px;
}

.services {
  width: 100%;
  margin: 20px 0 40px 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.services__list {
  width: 100%;
  max-width: 1084px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services__item {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 256px;
}

.services__icon {
  min-width: 40px;
  min-height: 40px;
}

.services__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services__name {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #052668;
}

.services__description {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.35;
  color: #717786;
}


.featured-products {
  width: 100%;
  margin-bottom: 40px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.featured-products__container {
  width: 100%;
  max-width: 1084px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-products__container .featured-products__slider {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.featured-products__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #052668;
}

.product-card {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
}

.product-card__gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-slider {
  width: 100%;
}

.product-card__gallery .swiper {
  z-index: 0;
}

.product-card__thumbs-slider {
  width: 100%;
}

.product-card__image-thumbnails {
   max-width: 412px;
  max-height: 348px;
  display: flex;
  gap: 12px;
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  flex-shrink: 0;
}

.product-card__image-main {
    width: 100%;
    max-width: 412px;
    max-height: 348px;
}

.product-card__image-main.empty{
  max-width: 100%;
}

.product-card__thumbnail {
    width: 108px;
    height: 108px;
    min-width: 108px;
    min-height: 108px;
    opacity: 0.5;
}

.product-card__image-main img,
.product-card__image-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  pointer-events: auto;
}

.product-card__thumbnail:hover, .product-card__thumbnail.active {
    opacity: 1;
    border: 2px solid #ffa100;
}

.product-card__thumbnail.swiper-slide-thumb-active {
  border: 2px solid #ffa100;
  opacity: 1;
}

.product-card__text {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card__name {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #2f323a;
}

.product-card__description {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.product-card__content {
  display: flex;
  flex-direction: column;
}

.catalog {
  width: 100%;
  margin-bottom: 40px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
}

.catalog__container {
  width: 100%;
  max-width: 1084px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.catalog__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catalog__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #052668;
}

.catalog__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog__category {
  border-radius: 4px;
  border: 1px solid #b6b8bb;
  padding: 8px 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #2f323a;
  transition: 0.5s;
}

.catalog__category:hover {
  border-color: #052668;
  color: #052668;
}

.catalog__category.active {
  background-color: #052668;
  color: white;
}

.catalog__products {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  display: none;
}

.catalog__products.active{
  display: flex;
}

.catalog-item {
  min-width: 325px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid #eaeae5;
  padding: 12px;
  box-shadow: 0 0 8px 0 #0000001a;
  position: relative;
}

.catalog-item .catalog-item__label {
  display: none;
}

.catalog-item--new .catalog-item__label {
  display: block;
  position: absolute;
  top: 28px;
  left: 12px;
  border-bottom-right-radius: 8px;
  padding: 5px 16px;
  background-color: #ffa100;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #2f323a;
}

.catalog-item__image {
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-item__details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-item__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  color: #2f323a;
}

.catalog-item__title a {
  text-decoration: none;
  color: inherit;
}

.catalog-item__title a:hover {
  color: #052668;
}

.catalog-item__code {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.35;
  color: #717786;
}

.catalog-item__stock {
  display: flex;
  gap: 8px;
}

.catalog-item__stock-label {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: #717786;
}

.catalog-item__stock-value {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: #2f323a;
}

.catalog-item__middle {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.catalog-item__pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-item__price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-item__price-new {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: #052668;
}

.catalog-item__price-old {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: line-through;
  color: #2f323a;
}

.catalog-item__favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.catalog-item__favorite::before {
  content: url(/pub/media/svg/favorites-gray.svg);
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.catalog-item__favorite.active::before {
  content: url(/pub/media/svg/favorites-yellow.svg);
}

.catalog-item__package {
  display: flex;
  justify-content: space-between;
}

.catalog-item__unit-price,
.catalog-item__quantity {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.35;
  color: #2f323a;
}

.catalog-item__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.catalog-item__counter {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  border: 1px solid #eaeae5;
  padding: 12px;
}

.catalog-item--preorder .catalog-item__counter {
  display: none;
}

.catalog-item--preorder .master-button {
  width: 100%;
}

.catalog-item__counter-btn {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #b6b8bb;
}

.catalog-item__counter-value {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
}

.about {
  width: 100%;
  margin-bottom: 40px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.about__content {
  width: 100%;
  max-width: 1084px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #052668;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__text  > *{
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  font-size: 14px;
}

.about__paragrah {
  font-size: 18px;
}

.about__paragraph--1 {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #717786;
}

.about__paragraph--2 {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  line-height: 1.6;
  color: #2f323a;
}


.about__gallery-wrapper{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

.about__gallery {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  overflow-y: hidden;

  animation: scroll-logos 40s linear infinite alternate;
  width: max-content;
}

.about__gallery img{
  height: 300px;
}

/*******************************************************
CATALOG
*******************************************************/

.catalog-page {
  display: flex;
  justify-content: center;
  padding: 0 20px 40px 20px;
}

.catalog-page__container {
  width: 100%;
  max-width: 1084px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.catalog-page__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-page__breadcrumb-link,
.catalog-page__breadcrumb-separator {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #b6b8bb;
  text-decoration: none;
}

.catalog-page__breadcrumb-current {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
}

.catalog-page__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catalog-page__title {
  font-family: "Manrope";
  font-weight: 600;
  font-size: 24px;
  color: #052668;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.catalog-page__title--large {
  white-space: normal;
}

.catalog-page__top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.catalog-page__products-count {
  display: flex;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #b6b8bb;
}

.catalog-page__products-number {
  display: flex;
}

.catalog-page__sort {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-page__sort-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #052668;
  padding: 10px 24px;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
  white-space: nowrap;
}

.catalog-page__sort-button::after {
  content: url(/pub/media/svg/sort.svg);
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.sort__menu {
  width: 100%;
  padding: 10px 0;
  position: absolute;
  display: none;
  flex-direction: column;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: white;
  z-index: 1;
  top: calc(39px + 1rem);
  right: 0;
}

.sort__option input {
  display: none;
}

.sort__menu.active {
  display: flex;
}

.sort__option {
  padding: 6px 30px 6px 10px;
  border-radius: 6px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.sort__option:hover {
  background-color: #f9f9f9;
}

.sort__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 18px;
}

.sort__label::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
}

.sort__option input:checked + .sort__label::before {
  content: url(/pub/media/svg/checkmark.svg);
  display: block;
}

.catalog-page__content {
  display: flex;
  gap: 20px;
}

/*******************************************************
FILTERS
*******************************************************/

.filters {
  width: calc(100% - 40px);
  max-height: 100%;
  position: fixed;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 353px;
  top: 43px;
  transform: translateX(calc(-100% - 32px));
  border-radius: 8px;
  padding: 40px 24px;
  background-color: white;
  z-index: 3;
  box-shadow: 0 0 12px 0 #00000040;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: 0.5s;
}

@media(max-width: 992px){
  .filters {
    max-height: calc(100% - 86px);
  }
}

.filters.active {
  left: 50%;
  transform: translateX(-50%);
}

.filters__reset {
  height: 44px;
  padding: 10px 24px;
  border: 1px solid #eaeae5;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
  cursor: pointer;
}

.filters__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeae5;
}

.filters__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.52px;
  color: #052668;
  text-transform: uppercase;
}



.filters__group .filters__toggle::after {
  content: url(/pub/media/svg/chevron-down.svg);
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.filters__group.active .filters__toggle::after {
  content: url(/pub/media/svg/chevron-up.svg);
}

.filters__content {
  display: none;
}

.filters__group.active .filters__content {
  display: block;
}

.filters__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filters__item {
  display: flex;
  justify-content: space-between;
}

.filters__text,
.filters__count {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
}

.filters__text {
  color: #2f323a;
  text-decoration: none;
}

.filters__count {
  color: #717786;
}

.filters__item.active .filters__text,
.filters__item.active .filters__count {
  color: #052668;
}

.filters__options,
.filters__option,
.filters__suboptions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filters__option {
  align-items: flex-end;
}

.filters__suboptions {
  width: 90%;
  max-width: 277px;
}

.filters__checkbox,
.filters__radio {
  display: none;
}

.filters__label {
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.filters__option .filters__text {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filters__group--checkbox .filters__text::before {
  display: flex;
  content: "";
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #b6b8bb;
}


.filters__option.filters__item--color .filters__text::before{

   background-color: var(--filter-bg, transparent);
}


.filters__checkbox:checked + .filters__label .filters__text::before {
  content: url(/pub/media/svg/checkbox.svg);
  border: none;
}

.filters__more {
  width: max-content;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #052668;
}

.filters__group--hinted {
  gap: 4px;
  padding-bottom: 4px;
}

.filters__hint {
  width: max-content;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 9px;
  color: #2f323a;
}

.filters__group--radio .filters__text::before {
  display: flex;
  content: "";
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  border: 1px solid #b6b8bb;
  border-radius: 50%;
}

.filters__radio:checked + .filters__label .filters__text::before {
  display: flex;
  content: url(/pub/media/svg/radio.svg);
  border: none;
  align-self: flex-start;
}

.filters__range {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filters__range .noUi-target {
  background: #eaeae5;
  border-radius: 1px;
  border: none;
  box-shadow: none;
}

.filters__range .noUi-horizontal {
  height: 2px;
}

.filters__range .noUi-connect {
  background: #052668;
}

.filters__range .noUi-horizontal .noUi-handle {
  width: 8px;
  height: 8px;
  right: -4px;
  top: -3px;
}

.filters__range .noUi-handle::before,
.filters__range .noUi-handle::after {
  display: none;
}

.filters__range .noUi-handle {
  border: none;
  border-radius: 50%;
  background: #052668;
  cursor: pointer;
  box-shadow: none;
}

.filters__range-inputs {
  display: flex;
  gap: 20px;
}

.filters__range-input {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #b6b8bb;
  padding: 8px 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #2f323a;
}

.filters__range-input::placeholder {
  color: #b6b8bb;
}

.filters__apply {
  padding: 10px 24px;
  background-color: #ffa100;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
  cursor: pointer;
}

/*******************************************************
CATALOG-CONTENT
*******************************************************/
.catalog-page__products {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.catalog-page__controls {
  display: flex;
  width: 100%;
  gap: 20px;
}

.catalog-page__controls img {
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.filters__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #052668;
  padding: 10px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
  white-space: nowrap;
}

.catalog-page__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.catalog-page__list .catalog-item {
  width: 100%;
  min-width: auto;
}

.catalog-page__load-more {
  border: 1px solid #052668;
  padding: 10px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
}

/*******************************************************
ITEM-DETAILS
*******************************************************/

.catalog-page__layout {
  display: none;
  justify-content: space-between;
  gap: 20px;
}

.catalog-page__layout-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 532px;
}

.catalog-page__layout-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 460px;
}

.product-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-info__description {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eaeae5;
}

.product-options__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-options__label {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;
}

.product-options__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-options__input {
  display: none;
}

.product-options__button {
  height: 34px;
  padding: 7px 12px 8px 12px;
  border-radius: 4px;
  border: 1px solid #eaeae5;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: #2f323a;
  cursor: pointer;
}

.product-options__input:checked + .product-options__button,
.product-options__input:checked + .product-options__color {
  border: 1px solid #052668;
  color: #052668;
}

.product-options__color {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #b6b8bb;
  cursor: pointer;
}

.product-options__color--1 {
  background-color: white;
}
.product-options__color--2 {
  background-color: #f9f9f9;
}
.product-options__color--3 {
  background-color: #ecd3b5;
}
.product-options__color--4 {
  background-color: #d6a46d;
}
.product-options__color--5 {
  background-color: #2f323a;
}

.product-status {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-status .catalog-item__price {
  gap: 24px;
}

.product-status .catalog-item__price-old {
  color: #717786;
  margin-bottom: auto;
}

.product-status__discount {
  padding: 3px 4px;
  background-color: #f9f9f9;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #ffa100;
}

.product-packages {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-meta__code {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  color: #2f323a;
}

.product-actions {
  display: flex;
  gap: 20px;
  position: relative;
}

.product-actions .catalog-item__counter {
  width: 100px;
}

.product-actions .master-button {
  width: 100%;
}


.product-actions.disabled{
  pointer-events: none;
  opacity: .5;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-specs__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;
}

.product-specs__row {
  display: flex;
  gap: 8px;
}

.product-specs__row div {
  flex: 1;
  margin-bottom: 4px;
  border-bottom: 1px dashed #b6b8bb;
}

.product-specs__label {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.product-specs__value {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2f323a;
}

.product-summary {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-summary__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #2f323a;
}

.product-summary__text {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.catalog__sidebar-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #2f323a;
}

/*******************************************************
CART
*******************************************************/

.checkout-flow {
  max-width: 716px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.cart-page__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-page__section:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeae5;
}

.cart-page__section.cart-items {
  gap: 20px;
}

.cart-page__section-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-page__section-step {
  border-radius: 4px;
  border: 1px solid #eaeae5;
  padding: 4px 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.6;
  color: #2f323a;
}

.cart-page__section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #2f323a;
}

.cart-items__head {
  display: none;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeae5;
}

.cart-items__head-wrapper {
  display: flex;
}

.cart-items__head-col {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #717786;
}

.cart-items__head-col--quantity {
  margin-left: auto;
  margin-right: 80px;
}

.cart-items__head-col--price {
  margin-right: 60px;
}

.cart-items__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}


.cart-item.is-busy{
  opacity: .5;
  pointer-events: none;
}

.cart-item:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeae5;
}

.cart-item__main {
  display: flex;
  gap: 20px;
}

.cart-item__image,
.cart-item__image img {
  width: 108px;
  height: 108px;
  min-width: 108px;
  min-height: 108px;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
}

.cart-item__name {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;
  text-decoration: none;
}

.cart-item__name:hover {
  color: #052668;
}

.cart-item__detail {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  color: #717786;
}

.cart-item__aside {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__price-control {
  display: flex;
  align-items: center;
  gap: 58px;
}

.cart-item__price-control .catalog-item__counter {
  width: 70px;
  height: 35px;
  padding: 8px;
}

.cart-item__price-control .catalog-item__counter-value {
  font-size: 12px;
}

.cart-item__price {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item__remove,
.cart-item__remove img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.user-info__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-info__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;
}

.user-info__form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.user-info__form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.user-info__label {
  width: max-content;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  color: #717786;
  cursor: pointer;
}

.user-info__input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-info__input {
  border-radius: 2px;
  border: 1px solid #eaeae5;
  padding: 12px 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;
  max-width: 100%;
}

.user-info__input:focus {
  border-color: #b6b8bb;
}

.user-info__input::placeholder {
  color: #b6b8bb;
}

.user-info__input-wrapper.error .user-info__input {
  border-color: #ea0a36;
}

.user-info__error-message {
  display: none;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.6;
  color: #ea0a36;
}

.user-info__input-wrapper.error .user-info__error-message {
  display: block;
}

.user-info__checkbox-input {
  display: none;
}

.user-info__checkbox-label {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #717786;
}

.user-info__checkbox-label::before {
  content: "";
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  border: 1px solid #ffa100;
}

.user-info__checkbox-input:checked + .user-info__checkbox-label::before {
  content: url(/pub/media/svg/checkbox-yellow.svg);
  border: none;
}

.cart-select__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-select__input {
  display: none;
}

.cart-select__option {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 4px;
  border: 1px solid #b6b8bb;
  padding: 16px 20px;
}

.cart-select__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.cart-select__label strong {
  font-weight: 600;
}

.cart-select__label::after {
  content: url(/pub/media/svg/radio-gray.svg);
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.cart-select__description {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.cart-select__input:checked + .cart-select__option {
  border: 1px solid #ffa100;
}

.cart-select__input:checked + .cart-select__option .cart-select__label {
  color: #2f323a;
}

.cart-select__input:checked + .cart-select__option .cart-select__label::after {
  content: url(/pub/media/svg/radio-yellow.svg);
}

.order-summary {
  width: calc(100% - 40px);
  max-width: 353px;
  margin-top: 50.6px;
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 32px;
  z-index: 1;
}

.order-summary__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 4px 15px 0 #00000026;
}

.order-summary__header {
  display: flex;
  flex-direction: column;
}

.order-summary__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #2f323a;
}

.order-summary__count {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.6;
  color: #717786;
}

.order-summary__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-summary__breakdown {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-summary__row,
.order-summary__total {
  display: flex;
  justify-content: space-between;
}

.order-summary__label,
.order-summary__value {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
}

.order-summary__label {
  color: #717786;
}

.order-summary__value {
  color: #2f323a;
}

.order-summary__total .order-summary__label,
.order-summary__total .order-summary__value {
  font-size: 16px;
  color: #2f323a;
}

.order-summary__actions {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.order-summary__remove {
  padding: 10px 12px;
}

.order-summary__remove img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.order-summary__submit {
  width: 100%;
  height: 44px;
  padding: 10px 24px;
  background-color: #ffa100;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
}

.order-summary__submit:hover {
  opacity: 0.75;
}

.order-summary__back {
  display: none;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 44px;
  border: 1px solid #052668;
  padding: 10px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #052668;
  text-decoration: none;
}

.cart__container {
  display: none;
}

/*******************************************************
ORDER-SUCCESS
*******************************************************/

.order-success__content {
  width: calc(100% - 40px);
  max-width: 1083px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.order-success__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.order-success__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #2f323a;
}

.order-success__close,
.order-success__close img {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}

.order-success__message,
.order-success__order-number,
.order-success__contact {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.order-success__order-number strong {
  font-weight: 700;
  color: #2f323a;
}

.order-success__contact a:first-child {
  color: #2f323a;
  text-decoration: none;
}

.order-success__contact a:last-child {
  color: #052668;
}

/*******************************************************
SEARCH
*******************************************************/
.catalog-page__sort.search {
  width: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-page__sort-button.search {
  width: auto;
  gap: 8px;
  border: none;
  padding: 0;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-page__sort-button.search::after {
  content: url(/pub/media/svg/chevron-down.svg);
}

.sort__menu.search.active {
  width: 260px;
  top: calc(18px + 1rem);
}

.no-results {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.no-results__title {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  color: #2f323a;
}

.no-results__description {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #717786;
}

.no-results__description a {
  color: #052668;
}

/*******************************************************
CONTACTS
*******************************************************/
.contacts-hero__subtitle {
  margin-top: 0.5rem;
}

.contacts-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 12px 20px;
  box-shadow: 0 4px 15px 0 #00000026;
}

.contacts-info {
  min-width: 300px;
}

.contacts-info__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacts-info__title,
.contacts-form__title {
  margin-bottom: 1rem;
}

.contacts-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contacts-info__item {
  color: #717786;
}

.contacts-info__item strong {
  color: #2f323a;
}

.contacts-info__item a {
  color: #052668;
}

.contacts-form,
.contacts-form__row.user-info__form-group,
.contacts-form__input.user-info__input {
  width: 100%;
  max-width: 100%;
}

.contacts-form__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}


.contacts-form__form .form-response{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  display: none;
}


.contacts-form__form .form-section{
  display: none;
  flex-direction: column;
}

.contacts-form__form .form-section .media{
  width: 100%;
  height: 100%;
  margin-bottom: 1rem;
}


.contacts-form__form.response .form-response,
.contacts-form__form.response.success .form-response .form-success,
.contacts-form__form.response.error .form-response .form-error{
  display: flex;
}


.contacts-form__form.load > .contacts-form__row,
.contacts-form__form.load > button{
  opacity: .5;
  pointer-events: none;
}


.contacts-form__form.load:before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 5px solid #ffa100;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    inset: 0;
    margin: auto;
    z-index: 100;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 




/*******************************************************
JOBS
*******************************************************/
.jobs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.job-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 12px 20px;
  box-shadow: 0 4px 15px 0 #00000026;
}

.job-card__title {
  margin-bottom: 8px;
}

.job-card__details {
  list-style: disc;
  padding-left: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeae5;
  margin-bottom: 20px;
}

.job-card__location {
  margin-bottom: 16px;
}

.job-card__apply {
  margin-top: auto;
}

.job-card__content{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
}

.job-card__content ul{
    list-style: disc;
    padding-left: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeae5;
    margin-bottom: 20px;
    color: #2f323a;

}

/*******************************************************
SERVICES
*******************************************************/
.services-list__grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card__number {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: #ddd;
  font-size: 60px;
  margin-bottom: 10px;
}

.service-card__title {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #2f323a;
  line-height: 1.2;
  font-size: 20px;
  margin-bottom: 26px;
}

.service-card__description {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  color: #717786;
  line-height: 1.8;
  font-size: 15px;
}

.service-card__media,
.service-card__icon {
  margin: auto;
  width: 50%;
  min-width: 50%;
}
/*******************************************************
CLIENTS
*******************************************************/
.logos.clients {
  padding: 40px 0;
}

.clients__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-left: 5px solid #ffa100;
  border-radius: 8px;
  box-shadow: 0 4px 15px 0 #00000026;
}

.testimonial__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonial__author {
  order: -1;
}

/*******************************************************
ABOUT US
*******************************************************/

.about-us__title {
  margin-bottom: 24px;
}

.about-us__content {
  display: flex;
  flex-direction: column;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;
}

.about-us__content h2{
  margin: 0;
  font-size: 18px;
  margin-bottom: .3rem;
}

.about-us__content h3{
  margin: 0;
  font-size: 16px;
  margin-bottom: .3rem;
}

.about-us__content * + p,
.about-us__content * + ul{
  margin-bottom: 1rem;
}

.about-us__content ul{
  list-style: disc;
  padding-left: 1.5rem;
}

.about-us__content a{
  color: #052668;
}




.about-us__content img{
  width: 100%;
    max-width: max-content;
    max-height: 350px;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 10px;


  margin: 1rem 0 2rem 0;
}



.about-gallery__title {
  margin-bottom: 24px;
}

.about-gallery__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-gallery__item {
  position: relative;
}

.about-gallery__image {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.about-gallery__caption {
  position: absolute;
  top: 0;
  right: 0;
  border-bottom-left-radius: 8px;
  padding: 5px 16px;
  background-color: #ffa100;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 13px;
}

/*******************************************************
BLOG
*******************************************************/
.blog__grid__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-card {
  border-radius: 12px;
  box-shadow: 0 4px 15px 0 #00000026;
  display: flex;
  flex-direction: column;
}

.blog-card__image {
  height: 50%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.blog-card__content {
  height: 50%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.blog-card__link {
  margin-top: auto;
}

/*******************************************************
BLOG POST
*******************************************************/
.blog-post__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-post__image {
  width: 100%;
  max-width: max-content;
  max-height: 400px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.blog-post__content ul {
  list-style: disc;
  padding-left: 20px;
}


.blog-post__content{

    font-family: "Manrope", sans-serif;
    font-size: 14px;
}

.blog-post__content p{
    font-weight: 500;
    line-height: 1.6;
    color: #2f323a;
}

.blog-post__content h2{
    font-weight: 500;
    line-height: 1.6;
    color: #2f323a;
}

/*******************************************************
JOB APPLY
*******************************************************/

.apply__container{
  gap: 1rem !important;
}

.apply-page{
  
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 2rem;
}


.apply-content{
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  color: #2f323a;

}

.apply-content * + p{
  margin-top: 1rem;
}

.apply-content strong,
.apply-content b{
  font-weight: 600;
}

.apply-content ul {
    list-style: disc;
    padding-left: 20px;
    padding-bottom: 1rem;
    color: #2f323a;
}


.apply-form-container{
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 12px 20px;
  box-shadow: 0 4px 15px 0 #00000026;
}


.apply-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;

}

.apply-form .user-info__form-group {
  width: 100%;
  max-width: 100%;
}






.apply-form .form-response{
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}


.apply-form .form-section{
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.apply-form.response .form-response,
.apply-form.response.success .form-response .form-success,
.apply-form.response.error .form-response .form-error{
  display: flex;
}


.apply-form.load > .user-info__form-group,
.apply-form.load > button{
  opacity: .5;
  pointer-events: none;
}


.apply-form.load:before {
    content: '';
    position: absolute;
    width: 48px;
    height: 48px;
    border: 5px solid #ffa100;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    inset: 0;
    margin: auto;
    z-index: 100;
}




/*******************************************************
REGISTER/LOGIN
*******************************************************/
.register-form,
.login-form {
  border-radius: 8px;
  box-shadow: 0 4px 15px 0 #00000026;
  padding: 40px;
  width: 100%;
}

.register-form__form,
.login-form__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-info__input-wrapper {
  position: relative;
}

.register-form__toggle-password,
.login-form__toggle-password {
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 14px;
  width: 20px;
  height: 20px;
}

.register-form__toggle-password::after,
.login-form__toggle-password::after {
  content: url(/pub/media/svg/eye-outline.svg);
}

.register-form__toggle-password.active::after,
.login-form__toggle-password.active::after {
  content: url(/pub/media/svg/eye-off-outline.svg);
}

.register-form__footer-link,
.login-form__footer-link {
  color: #052668;
}

/*******************************************************
DASHBOARD
*******************************************************/
.dashboard {
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1084px;
  margin: 0 20px;
  padding: 60px 0;
  border-top: 1px solid #eaeae5;
}

.container > .header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px 30px;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
  position: relative;
}

.user-avatar {
  width: 30px;
  height: 30px;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  background: #ffa100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #2f323a;
}

.user-role {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #717786;
}

.user-info__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 4px 8px 0 #00000033;
  background: white;
  z-index: 1;
}

.user-info:hover .user-info__dropdown {
  display: flex;
}

.user-info__dropdown-item {
  padding: 8px 12px;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #2f323a;
  text-decoration: none;
  display: flex;
  justify-content: flex-start;
}

.user-info__dropdown-item:hover {
  background: #f9f9f9;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #ffa100, #ff8c00);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: linear-gradient(45deg, #ffa100, #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.stat-value {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  margin-top: auto;
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
}

.orders-section,
.profile-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.section-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title__icon {
  width: 30px;
  height: 30px;
}

.section-title__text {
  font-family: "Alegreya Sans", serif;
  font-weight: 600;
  font-size: 24px;
  color: #333;
}

.orders-list {
  margin-top: 25px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.order-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-color: #ffa100;
}

.order-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order-id {
  font-weight: 600;
  color: #333;
}

.order-date {
  color: #666;
  font-size: 14px;
}

.order-status {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-processing {
  background: #fff3cd;
  color: #856404;
}

.status-shipped {
  background: #d1ecf1;
  color: #0c5460;
}

.status-delivered {
  background: #d4edda;
  color: #155724;
}

.profile-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-weight: 500;
  color: #333;
}

.form-input {
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}

.form-input:focus {
  outline: none;
  border-color: #ffa100;
  box-shadow: 0 0 0 3px rgba(255, 161, 0, 0.1);
}

.btn-primary,
.btn-secondary {
  padding: 14px 25px;
  border: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(45deg, #ffa100, #ff8c00);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 161, 0, 0.3);
}

.btn-secondary {
  background: #ccc;
  color: #333;
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(255, 161, 0, 0.4);
}

.btn-secondary:hover {
  background-color: #bbb;
}

.notification {
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 4px solid #28a745;
  display: none;
}

.floating-action {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ffa100, #ff8c00);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(255, 161, 0, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-action:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 161, 0, 0.5);
}

.quick-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.quick-btn {
  background: rgba(255, 161, 0, 0.1);
  border: 2px solid #ffa100;
  color: #ffa100;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.quick-btn:hover {
  background: #ffa100;
  color: white;
  transform: translateY(-2px);
}

.status {
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 161, 0, 0.1);
  border-radius: 15px;
}

.status__title {
  color: #ffa100;
  margin-bottom: 15px;
  font-family: "Alegreya Sans", serif;
}

.status__description {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

.status__progress-wrapper {
  margin-top: 15px;
}

.status__progress-bar {
  background: white;
  height: 8px;
  border-radius: 4px;
  position: relative;
}

.status__progress-fill {
  background: #ffa100;
  height: 100%;
  width: 75%;
  border-radius: 4px;
}

.status__progress-text {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

/* LOGOUT MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.modal[hidden] {
  display: none;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}

.modal__content {
  position: relative;
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 90%;
  z-index: 10;
  text-align: center;
}

.modal__buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* ORDER-ITEM DETAILS MODAL */
.modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  border: none;
  background: none;
  font-size: 24px;
}

/*******************************************************
FOOTER
*******************************************************/

.footer {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  border-top: 1px solid #eaeae5;
}

.footer__container {
  width: 100%;
  max-width: 1084px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo img {
  min-width: 164px;
  min-height: 40px;
}

.footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer__navigation {
  display: flex;
  gap: 100px;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__link {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #2f323a;
  text-decoration: none;
}

.footer__link.active{
  color: #052668;
  font-weight: 700;
}

.footer__link:hover {
  color: #052668;
}

.footer__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__location {
  display: flex;
  gap: 12px;
}

.footer__icon img {
  min-width: 24px;
  min-height: 24px;
}

.footer__details {
  display: flex;
  flex-direction: column;
}

.footer__label {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.7;
  color: #052668;
}

.footer__text {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #717786;
}

.footer__text a{
  color: inherit;
  text-decoration: none;
}

.footer__text a:hover{
  text-decoration: underline;
}

.footer__socials {
  display: flex;
  gap: 8px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


@media(max-width: 768px){
  .footer__bottom{
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    row-gap: 20px;
  }

}


.footer__copyright {
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: #717786;
}

.footer__copyright a{
  color: inherit;
}

@media (min-width: 480px) {

  .logos__list {
    gap: 80px;
  }

  .services {
    margin: 60px 0;
  }

  .services__item {
    flex-direction: column;
    max-width: 47%;
  }

  .services__content {
    gap: 8px;
  }

  .services__name,
  .services__description {
    display: flex;
    flex-direction: column;
  }

  .featured-products,
  .catalog {
    margin-bottom: 60px;
  }

  .featured-products__title,
  .catalog__title,
  .about__title {
    font-size: 28px;
  }


  .featured-products {
    .featured-products__slider {
      .product-card {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 6.4vw;

        .product-card__gallery,
        .product-card__content {
          width: 100%;
        }
      }

/*      .swiper-pagination {
        position: absolute;
        bottom: 0;
        left: calc(50% + 3.2vw);
      }*/
    }
  }



  .product-card__thumbs-slider {
    height: 348px;
  }
  

  .product-card__gallery {
    flex-direction: row;
  }

  .product-card__image-thumbnails {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }


  .catalog-item {
    min-width: 256px;
  }

  .about {
    margin-bottom: 0;
  }

  .catalog-page__list .catalog-item {
    max-width: 47%;
  }

  .product-actions .master-button {
    width: max-content;
  }

  .job-card {
    width: 46%;
  }

  .service-card {
    flex-direction: row;
    gap: 38px;
  }

  .service-card--reverse {
    flex-direction: row-reverse;
  }

  .clients__section-title,
  .about-gallery__title {
    font-size: 24px;
  }

  .register-form,
  .login-form {
    width: 75%;
  }

  .footer {
    padding-top: 60px;
  }

  .footer__main {
    gap: 1rem;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__navigation {
    order: 1;
  }

  .footer__top .footer__socials {
    display: none;
  }

  .footer__bottom .footer__socials {
    display: flex;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 20px 0 40px;
    border: none;
  }

  .container > .header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .user-info {
    width: 100%;
    justify-content: space-evenly;
  }

  .user-avatar {
    background: white;
    color: #ffa100;
  }

  .main-content {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .order-item {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

@media (min-width: 768px) {
  .header__topbar-container {
    padding: 20px 20px;
  }

  .header__topbar-container .header__auth {
    display: none;
  }

  .header__nav-wrapper {
    position: static;
    width: auto;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
    max-height: none;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .header__nav-inner {
    padding: 0;
    flex-direction: row;
    gap: 36px;
  }

  .header__nav {
    padding-right: 36px;
    border-right: 1px solid #2f323a;
  }

  .header__menu-list {
    display: flex;
    gap: 20px;
  }

  .header__menu-link {
    padding: 0;
    font-size: 13px;
  }

  .header__menu-link:hover {
    background-color: transparent;
    text-decoration: underline;
  }

  .header__request {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__request-button {
    width: max-content;
    border: none;
    padding: 0;
  }

  .header__request-button::before {
    content: url(/pub/media/svg/plane-white.svg);
  }

  .header__main-container {
    gap: 24px;
  }

  .header__main-container > .header__icons {
    display: none;
  }

  .header__icons {
    gap: 12px;
  }

  .header__search-form--mobile.active {
    display: none;
  }

  .header__desktop-tools {
    display: flex;
    gap: 24px;
  }

  .header__actions {
    display: flex;
  }

  .header__categories .header__actions {
    display: none;
  }

  .services__item {
    max-width: 22%;
  }

  .product-card {
    flex-direction: row;
    justify-content: space-between;
  }

  .product-card__gallery {
    flex-direction: column;
    width: 50%;
  }

  .product-card__gallery.item-details {
    width: 100%;
  }

  .product-card__image-thumbnails {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .product-card__content {
    max-width: 460px;
  }

  .catalog-page {
    padding: 0 20px 60px 20px;
  }

  .catalog-page__container {
    padding-top: 60px;
    border-top: 1px solid #eaeae5;
    gap: 32px;
  }

  .catalog-page__layout {
    display: flex;
  }

  .catalog-page__list .catalog-item {
    max-width: 31%;
  }

  .product-summary ~ .catalog__container {
    gap: 24px;
  }

  .cart-items__head {
    display: block;
  }

  .cart-item {
    flex-direction: row;
  }

  .cart-item__aside {
    width: auto;
  }

  .cart-item__price-control {
    gap: 8px;
  }

  .cart-item__actions {
    gap: 4px;
  }

  .cart-item__price {
    margin-left: 22.5px;
  }

  .user-info__form-group {
    max-width: 48.1%;
  }

  .cart-page__container {
    gap: 40px;
  }

  .page__container.cart-page__container {
    gap: 40px;
  }

  .cart-page__content {
    padding-bottom: 40px;
    /*border-bottom: 1px solid #eaeae5;*/
  }

  .cart__container {
    display: flex;
    gap: 24px;
  }

  .contacts-content {
    flex-direction: row;
  }

  .job-card {
    width: 30%;
  }

  .services-list__grid {
    gap: 58px;
  }

  .service-card {
    gap: 43px;
  }

  .service-card__number {
    font-size: 80px;
    margin-bottom: 11px;
  }

  .service-card__title {
    font-size: 22px;
    margin-bottom: 29px;
  }

  .service-card__description {
    font-size: 16px;
  }

  .testimonial {
    flex-direction: row;
  }

  .testimonial__author {
    order: 0;
  }

  .blog-card {
    flex-direction: row;
  }

  .blog-card__image {
    height: auto;
    width: 50%;
    border-radius: 0;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .blog-card__content {
    height: auto;
    width: 50%;
  }

  .apply-form .user-info__form-group {
    width: 48%;
  }

  .page {
    padding: 0 20px 60px 20px;
  }

  .page__container {
    padding-top: 60px;
    border-top: 1px solid #eaeae5;
    gap: 32px;
  }

  .footer__main {
    gap: 100px;
  }

  .register-form,
  .login-form {
    width: 50%;
  }

  .register-form__field,
  .login-form__field {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .header__main-container {
    gap: 75px;
  }

  .header__desktop-tools {
    gap: 75px;
  }

  .header__search-form {
    width: 369px;
  }

  .blur-layer {
    display: none;
  }

  .product-card__gallery {
    flex-direction: row;
    width: auto;
  }

  .product-card__image-thumbnails {
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .catalog-page__section {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .catalog-page__title {
    font-size: 28px;
    width: fit-content;
  }

  .catalog-page__title--large {
    white-space: nowrap;
  }

  .catalog-page__products-count {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: 28px;
  }

  .catalog-page__products-number::before {
    content: "(";
  }

  .catalog-page__products-number::after {
    content: ")";
  }

  .catalog-page__products-label {
    display: none;
  }

  .catalog-page__products {
    gap: 20px;
  }

  .filters {
    position: static;
    max-width: 256px;
    transform: translateX(0);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 0;
    overflow-y: visible;
  }

  .filters__apply {
    display: none;
  }

  .catalog-page__controls {
    display: none;
  }

  .catalog-page__sort {
    width: auto;
  }

  .catalog-page__sort-button {
    width: auto;
    gap: 8px;
    border: none;
    padding: 0;
    font-family: "Alegreya Sans", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #2f323a;
    letter-spacing: 0;
  }

  .catalog-page__sort-button::after {
    content: url(/pub/media/svg/chevron-down.svg);
  }

  .sort__menu {
    width: 260px;
    top: calc(18px + 1rem);
  }

  .catalog-page__load-more {
    width: max-content;
  }

  .filters__range-slider {
    margin: 0 4px;
  }

  .cart-page__content {
    display: flex;
    gap: 32px;
  }

  .order-summary {
    position: static;
    transform: translateX(0);
  }

  .order-summary__content {
    border-radius: 0;
    z-index: 0;
    background-color: transparent;
    gap: 20px;
  }

  .order-summary__header {
    gap: 4px;
    margin-bottom: 20px;
  }

  .order-summary__body {
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeae5;
  }

  .order-summary__breakdown {
    gap: 8px;
  }

  .order-summary__remove {
    display: none;
  }

  .order-summary__back {
    display: flex;
  }

  .clients__section-title,
  .about-gallery__title {
    font-size: 28px;
  }

  .page__title {
    font-size: 28px;
  }
}

@media (min-width: 1200px) {
  .header__main .header__actions {
    display: none;
  }

  .header__categories .header__actions {
    display: flex;
  }

  .header__contacts {
    display: flex;
  }

  .header__nav-item {
    display: flex;
    align-items: center;
    height: 32px;
  }

  .header__submenu {
    width: 1084px;
    padding: 20px;
    left: 0;
  }

  .header__submenu-image {
    display: block;
  }

  .services__item {
    max-width: 256px;
  }

  .catalog-page__list .catalog-item {
    width: 256px;
    max-width: 256px;
  }

  .services-list__grid {
    gap: 96px;
  }

  .service-card {
    gap: 64px;
  }

  .service-card__number {
    font-size: 90px;
    margin-bottom: 12px;
  }

  .service-card__title {
    font-size: 30px;
    margin-bottom: 32px;
  }


}




.form-response{
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.6;
    color: #ea0a36;
}


.cart-flytip{
  position: absolute;
  z-index: 9999;
  padding: 8px 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
  background: #ffa100; 
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -6px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
  white-space: nowrap;
}
.cart-flytip--show{
  opacity: 1;
  transform: translate(-50%, -12px) scale(1);
}


.catalog-page__products.is-loading{opacity:.6;pointer-events:none;position:relative}
.catalog-page__products.is-loading::after{
  content:"";position:absolute;inset:0;background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,.06), transparent 40%);
}







.related__thumbnail {
    max-height: 108px;
    opacity: 0.5;
}


.related__image-main img, .related__image-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
}


.featured-card__gallery {
    display: grid;
    gap: 12px;
}


@media (min-width: 992px) {
    .featured-card__gallery {
        grid-template-columns: 3.5fr 1fr;
    }
}
@media (min-width: 768px) {
    .featured-card__gallery {
        width: 50%;
        min-width: 50%;
        grid-template-columns: 1fr;
    }
}
@media (min-width: 480px) {
    .featured-card__gallery {
        grid-template-columns: 3.5fr 1fr;
    }
}



.featured-card__gallery .swiper {
    z-index: 0;
}

.featured-card__image-main {
    max-height: 348px;
}

.featured-card__image-main img, .featured-card__image-thumbnails img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.featured-card__image-thumbnails{
  display: flex;
}

.featured-card__thumbnail {
    max-height: 108px;
    opacity: 0.5;
}

.featured-card__thumbnail:hover, 
.featured-card__thumbnail.active,
.featured-card__thumbnail.swiper-slide-thumb-active{
    opacity: 1;
    border: 2px solid #ffa100;
}


@media (min-width: 480px) {
    .featured-card__gallery {
        grid-template-columns: 3.5fr 1fr;
    }
}


@media (min-width: 768px) {
    .featured-card {
        flex-direction: row;
        justify-content: space-between;
    }
}




@media (min-width: 992px) {
    .featured-card__thumbs-slider {
        height: 348px;
    }
}
@media (min-width: 768px) {
    .featured-card__thumbs-slider {
        height: auto;
    }
}
@media (min-width: 480px) {
    .featured-card__thumbs-slider {
        height: 348px;
    }
}
.featured-card__thumbs-slider {
    width: 100%;
}




.custom-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 999;
}

body.modal-active{
  overflow: hidden;
}


.custom-modal.active {
  opacity: 1;
  pointer-events: all;
}


.modal-wrapper {
  background: #fff;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform .3s ease;

  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 20px 20px;
  box-shadow: 0 4px 15px 0 #00000026;
}

.modal-header{
  display: flex;
  position: relative;
}


.modal-header h2{
    font-family: "Manrope";
    font-weight: 600;
    font-size: 24px;
    color: #052668;
}

.modal-header button{
  position: absolute;
  width: 30px;
  height: 30px;
  right: 0px;
}








.slider__container{
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slider__container .slider__bg{
  position:absolute;
  inset:0;
  z-index:0;
  display:block;
}

.slider__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.slider__link-all{
  position:absolute; inset:0;
  z-index:2;
}

.slider__content{
  position:relative;
  z-index:1;
}



.slider__container .slider__slide{
    align-items: center;
    width: 50%;
}


.slider__container .slider__slide .slider__headline{
    font-size: 28px;
    text-align: center;
    text-transform: uppercase;
}


@media(max-width: 768px){

   
  .slider__container{ align-items:flex-start; }


  .slider__container .slider__slide{
    width: 100%;
    align-items: flex-end;
  }


  .slider__container .slider__slide .slider__headline{
    text-align: right;
    font-size: 25px;
  }




}





.catalogTeasersTabs .catalog__products.active{
  display: flex;
  flex-direction: column;
}

.treaser-product-list{
  display: inherit;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
}

@media (min-width: 480px) {
    .catalogTeasersTabs .catalog-item {
        max-width: calc((100% - (20px * 3)) / 4);
    }
}


.catalogTeasersTabs .catalog__footer{
  display: flex;
  position: relative;
}

.catalogTeasersTabs .catalog__footer a{
    border-radius: 4px;
    padding: 8px 12px;
    border: 1px solid #b6b8bb;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.35;
    color: #052668;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s;
}

.catalogTeasersTabs .catalog__footer a:hover{
    border-color: #052668;
    color: #052668;
}



.mobile-nav{
  display: none;
}

@media(max-width: 800px){

  .mobile-nav{
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 28px;
    /*position: relative;*/
  }


  .mobile-nav > .item{
      font-family: "Alegreya Sans", sans-serif;
      font-weight: 500;
      font-size: 15px;
      color: #2f323a;
      /*position: relative;*/
      cursor: pointer;
  }

  .link{
    display: flex;
    align-items: center;
    position: relative;
  }

  .mobile-nav > .item .link::after {
      content: url(/pub/media/svg/chevron-down.svg);
      width: 16px;
      height: 16px;
      min-width: 16px;
      min-height: 16px;
      margin-left: 5px;
  }


  .header__categories{
    position: relative;
  }


  .header__categories-container{
    position: absolute;
    background: #fff;
    display: flex;
    z-index: 10;
    left: 20px;
    width: 235px;
    padding: 4px;
    box-shadow: 0 4px 8px 0 #00000033;
    border-radius: 4px;
    margin-top: 30px;
    
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: 0.2s ease-in-out;

  }

  .header__categories-container.active{
    pointer-events: all;
    transform: translateY(0);
    opacity: 1;
  }

  .header__categories-list{
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .header__categories-list .header__category-link{
    padding: 10px 12px;
    justify-content: space-between;
  }


  .header__categories-list .header__submenu{
    position: relative;
    border: 0;
    padding: 0;
    box-shadow: none;
    padding-left: 20px;
    background: #fff7f7;
  }

  .header__categories-list .header__category-link.active + .header__submenu{
    display: flex;
  }
  

  .item-submenu{
        position: absolute;
        background: #fff;
        z-index: 10;
        width: fit-content;
        padding: 4px;
        box-shadow: 0 4px 8px 0 #00000033;
        border-radius: 4px;
        margin-top: 12px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-16px);
        transition: 0.2s ease-in-out;
        left: 20px;
  }

  .item-submenu.active{
        pointer-events: all;
        transform: translateY(0);
        opacity: 1;
  }


}




.catalog-toolbar{
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.catalog-toolbar .toolbar-count{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.35;
  color: #717786;
}


.catalog-toolbar .catalog-pagination{
  display: flex;
  gap: 10px;
}


.catalog-toolbar .catalog-pagination a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #717786;
  text-decoration: none;
  border: 1px solid #eaeae5;
  transition: .2s ease;
}


.catalog-toolbar .catalog-pagination a:hover{
  color: #666;
  border-color: #666;
}


.catalog-toolbar .catalog-pagination a.active{
  color: #666;
  border-color: #666;
  pointer-events: none;
}



.product-heading{
  display: flex;
  flex-direction: column;
}

.product-heading h1{
  width: calc(100% - 40px);
}


.heading-wf{
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}


.product-status{
  position: relative;
}

.product-status__discount{
  position: absolute;
  right: 0px;
  top: 0px;
}



.out-color{
  color: #ffa100;
}






/* contact plugin */


.contact-action {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 999;
}

.contact-action .item {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background: #ffa100;
    border-radius: 50%;
    transition: 0.5s;
}

.contact-action .item .icon1 {
    width: 20px;
    margin-top: 4px;
}

.contact-action span {
    position: absolute;
    visibility: hidden;
    z-index: -1;
    top: 0;
    left: 0;
}

.widget-open .item a {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.widget-open .item a img {
    width: 25px;
}

.widget-open span:nth-child(2) {
    top: -60px;
    background: #186AE6;
}

.widget-open span:nth-child(3) {
    top: -120px;
    background: #25D366;
}

.widget-open span:nth-child(4) {
    top: -180px;
    background: #9179EE;
}


.pulse-1 {
    animation: pulse-animation 2s infinite;
    border-radius: 50%;
}

.contact-action.widget-open {
    animation: none;
}

.widget-open span {
    visibility: visible;
    animation: 1s entering;
}

@keyframes entering {
  0%{
    top: 0;
    left: 0;
    width: 65%;
    height: 65%;
  }
  100%{
    width: 100%;
    height: 100%;
  }
}


@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}




