﻿.slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full screen for desktop */
}

.swiper-container {
    width: 90%;
    max-width: 1000px;
    height: 100vh; /* Full height desktop */
    margin: 0 auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: auto !important; /* Let Swiper calculate width */
}

    .swiper-slide img {
        width: auto;
        height: 100%;
        max-height: 100%;
        object-fit: contain;
        border-radius: 4px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

/* ------------------- Responsive tweaks ------------------- */
@media (max-width: 1024px) {
    .swiper-container {
        height: 80vh; /* Slightly smaller on tablets */
    }
}

@media (max-width: 768px) {
    .swiper-container {
        height: 60vh; /* Mobile height */
    }
    .slider-wrapper {
        height: 60vh;
    }
        .swiper-slide img {
        width: 100%;
        height: auto;
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .swiper-container {
        height: 50vh; /* Smaller phones */
    }

    .swiper-slide img {
        width: 100%;
        height: auto;
        max-height: 50vh;
    }
}
