/*
Theme Name:   Xstore child
Theme URI:    https://xstore.8theme.com
Description:  XStore is a multi-purpose theme that offers the ultimate WordPress and WooCommerce synergy, providing a comprehensive, all-in-one solution.
Author:       8theme
Author URI:   https://www.8theme.com
Template:     xstore
Version:      1.0
Text Domain:  xstore-child
Tags: e-commerce, two-columns, left-sidebar, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, custom-logo, featured-images, full-width-template, threaded-comments, accessibility-ready, rtl-language-support, footer-widgets, sticky-post, theme-options, translation-ready, ecommerce, woocommerce, shop, elementor, business, corporate, blog, news, light, dark
*/

/* --- Alune Custom Slider Ana Kasa --- */
.alune-custom-slider-wrapper {
    position: relative;
    width: 100%;
    height: 630px; /* Masaüstü kesin yükseklik */
    overflow: hidden;
    background-color: #FAFAFA; /* Resim yüklenene kadar gösterilecek zemin */
}

/* Kayan Animasyon Pisti */
.alune-slider-track {
    display: flex;
    width: 300%; /* 3 Slayt için %300 */
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Pürüzsüz kayma efekti */
}

/* Tekil Slayt */
.alune-slide {
    width: 33.3333%; /* Piste göre kendi genişliği */
    height: 100%;
    position: relative;
}

/* Görsel Optimizasyonu (Ezilmeyi Önler) */
.alune-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi baskılamaz, taşıyorsa kırpar */
    object-position: center;
}

/* İçerik Kutusu (Metin ve Buton) */
.alune-slide-content {
    position: absolute;
    top: 50%;
    left: 8%; /* Görselin sol boşluğuna oturur */
    transform: translateY(-50%);
    background: rgba(250, 250, 250, 0.85); /* Cam efekti - Contrast için */
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.alune-slide-content h2 {
    color: #5C4033; /* Soft Kahve */
    font-size: 3rem;
    font-weight: 700; /* Bold */
    margin-bottom: 25px;
    line-height: 1.1;
}

.alune-btn {
    display: inline-block;
    background-color: #D4A373; /* Soft Karamel */
    color: #FFFFFF !important;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.alune-btn:hover {
    background-color: #5C4033;
}

/* --- Navigasyon Noktaları (Uzayan Animasyon) --- */
.alune-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.alune-dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50px; /* Yuvarlak başlangıç */
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(92, 64, 51, 0.2);
}

.alune-dot:hover, 
.alune-dot.active {
    width: 40px; /* Hover/Active durumunda loader gibi uzar */
    background-color: #D4A373;
}

/* --- Mobil Uyumluluk (Responsive) --- */
@media (max-width: 768px) {
    .alune-custom-slider-wrapper {
        height: 450px; /* Mobilde yüksekliği daraltıyoruz */
    }
    
    .alune-slide-content {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 85%; /* Mobilde ortaya hizalanır */
        text-align: center;
        padding: 25px;
    }

    .alune-slide-content h2 {
        font-size: 2rem;
    }
}