/* Product Quantity Control */
.wcb-products__quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    height: 36px;
    overflow: hidden;
    background: #fff;
}

.wcb-products__quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    padding: 0;
    line-height: 1;
    transition: background 0.15s;
    flex-shrink: 0;
}

.wcb-products__quantity-btn:hover {
    background: #f5f5f5;
}

.wcb-products__quantity-input.wcb-products__quantity-input {
    -moz-appearance: textfield;
    width: 46px;
    height: 36px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 14px;
    padding: 0;
    margin: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.wcb-products__quantity-input.wcb-products__quantity-input::-webkit-outer-spin-button,
.wcb-products__quantity-input.wcb-products__quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wcb-products__quantity-add-to-cart {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
    z-index: 10;
}
