/* Styles custom pour la page Favoris */
.empty-state {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(38,43,47,0.07);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 32px;
    border: 1px solid #e3e5e8;
}
.empty-state .empty-icon {
    font-size: 2.5rem;
    color: #f1bb69;
    margin-bottom: 12px;
}
.empty-state .empty-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0E2141;
    margin-bottom: 8px;
}
.empty-state .empty-text {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 18px;
}
.btn-primary-custom {
    background: linear-gradient(135deg, #f1bb69 0%, #e29a3d 100%);
    color: #0E2141;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-primary-custom:hover {
    background: linear-gradient(135deg, #e29a3d 0%, #f1bb69 100%);
    color: #0E2141;
    box-shadow: 0 4px 16px rgba(241,187,105,0.15);
}
