.search-results-container {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.search-title {
    font-family: 'Lora', serif;
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.search-results {
    display: grid;
    gap: 30px;
}

.restaurant-card {
    background: white;
    border-radius: 15px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.restaurant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.restaurant-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.restaurant-budget {
    font-family: 'Lora', serif;
    color: #666;
}

.restaurant-category {
    font-family: 'Lora', serif;
    color: #666;
    margin-bottom: 12px;
}

.restaurant-description {
    font-family: 'Lora', serif;
    line-height: 1.6;
    margin-bottom: 16px;
}

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

.restaurant-location {
    font-family: 'Lora', serif;
    color: #666;
}

.restaurant-website {
    display: inline-block;
    text-decoration: none;
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding: 8px 16px;
    border: 2px solid #222;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.restaurant-website:hover {
    background: #222;
    color: white;
}

.michelin-star {
    color: #BF9B30;
    margin-left: 8px;
}

.no-results {
    text-align: center;
    padding: 40px;
    font-family: 'Lora', serif;
    color: #666;
}

@media (max-width: 768px) {
    .search-results-container {
        margin: 80px auto 40px;
        padding: 0 16px;
    }

    .restaurant-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .restaurant-budget {
        margin-top: 8px;
    }

    .restaurant-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .restaurant-website {
        width: 100%;
        text-align: center;
    }
}