.gold-input {
        width: 100%;
        font-family: Arial, sans-serif;
    }

    .gold-input label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #333;
    }

    .gold-counter {
        display: flex;
        align-items: center;
        width: 100%;
        height: 52px;
        border: 1px solid #d9d9d9;
        border-radius: 12px;
        background: #fff;
        overflow: hidden;
        box-sizing: border-box;
    }

    .counter-btn {
        width: 52px;
        height: 100%;
        border: 0;
        background: #f7f7f7;
        color: #333;
        font-size: 24px;
        cursor: pointer;
        transition: background 0.15s ease;
    }

    .counter-btn:hover {
        background: #eeeeee;
    }

    .counter-btn:active {
        background: #e5e5e5;
    }

    .gold-value {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1;
        gap: 6px;
    }

    .gold-value input {
        width: 70px;
        border: 0;
        outline: none;
        background: transparent;
        text-align: right;
        font-size: 20px;
        font-weight: 600;
        color: #222;
    }

    .gold-value span {
        font-size: 14px;
        color: #777;
        white-space: nowrap;
    }

    /* Nasconde le frecce native dell'input number */
    .gold-value input::-webkit-outer-spin-button,
    .gold-value input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .gold-value input[type="number"] {
        appearance: textfield;
        -moz-appearance: textfield;
    }