.swipeslides-wrapper {
    position: relative;
    width: 1260px;
    margin: 0 auto;
    overflow: visible;
}

.swipeslides-home {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.swipeslides-home .swiper-wrapper,
.swipeslides-home .swiper-slide {
    width: 100%;
    height: 100%;
}

.swipeslides-home .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}

.swipeslides-home .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 3s ease, opacity 1.2s ease;
}

/* Overlay */
.swipeslides-home .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
    pointer-events: none;
}

/* Klikateľný obsah nad overlayom */
.swipeslides-home .swiper-slide > a,
.swipeslides-home .slide-content,
.swipeslides-home .swiper-slide a .btn {
    position: relative;
    z-index: 2;
}

/* Navigation arrows */
.swipeslides-home .swiper-button-next,
.swipeslides-home .swiper-button-prev {
    background: #ffffff;
    color: #162c30;
    width: 46px;
    height: 60px;
    opacity: 0;
    visibility: hidden;
    top: 54%;
    transform: translateY(-50%);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

/* Hover state */
.swipeslides-home:hover .swiper-button-prev,
.swipeslides-home:hover .swiper-button-next {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Start position slightly off-screen for smooth slide-in */
.swipeslides-home .swiper-button-prev {
    left: 0;
    transform: translateY(-50%) translateX(-15px);
}

.swipeslides-home .swiper-button-next {
    right: 0;
    transform: translateY(-50%) translateX(15px);
}


.swipeslides-home .swiper-button-next:hover,
.swipeslides-home .swiper-button-prev:hover {
    background: #162c30;
    color: #e30413;
}

/* Pagination (dots) */
.swipeslides-wrapper .swiper-pagination {
    position: relative;
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 2px;
    z-index: 10;
}

.swipeslides-wrapper .swiper-pagination-bullet {
    width: 22px;
    height: 22px;
    background: #162c30;
    border-radius: 0;
    opacity: 1;
    transition: transform 0.3s ease, background 0.3s ease;
}

.swipeslides-wrapper .swiper-pagination-bullet-active {
    background: #e30413;
}

/* Responsive adjustments */
@media (max-width: 1300px) {
    .swipeslides-wrapper {
        width: 100%;
        max-width: 1240px;
    }

    .swipeslides-home {
        height: auto;
        aspect-ratio: 1240 / 500;
    }
}

/* Hide arrows and dots on tablets & mobiles */
@media (max-width: 1024px) {
    .swipeslides-home .swiper-button-next,
    .swipeslides-home .swiper-button-prev,
    .swipeslides-wrapper .swiper-pagination {
        display: none !important;
    }
}

/* Cursor behavior */
.swipeslides-home.desktop-mode {
    cursor: default !important;
}

.swipeslides-home.desktop-mode .swiper-slide a {
    cursor: pointer;
}


