/* ========== PREMIUM FEATURED CARDS ========== */

.featured-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.featured-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
}

.featured-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.featured-content {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-type {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.type-badge-satilik,
.type-badge-kiralik,
.category-badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.type-badge-satilik {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.type-badge-kiralik {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.category-badge {
    background: #f1f5f9;
    color: #64748b;
}

.featured-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.3;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-content h3 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.featured-content h3 a:hover {
    color: #2563eb;
}

.featured-location {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.featured-location i {
    color: #2563eb;
}

.featured-specs {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 15px;
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
}

.featured-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-specs i {
    color: #2563eb;
    font-size: 14px;
}

.featured-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.featured-price {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-featured {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #2563eb, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.btn-featured:hover {
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .featured-image {
        height: 180px;
    }
    
    .featured-content {
        padding: 15px;
    }
    
    .featured-specs {
        flex-wrap: wrap;
        gap: 10px;
    }
}
