.filter-section {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.restaurant-card {
    transition: transform 0.2s;
}

.restaurant-card:hover {
    transform: translateY(-4px);
}

.price-tag {
    font-weight: 500;
}

.price-tag.expensive {
    color: #ef4444;
}

.price-tag.moderate {
    color: #f59e0b;
}

.price-tag.cheap {
    color: #10b981;
}

.search-box {
    position: relative;
}

.search-box input {
    padding-left: 2.5rem;
}

.search-box::before {
    content: '🔍';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
} 