/**
 * FooGallery Carousel - MINIMAL Styles
 */

/* Container */
.foogallery-carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 30px 0;
}

.foogallery-carousel-wrapper .swiper {
    width: 100%;
    position: relative;
}

/* Slide */
.foogallery-carousel-wrapper .swiper-slide {
    height: auto;
}

/* Gallery Item */
.foogallery-carousel-item {
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.foogallery-carousel-item:hover {
    transform: translateY(-5px);
}

.foogallery-carousel-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Image */
.foogallery-carousel-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    overflow: hidden;
    background: #f5f5f5;
}

.foogallery-carousel-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.foogallery-carousel-image .foogallery-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

/* Title */
.foogallery-carousel-title {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.foogallery-carousel-title h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

/* Navigation */
.foogallery-carousel-wrapper .swiper-button-prev,
.foogallery-carousel-wrapper .swiper-button-next {
    color: #000;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.foogallery-carousel-wrapper .swiper-button-prev::after,
.foogallery-carousel-wrapper .swiper-button-next::after {
    font-size: 20px;
}

/* Pagination */
.foogallery-carousel-wrapper .swiper-pagination {
    position: relative !important;
    margin-top: 20px !important;
    text-align: center;
    padding: 0;
}

.foogallery-carousel-wrapper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #000;
    opacity: 0.3;
    margin: 0 4px;
}

.foogallery-carousel-wrapper .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
    transform: scale(1.3);
}
