.modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    padding: 24px;
    background: rgba(13, 27, 30, 0.95);
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    overflow: auto;
}
@media only screen and (max-width: 767px) {
    .modal {
        padding: 12px;
    }
}
.modal.visible {
    opacity: 1;
    pointer-events: all;
}
.modal__close {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    font-size: 0;
    transition: opacity 0.2s;
}
@media only screen and (max-width: 767px) {
    .modal__close {
        top: 16px;
        right: 16px;
    }
}
.modal__close:hover {
    opacity: 0.7;
}
.modal__close svg {
    width: 20px;
    height: 20px;
    fill: #0D1B1E;
}
.modal__container {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: auto;
    padding: 48px 56px;
    background: white;
    border-radius: 8px;
}
@media only screen and (max-width: 767px) {
    .modal__container {
        padding: 24px;
    }
    .modal__container iframe {
        width: 100%;
        height: auto;
    }
}
.homeInfo__text {
    padding: 12px;
    position: absolute;
    right: 0;
    width: calc(100% - 257px);
    top: 0;
    box-sizing: border-box;
}
#homeInfo__sticky {
    background: #FFF;
}
@media (max-width: 1199px) {
    .homeInfo {
        height: auto;
    }
    .homeInfo__text {
        width: calc(100% - 232px);
    }
}
@media (max-width: 768px) {
    .homeInfo__text {
        width: calc(100% - 175px);
    }
}
@media (max-width: 359px) {
    .homeInfo__text {
        width: calc(100% - 135px);
    }
}

.borderArrows .swiper-button-next, .borderArrows .swiper-button-prev {
    -webkit-box-shadow: 4px 4px 0 0 #655dc6;
    box-shadow: 4px 4px 0 0 #655dc6;
    background: #f3f2ff;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
    cursor: pointer;
}
.borderArrows .swiper-button-next:hover,.borderArrows .swiper-button-prev:hover {
    -webkit-box-shadow: 2px 2px 0 0 #655dc6;
    box-shadow: 2px 2px 0 0 #655dc6;
    -webkit-transition: .3s ease all;
    transition: .3s ease all;
}

.boxCatalogGrid .swiper-wrapper,
.boxCatalogBanner .swiper-wrapper {
    flex-wrap: wrap;
}
.boxCatalogGrid .swiper-slide {
    width: calc(25% - 24px);
    margin: 0 24px 24px 0;
    box-shadow: -2px -2px 2px rgba(0,0,0,0.1);
}
@media (max-width: 1000px) {
  .boxCatalogGrid .swiper-slide {
    width: calc(50% - 24px);
    margin: 0 24px 24px 0;
    box-shadow: -2px -2px 2px rgba(0,0,0,0.1);
  }
}

.boxCatalogGrid.swiper {
    overflow: visible;
}

.boxCatalogBanner .swiper-slide {
    margin: 0 24px 24px 0;

}
/* 1-й в группе из 4: 75% */
.boxCatalogBanner .swiper-slide:nth-child(4n+1) {
    width: calc(70% - 24px);
}

/* 2-й в группе из 4: 25% */
.boxCatalogBanner .swiper-slide:nth-child(4n+2) {
    width: calc(30% - 24px);
}

/* 3-й в группе из 4: 25% */
.boxCatalogBanner .swiper-slide:nth-child(4n+3) {
    width: calc(30% - 24px);
}

/* 4-й в группе из 4: 75% */
.boxCatalogBanner .swiper-slide:nth-child(4n+4) {
    width: calc(70% - 24px);
}
.boxCatalogBanner .swiper-lazy-preloader,
.boxCatalogGrid .swiper-lazy-preloader {
    display: none;
}

/* контейнер-слой */
.threePhotosWrapper{
    position:relative;
    height:50vw;      /* подстрой под высоту самых высоких фото */
    overflow:hidden;
}

/* каждый «кадр» */
.threePhotos{
    position:absolute;
    inset:0;           /* top:0; right:0; bottom:0; left:0 */
    width:100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.threePhotos.visible {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
@media (min-width: 1281px) {
    .globalMenu {
        height: calc(100vh - 52px);
    }
    .globalMenu > ul {
        height: 100%;
    }
    .globalMenu::before {
        width: 100vw;
    }
    .subMenu > li ul li {
        width: 25%;
    }
}


.breadcrumbs li, .breadcrumbs li a, .sectionCard__article {
    font-weight: 500;
    font-size: 12px;
}
.threeProducts__bg {
    padding-top: 64px;
}
.threeProducts__title {
    padding-right: 0px;
    height: 80px;
    display: flex;
    align-items: end;
}
.threeProducts__thumb {
    margin-right: 0;
}
.footerSocial a svg {
    transition: all .2s;
}
.footerSocial a:hover svg {
    fill: #655dc6;
}
.mt-0 {
    margin-top: 0 !important;
}
.flex-column {
    flex-direction: column;
    gap: 24px;
}
.pgx {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  overflow: hidden;
  min-height: 420px;
}
.pgx * {box-sizing: border-box}
.pgx .wrap {
  color: #e8ecf5;
  font-family: Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto;
  line-height: 1.7;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pgx-canvas {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
}

.pgx p {
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .pgx .wrap {
    grid-template-columns: 1fr; /* одна колонка */
    gap: 20px;
  }
}

.pgx .highlight {
  color: #655dc6;
  font-weight: 700;
  font-family: "NBP Informa FiveThree", sans-serif;
  font-size: 24px;
     
}
.boxLotions {
    display: none;
}
.boxPrice {
    display: none;
}

.user-cookie {
    position: fixed;
    z-index: 999;
    bottom: 1px;
    left: 1px;
    background: white;
    padding: 25px 0;
    border: 1px solid;
    right: 1px;
}
.user-cookie .width-1100 {
    display: flex;
    width: 100%;
}
.user-cookie-btn {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    white-space: none;
    padding-left: 24px;
}
.user-cookie-btn .btn {
    white-space: nowrap;
}
.user-cookie-btn .btn:hover {
    background: transparent;
    color:#0D1B1E;
}
label.checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: gray;
    white-space: nowrap;
}
label.checkbox input[type=checkbox]{
    width: 30px;
}
@media only screen and (max-width: 767px) {
    .user-cookie .container {
        flex-direction: column;
        gap: 24px;
    }
}