/* BlueLiving Slider Card Styles */

.blsc-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 20px 50px;
}

.blsc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    min-height: 300px;
    transition: all 0.3s ease;
}

.blsc-card:hover {
    transform: translateY(-5px);
}

.blsc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.blsc-icon i,
.blsc-icon svg {
    display: block;
}

.blsc-title {
    margin: 0 0 15px 0;
    padding: 0;
    transition: all 0.3s ease;
}

.blsc-description {
    margin: 0;
    padding: 0;
    opacity: 0.9;
}

/* Navigation Arrows */
.blsc-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.blsc-button-prev {
    left: 10px;
}

.blsc-button-next {
    right: 10px;
}

.blsc-nav-button:hover {
    transform: translateY(-50%) scale(1.1);
}

.blsc-nav-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Pagination */
.swiper-pagination {
    position: relative !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    opacity: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 50%;
}

.swiper-pagination-bullet:hover {
    transform: scale(1.2);
}

/* Swiper Container */
.blsc-slider-wrapper .swiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.blsc-slider-wrapper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.blsc-slider-wrapper .swiper-slide {
    height: auto;
    display: flex;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .blsc-slider-wrapper {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .blsc-slider-wrapper {
        padding: 20px 30px;
    }
    
    .blsc-card {
        min-height: 250px;
    }
    
    .blsc-button-prev {
        left: 5px;
    }
    
    .blsc-button-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .blsc-slider-wrapper {
        padding: 10px 20px;
    }
    
    .blsc-nav-button {
        display: none;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blsc-card {
    animation: fadeInUp 0.6s ease;
}
