.single .product-cart-controls {
    justify-content: flex-start; /* Replaced 'left' with 'flex-start' for consistency */
}
.product-cart-controls {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    justify-content: center;
}

.cart-quantity {
    font-size: 16px;
    margin: 0 10px;
    display: none;
}
.ct-cart-button {
    background-color: #007cba;
    border: none;
    color: white;
    font-size: 20px;
    padding: 0 0 3px 0; /* Consolidated padding */
    border-radius: 50%;
    cursor: pointer;
    line-height: 30px;
    height: 32px;
    width: 32px;
    text-align: center;
    display: inline-block;
}
a.ct-cart-button:hover {
    color: #fff;
}
.product-cart-controls a {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 10px;
}
.product-cart-controls input.cart-quantity-input[type='number'] {
    width: 40px;
    color: #000;
    padding-left: 5px;
    text-align: right;
    border: 1px solid #ddd;
    padding: 2px 0;
    margin-left: 5px;
    margin-right: 5px;
}
.ct-cart-button.loading {
    opacity: 0.6;
    pointer-events: none;
}
