.restaurant-header {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-radius: 0 0 20px 20px;
}

.restaurant-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 2rem;
    background: white;
}

.restaurant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.restaurant-image {
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

.restaurant-card-body {
    padding: 1.5rem;
}

.restaurant-name {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.cuisine-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.5rem;
}

.price-range {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.1rem;
}

.restaurant-info {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.restaurant-description {
    color: #34495e;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 1rem 0;
}

.view-restaurant-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    border: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.view-restaurant-btn:hover {
    transform: scale(1.05);
    color: white;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

#cluster-map {
    height: 400px;
    border-radius: 15px;
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.no-restaurants {
    text-align: center;
    padding: 3rem;
    color: #7f8c8d;
    font-size: 1.2rem;
}

.rating-stars {
    color: #f39c12;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .restaurants-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .restaurant-card-body {
        padding: 1rem;
    }
    
    .restaurant-image {
        height: 200px;
    }
}