.ommd-prdct-quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    max-width: 140px;
}

.ommd-prdct-quantity input.qty {
    text-align: center;
    border: none !important;
    box-shadow: none !important;
    width: 50px;
    font-size: 16px;
    outline: none;
}

.ommd-prdct-qty-btn {
       background-color: #fff;
    color: #333 !important;
    border: none !important;
    padding: 6px 12px !important;
    cursor: pointer;
    font-size: 18px !important;
    line-height: 1;
    transition: background 0.3s, color 0.3s !important;
	margin: 2px;
}

.ommd-prdct-qty-btn:hover {
    background-color: #F39D0F !important;
}

.woocommerce div.product form.cart{
	display:flex;
}

/* Hide arrows in Chrome, Safari, Edge */
.ommd-prdct-quantity input[type=number]::-webkit-inner-spin-button,
.ommd-prdct-quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Hide arrows in Firefox */
.ommd-prdct-quantity input[type=number] {
    -moz-appearance: textfield !important;
}

/* Hide arrows in Microsoft Edge (new Chromium-based) */
.ommd-prdct-quantity input[type=number] {
    appearance: textfield !important;
}


/* Responsive: shrink buttons on smaller devices */
@media (max-width: 480px) {
    .ommd-prdct-quantity {
        max-width: 100px;
    }
    .ommd-prdct-qty-btn {
        padding: 5px 10px;
        font-size: 16px;
    }
    .ommd-prdct-quantity input.qty {
        width: 40px;
    }
}
