.custom-qty {
    display: flex;
    align-items: center;
}

.custom-qty button.custom-dec,
.custom-qty button.custom-inc {
    width: 40px;
    height: 40px;
    background-color: #01603b;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
    user-select: none;
}

.custom-qty button.custom-dec:hover,
.custom-qty button.custom-inc:hover {
    background-color: #155ab6;
}

.custom-qty button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.custom-qty input.custom-qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 10px;
    border-radius: 6px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
}
