/* Cart Controls Styling */
.quantity-controls .input-group {
    max-width: 200px;
    margin: 0 auto;
}

.quantity-input {
    text-align: center;
}

.cart-controls {
    transition: all 0.3s ease;
}

.add-to-cart-btn {
    transition: all 0.3s ease;
}

.quantity-controls {
    transition: all 0.3s ease;
}

/* Cart notification styling */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 300px;
}

/* Cart controls container */
.cart-controls-container {
    margin-top: 10px;
}

/* Quantity input styling */
.quantity-input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Update button styling */
.update-quantity-btn {
    border-left: 0;
}

.update-quantity-btn:hover {
    background-color: #e9ecef;
}

/* Cart quantity text */
.cart-quantity-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
} 