/* Öne Çıkan İlanlar Slider */

.featured-slider-section {
    background: #f8f8f8;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.featured-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.slider-header {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FF6B35;
}

.slider-title {
    color: #333;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.slider-subtitle {
    color: #666;
    font-size: 14px;
    font-weight: 400;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-slide {
    min-width: 100%;
    background: white;
    display: flex;
    gap: 20px;
    padding: 25px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.slide-image {
    width: 400px;
    height: 300px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #F4F4F4;
}

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

.slide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-category {
    display: inline-block;
    padding: 5px 12px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    border-radius: 3px;
    width: fit-content;
}

.slide-category i {
    color: #FF6B35;
    margin-right: 4px;
}

.slide-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.slide-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slide-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #999;
}

.slide-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slide-meta-item i {
    color: #4CAF50;
}

.slide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slide-price {
    font-size: 32px;
    font-weight: bold;
    color: #FF6B35;
}

.slide-button {
    padding: 10px 24px;
    background: #FF6B35;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.slide-button:hover {
    background: #E55A2B;
}

.slide-button i {
    font-size: 12px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: #333;
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 0;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #FF6B35;
    width: 24px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .slider-slide {
        flex-direction: column;
        padding: 20px;
    }

    .slide-image {
        width: 100%;
        height: 250px;
    }

    .slide-title {
        font-size: 20px;
    }

    .slide-price {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .featured-slider-section {
        padding: 30px 0;
    }

    .slider-title {
        font-size: 22px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-arrow-left {
        left: 10px;
    }

    .slider-arrow-right {
        right: 10px;
    }

    .slide-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .slide-meta {
        flex-wrap: wrap;
        gap: 10px;
        font-size: 12px;
    }

    .slide-description {
        -webkit-line-clamp: 2;
        line-clamp: 2;
        font-size: 13px;
    }
}