.restaurants-list {
    display: grid;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.restaurantlist-title {
    color: #292929;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 20px;
}

.restaurantlist-card {
    display: flex;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


.restaurantlist-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    flex: 1;
}

.restaurantlist-infos {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.restaurantlist-name {
    color: #292929;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.restaurantlist-name:hover {
    color: #FFC72C;
}

.restaurantlist-icons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.restaurantlist-icons .restaurant-icon,
.restaurantlist-icons .restaurantlist-services-icon {
    height: 48px;
    width: auto;
}

.restaurantlist-content {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #F9F9F9;
    border-left: 1px solid #E5E5E5;
}

.restaurantlist-schedule {
    width: 220px !important;
}

.restaurantlist-schedule .schedule-row {
    border-bottom: none !important;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
}

.restaurantlist-schedule .day {
    font-size: 14px !important;
    font-weight: 600;
    color: #494949;
}

.restaurantlist-schedule .time {
    font-size: 13px !important;
    color: #666;
}

.restaurantlist-poster {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    height: 160px;
    width: 240px;
    object-fit: cover !important;
    transition: transform 0.3s ease;
}

.restaurantlist-poster:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .restaurants-list {
        width: -webkit-fill-available;
    }

    .restaurantlist-title {
        margin: 16px;
        font-size: 28px;
    }

    .restaurantlist-card {
        width: 100%;
        height: auto;
        flex-direction: column;
    }

    .restaurantlist-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 16px;
    }

    .restaurantlist-poster {
        width: 100%;
        height: 200px;
    }

    .restaurantlist-content {
        display: none;
    }

    .restaurantlist-icons {
        justify-content: center;
    }
}



