/* Stijl voor de hoofdcontainer van de shortcode */
.custom-quantity-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px; /* Extra ruimte onder de knoppen */
}

/* Stijl voor de preset-knoppen (1x, 5x, etc.) */
.custom-quantity-controls .qty-preset-button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background-color: white;
    font-size: 14px;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
}

/* Stijl voor de actieve/hover preset-knop */
.custom-quantity-controls .qty-preset-button:hover,
.custom-quantity-controls .qty-preset-button.active {
    background-color: #ff3385; /* Jouw roze kleur */
    color: white;
    border-color: #ff3385;
}

/* De container rond de - en + knoppen */
.custom-quantity-controls .quantity {
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 50px;
    padding: 6px 8px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

/* De - en + knoppen */
.custom-quantity-controls .quantity .minus,
.custom-quantity-controls .quantity .plus {
    background-color: transparent;
    border: none;
    font-size: 14px!important;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    padding: 0 8px;
    background-color: white;
}
.custom-quantity-controls .quantity input{
    width: 40px;
}
/* Het invoerveld voor het nummer */
.custom-quantity-controls .quantity input.qty {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    text-align: center;
    font-weight: bold;
    text-align: center !important; /* Forceer de centrering */
    width: 34px; 
    padding: 0;
    background: white;
}

.custom-quantity-controls .quantity input.qty::-webkit-outer-spin-button,
.custom-quantity-controls .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


@media(max-width:767px){
.custom-quantity-controls .qty-preset-button {
    padding: 6px 12px;
    font-size: 16px!important;
}
.custom-quantity-controls .quantity input.qty {
    font-size: 16px!important   ;
    width: 30px 
}

.custom-quantity-controls .quantity .plus, .custom-quantity-controls .quantity .minus {
    padding: 0px 4px;
}
}