/* Скрываем стандартные стрелки у number input */
.wsge-quantity-input::-webkit-inner-spin-button,
.wsge-quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.wsge-quantity-input {
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Контейнер сетки */
.wsge-size-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0 15px;
}
/* Блок размера */
.wsge-size-col {
    flex: 0 0 auto;
    width: 80px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    background-color: #fff;
    padding: 10px 2px 5px 2px;
}
.wsge-size-col.hidden {
    display: none;
}
/* Название размера */
.wsge-size {
    font-weight: bold;
    margin-bottom: 8px;
}
/* Кастомные кнопки +/– */
.wsge-plus, .wsge-minus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 12px;
    cursor: pointer;
    font-size: 18px;
    margin: 4px 2px;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.wsge-plus {  margin-bottom: -5px; }
.wsge-minus { padding-bottom: 5px;  }
.wsge-plus:hover, .wsge-minus:hover {
    font-weight: bold;
}
/* Поле ввода */
.wsge-quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0 0 5px 0;
    padding: 3px 5px 3px 5px !important;
}
/* Кнопка "Купить оптом" */
.wsge-wholesale-btn {
    display: block;
    width: 100%;
    background-color: #2c7fb8;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 15px;
}
#wsge-message {
    margin-top: 10px;
    font-weight: bold;
}
