.wpfable-slider-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-top: -34px;
}

.wpfable-main-slider {
    width: 100%;
    height: 100%;
}

/* Стиль для каждого слайда */
.swiper-slide {
position: relative;
    height: 394px;
    display: flex
;
    align-items: center;
    overflow: hidden;
}

/* Фон слайда */
.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
	border-radius: 16px;
}

/* Затемнение фона */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Полупрозрачный черный */
    z-index: 2;
	border-radius: 16px;
}

/* Контейнер для контента и изображения товара */
.slide-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

/* Левая часть - текст и кнопки */
.slide-content {
    flex: 1;
    color: #fff;
    max-width: 600px;
}
.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #fff;
    text-align: left;
}
.slide-content h1 span {
    color: #ef6644; /* Цвет для акцентного слова, как в примере */
}
.slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #e2e2e2;
	text-align: left;
}

/* Контейнер для кнопок */
.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Общие стили для кнопок */
.slide-buttons .btn {
    display: inline-block;
    padding: 7px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

/* Основная кнопка */
.slide-buttons .btn-primary {
    background-color: #ef6644; /* Розовый/коралловый цвет */
    color: #fff;
    border: 2px solid #ef6644;
}
.slide-buttons .btn-primary:hover {
    background-color: transparent;
    color: #ef6644;
}

/* Контурная кнопка */
.slide-buttons .btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.slide-buttons .btn-outline:hover {
    background-color: #fff;
    color: #000;
}

/* Правая часть - изображение товара */
.slide-product-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slide-product-image img {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

/* Стилизация навигационных стрелок */
.wpfable-main-slider .swiper-button-next,
.wpfable-main-slider .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.wpfable-main-slider .swiper-button-next:after,
.wpfable-main-slider .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}
.wpfable-main-slider .swiper-button-next:hover,
.wpfable-main-slider .swiper-button-prev:hover {
    background: #ef6644;
}

/* Стилизация пагинации (точек) */
.wpfable-main-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}
.wpfable-main-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: #ef6644;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
    .slide-content-container {
        flex-direction: column;
        text-align: center;
        padding: 0 1rem;
        gap: 2rem;
    }
    .slide-content {
        max-width: 100%;
    }
    .slide-content h1 {
        font-size: 2.5rem;
    }
    .slide-buttons {
        justify-content: center;
    }
    .slide-product-image img {
        max-height: 300px;
    }
    .swiper-slide {
        min-height: 500px;
    }
}
/* ========== АНИМАЦИЯ ЭЛЕМЕНТОВ СЛАЙДА ========== */

/* Общие стили для анимируемых элементов */
.swiper-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

/* Анимация заголовка */
.animate-title {
    transition-delay: 0.3s;
}

/* Анимация описания */
.animate-desc {
    transition-delay: 0.5s;
}

/* Анимация кнопок */
.animate-buttons {
    transition-delay: 0.7s;
}

/* Анимация изображения */
.animate-image {
    transform: translateY(30px) scale(0.95); /* Добавляем немного масштаба для эффекта "вырастания" */
    transition-delay: 0.9s;
}

/* Класс, который добавляет Swiper при активном слайде */
.swiper-slide-active .swiper-animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}