.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.custom-cart-button {
    background-color: #007bff;
    border: none;
    padding: 8px 14px;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-cart-button:hover {
    background-color: #0056b3;
}

.custom-wishlist-button {
    color: #e74c3c;
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.custom-wishlist-button:hover {
    transform: scale(1.1);
}

.custom-wishlist-button i {
    pointer-events: none;
}
