/* Cart product card styling */
.product-actions-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
}

.btn-product-new {
    flex: 1;
    margin-right: 8px;
}

.btn-cart-new {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    width: 46px;
    height: 42px;
}

.btn-cart-new:hover {
    background-color: #e0e0e0;
    border-color: #ccc;
}

.btn-cart-new i {
    font-size: 16px;
}

/* Cart button animation */
.btn-cart-new.added {
    background-color: #00A896;
    color: white;
    animation: pulse 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .product-actions-new {
        flex-direction: row;
    }
    
    .btn-product-new {
        font-size: 14px;
    }
    
    .btn-cart-new {
        width: 42px;
        height: 38px;
    }
}
