
.bebanstore-quantity-section .quantity,
.bebanstore-quantity-section .bebanstore-quantity-input-wrapper {
    display: flex;
    border: 1px solid #EEEEEE;
    height: 44px;
    align-items: center;
    border-radius: 8px;
    padding: 0 5px;
    justify-content: space-between;
    max-width: 83px;
}

.bebanstore-quantity-section .qty,
.bebanstore-quantity-section .bebanstore-quantity-input-wrapper .qty {
    width: 30px !important;
    padding: 0 !important;
    text-align: center !important;
    border: none !important;
    -moz-appearance: textfield !important;
    color: #333 !important;
    pointer-events: none !important;
}

.bebanstore-quantity-section .bebanstore-qty-button {
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    border: none !important;
    color: #333 !important;
}

.bebanstore-quantity-section .bebanstore-qty-button svg {
    width: 20px;
    height: 20px;
}

.bebanstore-quantity-section .bebanstore-qty-button svg path {
    stroke: currentColor;
}

.bebanstore-quantity-section .bebanstore-qty-button:hover:not(:disabled) {
    color: #000 !important;
}

.bebanstore-quantity-section .bebanstore-qty-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.bebanstore-quantity-section .bebanstore-qty-button.minus {
    border-right: 1px solid #ddd;
}

.bebanstore-quantity-section .bebanstore-qty-button.plus {
    border-left: 1px solid #ddd;
}

/* RTL Support */
.rtl .bebanstore-quantity-section .bebanstore-qty-button.minus {
    border-right: none;
    border-left: 1px solid #ddd;
    padding: 0 !important;
}

.rtl .bebanstore-quantity-section .bebanstore-qty-button.plus {
    margin: 0 !important;
    border-left: none;
    border-right: none;
    padding: 0 !important;
}

/* Hide spinners for number input */
.bebanstore-quantity-section .qty::-webkit-outer-spin-button,
.bebanstore-quantity-section .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Cart Page Specific Styles */
.woocommerce-cart-form .bebanstore-quantity-input-wrapper {
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bebanstore-quantity-input-wrapper {
        max-width: 120px;
    }

    .bebanstore-qty-button {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .bebanstore-quantity-input-wrapper .qty {
        width: 40px !important;
        height: 35px !important;
        font-size: 13px !important;
    }
} 