/* favorites-styles.css - Estilos para botones de favoritos */

/* Botón de favorito general */
.favorite-btn {
    background: transparent;
    border: none;
    color: #e94560;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.favorite-btn:hover {
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #e94560;
}

.favorite-btn i {
    font-size: 1.2rem;
    transition: all 0.3s;
}

.favorite-btn:active i {
    transform: scale(0.9);
}

/* ── Botón en tarjetas de productos (grid principal) ──────────────────────── */
/* Mostramos solo el corazón — sin fondo circular */
.favorite-btn-card {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 38px;
    height: 38px;
    background: transparent !important;
    border: none !important;
    box-shadow: none;
    padding: 0;
}

.favorite-btn-card i {
    font-size: 1.6rem !important;
    color: rgba(255,255,255,0.85);
    text-shadow:
        0 0 4px rgba(0,0,0,0.6),
        0 1px 3px rgba(0,0,0,0.4);
    transition: color 0.25s, text-shadow 0.25s;
}

/* Corazón vacío (outline) en estado normal */
.favorite-btn-card:not(.active) i {
    color: rgba(255,255,255,0.9);
    text-shadow:
        0 0 5px rgba(0,0,0,0.55),
        0 1px 3px rgba(0,0,0,0.35);
}

/* Corazón relleno al marcar favorito */
.favorite-btn-card.active i {
    color: #e94560;
    text-shadow:
        0 0 6px rgba(233,69,96,0.5),
        0 1px 4px rgba(0,0,0,0.25);
}

.favorite-btn-card:hover i {
    transform: scale(1.15);
    color: #e94560;
}

/* ── Botón en página de detalle ───────────────────────────────────────────── */
.favorite-btn-detail {
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
    gap: 8px;
    background: rgba(233, 69, 96, 0.12) !important;
    border: 1.5px solid rgba(233, 69, 96, 0.35) !important;
    color: #e94560 !important;
}

.favorite-btn-detail:hover {
    background: rgba(233, 69, 96, 0.22) !important;
    border-color: #e94560 !important;
}

.favorite-btn-detail.active {
    background: #e94560 !important;
    border-color: #e94560 !important;
    color: white !important;
}

.favorite-btn-detail i {
    font-size: 1.1rem;
}

/* ── Animación de pulso al añadir ─────────────────────────────────────────── */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25%       { transform: scale(1.3); }
    50%       { transform: scale(1); }
    75%       { transform: scale(1.2); }
}

.favorite-btn.adding i {
    animation: heartbeat 0.55s ease;
}

/* ── Badge de contador en header ──────────────────────────────────────────── */
.favorites-badge {
    position: relative;
}

.favorites-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e94560;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 17px;
    text-align: center;
}

/* ── Link de favoritos en el header ──────────────────────────────────────── */
.favorites-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eee;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.favorites-link:hover {
    background: rgba(233, 69, 96, 0.1);
    color: #e94560;
}

.favorites-link i {
    font-size: 1.2rem;
}

/* ── Responsivo ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .favorite-btn-card {
        width: 34px;
        height: 34px;
        top: 6px;
        right: 6px;
    }

    .favorite-btn-card i {
        font-size: 1.45rem !important;
    }

    .favorite-btn-detail {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .favorites-link span {
        display: none;
    }
}
