.global-promocarousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.global-promocarousel.theme-blue {
    background-color: var(--nv-blue);
}

.global-promocarousel.theme-white {
    background-color: var(--nv-white);
}

.promocarousel-heading {
    text-align: center;
    margin-bottom: var(--space-md);
}

.global-promocarousel.theme-blue .promocarousel-heading {
    color: var(--nv-white);
}

.global-promocarousel.theme-white .promocarousel-heading {
    color: var(--nv-blue);
}

.promocarousel-swiper {
    width: 100%;
    padding: 0;
}

.promocarousel-swiper .swiper-slide {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) 0;
}

.promocarousel-link {
    display: inline-block;
    width: auto;
    height: auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.promocarousel-link:hover {
    opacity: 1;
}

.promocarousel-image-wrapper {
    width: auto;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promocarousel-image-wrapper picture {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.promocarousel-image-wrapper img {
    height: auto;
    max-height: 500px;
    width: 100%;
    max-width: 100%;
    display: block;
    object-fit: contain;
	--smush-image-aspect-ratio: auto !important;
}

.swiper-pagination {
    position: relative;
    margin-top: var(--space-sm);
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.global-promocarousel.theme-blue .swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.4);
}

.global-promocarousel.theme-white .swiper-pagination-bullet {
    background-color: var(--nv-blue-lighter);
}

.swiper-pagination-bullet:hover {
    transform: scale(1.2);
}

.global-promocarousel.theme-blue .swiper-pagination-bullet:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.global-promocarousel.theme-white .swiper-pagination-bullet:hover {
    background-color: var(--nv-blue-light);
}

.swiper-pagination-bullet-active {
    transform: scale(1.3);
}

.global-promocarousel.theme-blue .swiper-pagination-bullet-active {
    background-color: var(--nv-white);
}

.global-promocarousel.theme-white .swiper-pagination-bullet-active {
    background-color: var(--nv-blue);
}

@media (max-width: 767px) {
    .promocarousel-swiper .swiper-slide {
        padding: var(--space-sm) 0;
    }
    
    .promocarousel-image-wrapper img {
        height: auto;
        max-height: 400px;
    }
}

.promocarousel-image-wrapper .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    border: 4px solid var(--nv-blue-lighter);
    border-top-color: var(--nv-blue);
    border-radius: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -21px;
    margin-left: -21px;
    z-index: 10;
}

.global-promocarousel.theme-blue .promocarousel-image-wrapper .swiper-lazy-preloader {
    border-color: var(--nv-blue-lighter);
    border-top-color: var(--nv-white);
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg);
    }
}