/* Product Actions */
.product-actions {
    display: flex;
    justify-content: space-between;
    padding: 0 15px 15px;
}

.add-to-cart-btn, .view-product-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.add-to-cart-btn {
    background-color: #4a89dc;
    color: white;
}

.add-to-cart-btn:hover {
    background-color: #3a7bc8;
}

.view-product-btn {
    background-color: #f8f9fa;
    color: #333;
}

.view-product-btn:hover {
    background-color: #e9ecef;
}

.add-to-cart-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Toast Notifications */
.toast-success, .toast-error {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease-out;
}

.toast-success {
    background-color: #28a745;
}

.toast-error {
    background-color: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Update product card to accommodate new button */
.product-card {
    display: flex;
    flex-direction: column;
}

.product-info {
    flex: 1;
}