/* OZ Quantity Stepper */
.oz-stepper {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    overflow: hidden;
    width: auto;
    margin: 8px 0;
    height: 38px;
}

.oz-stepper__btn {
    background: #F5F5F5;
    border: none;
    width: 36px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    color: #333;
    transition: background 0.18s, color 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1;
    padding: 0;
}

.oz-stepper__btn:hover {
    background: #FF6B35;
    color: #fff;
}

.oz-stepper__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.oz-stepper__qty {
    width: 56px;
    text-align: center;
    border: none;
    border-left: 2px solid #E0E0E0;
    border-right: 2px solid #E0E0E0;
    font-size: 14px;
    font-weight: 700;
    color: #1A1A2E;
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0 4px;
}

.oz-stepper__qty::-webkit-outer-spin-button,
.oz-stepper__qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Badge prodotto card */
.oz-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
}
.oz-badge--new  { background: #2ECC71; color: #fff; }
.oz-badge--sale { background: #E74C3C; color: #fff; }

.oz-card-sku {
    font-size: 11px;
    color: #999;
}
