@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --primary-color: #ad9263;
    --accent-color: #6c757d;
    --glass-background: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-color: #ffffff;
}

.urunler-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

.urunler-slider-wrapper .swiper {
    width: 100%;
    height: 100%;
}

.urunler-slider-wrapper .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-align: center;
}

.urunler-slider-wrapper .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-out;
}

.urunler-slider-wrapper .swiper-slide-active .slide-background {
    transform: scale(1.1);
}

.urunler-slider-wrapper .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.urunler-slider-wrapper .slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem;
    background: var(--glass-background);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.urunler-slider-wrapper .swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.urunler-slider-wrapper .slide-content h2 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(90deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.urunler-slider-wrapper .slide-content .animate-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.urunler-slider-wrapper .btn-premium {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urunler-slider-wrapper .btn-premium:hover {
    background: transparent;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
    transform: scale(1.05);
}

/* Swiper Controls Navigation Styling */
.urunler-slider-wrapper .swiper-button-next,
.urunler-slider-wrapper .swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.urunler-slider-wrapper .swiper-button-next:after,
.urunler-slider-wrapper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.urunler-slider-wrapper .swiper-button-next:hover,
.urunler-slider-wrapper .swiper-button-prev:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
}

.urunler-slider-wrapper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.urunler-slider-wrapper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .urunler-slider-wrapper .slide-content {
        padding: 2rem;
    }

    .urunler-slider-wrapper .swiper-button-next,
    .urunler-slider-wrapper .swiper-button-prev {
        display: none;
    }
}