/* Quran Slider Styles */
.quran-slider-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.quran-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
}

/* Головний слайдер */
.swiper.quranMainSwiper {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.swiper-slide {
    position: relative;
}

.slide-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.quranMainSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.5s ease;
}

.quranMainSwiper .swiper-slide-active img {
    transform: scale(1.03);
}

.slide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 50px 40px 40px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.quranMainSwiper .swiper-slide-active .slide-overlay {
    transform: translateY(0);
    opacity: 1;
}

.slide-info h3 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    color: #d4af37;
    font-family: 'Times New Roman', serif;
    font-weight: normal;
    letter-spacing: 1px;
}

.slide-info p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-style: italic;
}

.price-badge {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #1a1a1a;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Мініатюрний слайдер */
.swiper.quranThumbsSwiper {
    width: 100%;
    height: 120px;
    margin-bottom: 40px;
    padding: 10px 0;
}

.quranThumbsSwiper .swiper-slide {
    opacity: 0.4;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.quranThumbsSwiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #d4af37;
    transform: scale(1.05);
}

.quranThumbsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Навігація */
.swiper-button-next, .swiper-button-prev {
    color: #d4af37;
    background: rgba(0, 0, 0, 0.7);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
    color: #ffd700;
}

.swiper-button-next::after, .swiper-button-prev::after {
    display: none;
}

.swiper-button-next i, .swiper-button-prev i {
    font-size: 1.8rem;
}

/* Бейдж сертифікації */
.authentication-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    z-index: 10;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Інформаційний блок */
.slider-info-section {
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.info-content h2 {
    font-family: 'Times New Roman', serif;
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 10px;
    font-weight: normal;
    letter-spacing: 2px;
}

.century {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 20px;
    font-style: italic;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, #ffd700, #d4af37, transparent);
    margin: 25px auto;
}

.description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.inquiry-button {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #1a1a1a;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.inquiry-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.quran-slider-error {
    text-align: center;
    padding: 40px;
    background: #f8f8f8;
    border-radius: 10px;
    color: #666;
    font-size: 1.1rem;
}

/* Адаптивність */
@media (max-width: 1024px) {
    .quran-slider-container {
        padding: 30px;
        margin: 20px;
    }
    
    .swiper.quranMainSwiper {
        height: 500px;
    }
    
    .info-content h2 {
        font-size: 2.2rem;
    }
    
    .slide-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .quran-slider-container {
        padding: 20px;
        margin: 15px;
    }
    
    .swiper.quranMainSwiper {
        height: 400px;
    }
    
    .swiper.quranThumbsSwiper {
        height: 80px;
        margin-bottom: 30px;
    }
    
    .authentication-badge {
        top: 15px;
        right: 15px;
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .slide-overlay {
        padding: 30px 20px 20px;
    }
    
    .slide-info h3 {
        font-size: 1.6rem;
    }
    
    .slide-info p {
        font-size: 1.1rem;
    }
    
    .info-content h2 {
        font-size: 1.8rem;
    }
    
    .century {
        font-size: 1.1rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .inquiry-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .swiper-button-next, .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .swiper-button-next i, .swiper-button-prev i {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .quran-slider-container {
        padding: 15px;
        margin: 10px;
    }
    
    .swiper.quranMainSwiper {
        height: 300px;
    }
    
    .swiper.quranThumbsSwiper {
        height: 60px;
    }
    
    .info-content h2 {
        font-size: 1.5rem;
    }
    
    .century {
        font-size: 1rem;
    }
    
    .slide-info h3 {
        font-size: 1.3rem;
    }
}