/* ============================================================
   MEJORAS CATÁLOGO — CalidoHogar
   Agregar al final de catalogo.css
============================================================ */

/* ── Botón WhatsApp en tarjetas ──────────────────────────── */

.producto-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.producto-precio {
    color: #ff4400;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    margin-bottom: 4px;
}

.producto-acciones {
    display: flex;
    gap: 10px;
}

.btn-ver-producto {
    flex: 1;
    text-align: center;
    background: #ff4400;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    border: none;
    display: inline-block;
}

.btn-ver-producto:hover {
    background: #e03c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 68, 0, 0.35);
    color: #fff;
}

.btn-wa-card {
    background: #25d366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-wa-card:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    color: #fff;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 576px) {
    .producto-acciones {
        flex-direction: column;
    }

    .btn-ver-producto,
    .btn-wa-card {
        width: 100%;
    }
}
