.product {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
    height: 100%;
}

.product:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.product .content {
    padding: 10px 10px 0 10px;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.product-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    height: 36px;
    padding: 0 14px;

    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    text-decoration: none !important;
    transition: all 0.2s ease;
}

/* Carrito */
.product-action-cart {
    color: #333;
    background: #fff;
    border: 1px solid #dcdcdc;
}

.product-action-cart:hover {
    background: #222;
    border-color: #222;
    color: #fff;
}

/* WhatsApp */
.product-action-whatsapp {
    color: #fff !important;
    background: #25D366;
    border: 1px solid #25D366;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.product-action-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #fff !important;
    transform: translateY(-1px);
}

.product-action-btn i {
    font-size: 14px;
}

/* Celular */
@media (max-width: 575px) {
    .product-actions {
        gap: 6px;
    }

    .product-action-btn {
        height: 34px;
        padding: 0 11px;
        font-size: 11px;
    }

    .product-action-whatsapp {
        flex: 1;
    }
}