.jutica-qty-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.jutica-minus,
.jutica-plus {
    width: 30px;
    height: 30px;
    background: #2E7D32;
    color: #fff;
    border: 2px solid #1B5E20; /* Borda verde escuro */
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
}

.jutica-minus:hover,
.jutica-plus:hover {
    background: #1B5E20;
    border-color: #0d3311;
}

.jutica-qty-wrapper .quantity {
    font-weight: bold;
    min-width: 24px;
    text-align: center;
}