.restaurant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.restaurant-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
}

.restaurant-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.restaurant-detail {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

.restaurant-banner {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.menu-card {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
}

.menu-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.price {
    font-weight: bold;
    margin: 8px 0;
}
