/* Карусель */
.carousel-fancy{
    overflow: hidden;
    margin-bottom: 20px;
}
.swiper-container {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}
.swiper-slide a{
    width: 100%;
    height: 100%;
    display: flex;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* Кнопки навигации */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    border-radius: 50%;
}

/* Превью изображений */
#selected_images_preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.image-preview {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.image-preview .remove-image {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 2px 5px;
    cursor: pointer;
}
