/* Estilos específicos para la lista de favoritos en el perfil */

.fav-list-item {
    display: flex;
    align-items: center; /* Centrado vertical absoluto respecto a toda la tarjeta */
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(196, 79, 72, 0.1);
    transition: all 0.3s ease;
    width: 100%;
}

.fav-list-item:hover {
    box-shadow: 0 10px 30px rgba(196, 79, 72, 0.08);
    border-color: rgba(196, 79, 72, 0.2);
}

.fav-list-img {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.fav-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fav-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fav-list-info h4 {
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    color: #4a403a;
}

.fav-list-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    justify-content: center;
    align-items: center;
    min-width: 140px;
    margin-left: auto; /* Empuja a la derecha */
    padding: 0;
    margin-top: 0 !important; /* Anular margin-top: auto de style.css */
}

.btn-profile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    cursor: pointer;
    width: 100%;
    background: #f8f8f8; /* Gris base */
    color: #666 !important;
    margin: 0 !important;
    line-height: normal;
}

.btn-profile-view:hover {
    background: #fff0f3;
    color: #b94e48 !important;
    border-color: #f7dadd;
}

.btn-profile-delete:hover {
    background: #fff0f0;
    color: #e65950 !important;
    border-color: #f8d7da;
}

.btn-profile-action i {
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 600px) {
    .fav-list-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .fav-list-actions {
        margin-left: 0;
        width: 100%;
    }
    
    .fav-list-img {
        width: 120px;
        height: 120px;
    }
}
