/* 預設樣式 - 保持OpenCart原始表單樣式 */

/* 數量控制元素樣式 - 默認風格 */
.quantity-control {
    display: inline-flex !important;
    border: 1px solid #cccccc !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    max-width: 110px !important;
}

.btn-qty {
    background-color: #f0f0f0 !important;
    border: none !important;
    color: #555555 !important;
    height: 32px !important;
    width: 32px !important;
    line-height: 1 !important;
    font-size: 14px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
}

.btn-qty:hover {
    background-color: #e0e0e0 !important;
}

.cart-quantity-input {
    text-align: center !important;
    width: 40px !important;
    height: 32px !important;
    padding: 0 !important;
    border: none !important;
    border-left: 1px solid #ddd !important;
    border-right: 1px solid #ddd !important;
    border-radius: 0 !important;
    background-color: #fff !important;
    box-shadow: none !important;
    font-size: 14px !important;
}

.cart-quantity-input:focus {
    background-color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

